Have you checked these first?
Help us help you: include your environment details. We've made this easy for you. Use the Copy System Info button in Admin Panel › osAwesome › Diagnostics, then paste below.
Note: Never paste the contents of your ost-config.php file here; it holds your database credentials.
Two quick checks before posting: try clearing your browser cache, and press SHIFT+O on any Staff Panel page to enter Safe Mode (a stock osTicket with no enhancements). If the problem still shows in Safe Mode, it's in osTicket itself, not osTicket Awesome. But let us know about the issue either way.
Help us help you: include your environment details. We've made this easy for you. Use the Copy System Info button in Admin Panel › osAwesome › Diagnostics, then paste below.
This forum is public. Never post order numbers, full license keys, email addresses, or payment details.
This is the place for general questions about how billing and licensing work — renewals, activation, staging slots, plan differences, and what happens when a license lapses.
For anything tied to your specific account, refund, or payment, contact us directly instead.
Hi there,
osTicket v1.12 // osTicket-1.12-Awesome-105<br />
PHP 7.3.1 // MySQL 5.5.32 // Microsoft-IIS/7.5 web server
just 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
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.
Hi @IT-Team,
The issue you're seeing is the result of an incompatibility between osTicket Awesome and the attachment_preview plugin.
It has been discussed here, here and here.
Unfortunately, the only way to resolve this is to disable the plugin.
Hi stev,
found your posts yesterday and used the workaround to use the preview in ticket-view only.
seems to do the trick so far. thanks for support!
😀
Hi IT-Team can you please let me know how to solve it? I have the same issue
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
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; #}