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.
There seems to be an error in scp/js/scp.js. The last 14 lines of this file have been commented out causing the last function to break as it is no longer closed properly:
$(document).on('click.inline-edit', 'a.inline-edit', function(e) {
e.preventDefault();
var url = 'ajax.php/'
+$(this).attr('href').substr(1)
+'?_uid='+new Date().getTime();
var $options = $(this).data('dialog');
$.dialog(url, [201], function (xhr) {
var obj = $.parseJSON(xhr.responseText);
if (obj.id && obj.value) {
$('#field_'+obj.id).html(obj.value);
if (obj.value.includes('Empty'))
$('#field_'+obj.id).addClass('faded');
else
$('#field_'+obj.id).removeClass('faded');
$('#msg-txt').text(obj.msg);
$('div#msg_notice').show();
}
// If Help Topic was set and statuses are returned
if (obj.statuses) {
var reply = $('select[name=reply_status_id]');
var note = $('select[name=note_status_id]');
// Foreach status see if exists, if not appned to options
$.each(obj.statuses, function(key, value) {
var option = $('<option></option>').attr('value', key).text(value);
if (reply)
if (reply.find('option[value='+key+']').length == 0)
reply.append(option);
if (note)
if (note.find('option[value='+key+']').length == 0)
note.append(option.clone());
});
// Hide warning banner
reply.closest('td').find('.warning-banner').hide();
}
}, $options);
return false;
// osta - Load ticket counts in navigation BEFORE hover to prevent "jumping"
// $(document).ready(function() {
// $.ajax({
// url: 'ajax.php/queue/counts',
// dataType: 'json',
// success: function(json) {
// $('li span.queue-count').each(function(i, e) {
// var $e = $(e);
// $e.text(json['q' + $e.data('queueId')]);
// $(e).parents().find('#queue-count-bucket').show();
// });
// }
// });
// });
Uncommenting the last line fixes the problem but have the last 14 lines been commented out in error?
Jeremy
No, the only error is the closing bracket. (That is an old function that is no longer needed).
Please replace
// osta - Load ticket counts in navigation BEFORE hover to prevent "jumping"
// $(document).ready(function() {
// $.ajax({
// url: 'ajax.php/queue/counts',
// dataType: 'json',
// success: function(json) {
// $('li span.queue-count').each(function(i, e) {
// var $e = $(e);
// $e.text(json['q' + $e.data('queueId')]);
// $(e).parents().find('#queue-count-bucket').show();
// });
// }
// });
// });
with
});
Thank you for reporting this!
Thank you I will replace as instructed 🙂
Jeremy