-
-
August 26, 2019 at 12:04 am #5039TIT-TeamParticipant
Hi there,
osTicket v1.12 // osTicket-1.12-Awesome-105<br />
PHP 7.3.1 // MySQL 5.5.32 // Microsoft-IIS/7.5 web serverjust switched to ostA. after implementation, it really often happens, that when clicking “open tickets“, my bootom becomes this:
The Top bar also gets messed up (recycle bin:
Any helüp is appreciated!
Leo
-
August 26, 2019 at 4:24 pm #5043StechcareParticipant
Have you tried using incognito mode in Chrome or similar in other web browsers? I’m presuming that you have cleared your cache? Don’t have any cache plugins running whether locally on server or via something like CloudFlare?
Any PHP errors?
If you use Chrome (other browsers have it as well) click on 3 dots, more tools, development tools. Then check out the console for any error messages.
-
September 4, 2019 at 3:51 pm #5072CprocomtechParticipant
Hi IT-Team can you please let me know how to solve it? I have the same issue
-
September 6, 2019 at 11:20 am #5077TIT-TeamParticipant
hi,
u can “fix” it by just allowing the preview in ticketview and not in the “overview” screen
https://github.com/clonemeagain/attachment_preview/issues/42#issuecomment-521273949
just edit your code as described there . you wont miss it in any other view and it doesnt cause problems in the ticket-view screen
-
-
September 15, 2019 at 10:02 am #5101stevlandKeymaster
Thank your for sharing your workaround, @visimitra!
-
October 18, 2019 at 2:33 am #5268visimitraParticipant
update in osticket 1.12.3 102:
revise line 1061:
elseif (strpos($url, 'index.php') !== FALSE ||
strpos($url, 'tickets.php') !== FALSE ||
strpos($url, 'tasks.php') !== FALSE) {
if ($_REQUEST['id'] && ($ticket=Ticket::lookup($_REQUEST['id']))) $tickets_view = TRUE;
elseif ($_REQUEST['id'] && ($task=Task::lookup($_REQUEST['id']))) $tickets_view = TRUE;
elseif ($_REQUEST['number'] && $ticket=Ticket::lookup(array('number' => $_REQUEST['number']))) $tickets_view = TRUE;
}
#elseif (strpos($url, 'index.php') !== FALSE ||
# strpos($url, 'tickets.php') !== FALSE) {
// Might be a ticket page..
# $tickets_view = TRUE;
#}
-
You must be logged in to reply to this topic.