Forum Replies Created
-
In reply to: Anything I do in the "Theme" section results in an error (403)
July 21, 2020 at 1:11 pm #6114stevland
KeymasterHi @SVA.ltd,
Thank you very much for taking the time to report this. Unfortunately, I have no clue what could be triggering this. If you get a chance to ask your team for more information it would be very helpful. Cheers!
In reply to: Ticket number not showing
July 20, 2020 at 1:19 pm #6110In reply to: display problem in new version 1.14 rev 2
July 19, 2020 at 9:44 am #6103stevland
KeymasterHi @visimitra,
I can’t reproduce the last item (date show 0 in edit tickets, forms). But the other two items will be fixed in the next release.
Thanks again for taking the time to send screenshots.
In reply to: osTicket v1.14.2 Open Tickets queue columns not visible
July 18, 2020 at 4:05 pm #6102stevland
KeymasterSorry for the delayed response on this.
I can’t think of any suggestions. I have no idea what would cause this.
The only way I can help is if I can access your installation to see for myself.
Please submit this form (you can ignore the CPanel, SSH and FTP sections):
https://osticketawesome.com/troubleshooting/assistance-request-form/In reply to: Ticket number not showing
July 18, 2020 at 4:00 pm #6101In reply to: Ticket edit menu not working
July 18, 2020 at 3:56 pm #6100stevland
KeymasterI can’t figure out how to reproduce this. It seems like a rare issue so I am going to mark it as Resolved for now.
In reply to: Email Piping Bug
July 17, 2020 at 6:08 pm #6099stevland
KeymasterLong story short, I’m not sure if you’ve received my email. Please let me know.
If anyone else runs into this issue, please edit main.inc.php line 68 from
require_once $_SERVER['DOCUMENT_ROOT'] . ROOT_PATH . "/osta/php/functions.php";
to
require_once "osta/php/functions.php";
After doing that please try uploading a new company logo. If that works for you I reckon that email piping will, too. Please let me know asap so that I can include this fix in the next release.
In reply to: New message green dot is gone
July 17, 2020 at 9:18 am #6097stevland
KeymasterI can’t think of any explanation for the dot not displaying. But are you certain that there are unanswered replies? I realized just now that the “New Reply” tooltip shows up even if there isn’t a reply waiting.
Either way, the dot will be replaced with an icon in the next release.
In reply to: Anything I do in the "Theme" section results in an error (403)
July 17, 2020 at 8:40 am #6096stevland
KeymasterAre you running Ubuntu?
If so, please set the owner/group of the uploads directory to www-data
# chown -R www-data:www-data osta/uploads/
Let me know if this helps.
In reply to: More distinguished tables
July 17, 2020 at 8:34 am #6095stevland
KeymasterI wasn’t expecting to get exactly what I wanted haha.
If only life was always like that!
The other option that occurred to me later is to darken the blue rows, or change the color to anything you prefer:
table.list tbody tr:nth-child(2n+1) td {
background-color: #dce7ec; /*change this value as desired*/
}
In reply to: Unable to upload logo image: Unable to write to:/support/osta/uploads/
July 17, 2020 at 8:30 am #6094stevland
Keymaster@mayberts I’m glad we figured it out. I added a note on the Troubleshooting page to help people in the future.
In reply to: Email Piping Bug
July 16, 2020 at 10:29 am #6086In reply to: Unable to upload logo image: Unable to write to:/support/osta/uploads/
July 16, 2020 at 10:19 am #6085stevland
KeymasterPHP Warning: move_uploaded_file(): Unable to move
That error does seem specifically related to an ownership/ permissions issue. Your permissions seem fine, so it must be something to do with ownership.
See this link:
https://stackoverflow.com/questions/13723174/php-warning-move-uploaded-file-unable-to-moveActually, it may be a Ubuntu thing. It may help to set the user and group to www-data. I have found a few search results where this worked for Ubuntu users:
# chown -R www-data:www-data /path/to/uploads
In reply to: Unable to upload logo image: Unable to write to:/support/osta/uploads/
July 16, 2020 at 10:09 am #6084In reply to: Unable to upload logo image: Unable to write to:/support/osta/uploads/
July 16, 2020 at 9:19 am #6081stevland
KeymasterPlease check your Apache error logs for relevant errors around the time that you attempt to upload a file. Let me know.
In addition to setting the upload directory permissions to 755, please verify that the directory owner is the same account that your main website runs under.
On my system it looks like this
# cd osta
# ls -l
drwxr-xr-x. 3 osticketawesome psacln 4096 May 23 20:16 css
drwxr-xr-x. 3 osticketawesome psacln 4096 May 23 20:16 icons
drwxr-xr-x. 4 osticketawesome psacln 4096 May 23 20:16 img
drwxr-xr-x. 2 osticketawesome psacln 4096 May 23 20:16 inc
drwxr-xr-x. 3 osticketawesome psacln 4096 May 23 20:16 js
drwxr-xr-x. 5 osticketawesome psacln 4096 May 23 20:16 opt
drwxr-xr-x. 2 osticketawesome psacln 4096 May 23 20:16 php
drwxr-xr-x. 3 osticketawesome psacln 4096 May 23 20:16 svg
drwxr-xr-x. 2 osticketawesome psacln 4096 Jul 13 23:20 uploads
-rw-r--r--. 1 osticketawesome psacln 198 Dec 17 2019 user-scripts.js
-rw-r--r--. 1 osticketawesome psacln 276 May 23 20:38 user-styles.css
-rw-r--r--. 1 osticketawesome psacln 27 May 23 20:18 version.txt
In my case the owner of the uploads directory is osticketawesome, which is the account that my website runs under. And psacln is the group that the account belongs to.
If you uploaded the files as another user (for example, as root), that would explain your issue.
What do you see when you use the ls -l command?