stevland

Forum Replies Created

  • In reply to: 1.17.2 user will be automatically logged out

    December 20, 2022 at 6:45 am #14289
    stevland
    Keymaster

    To be honest this sounds like an vanilla osTicket issue, not anything to do with osTicket Awesome.

    I’m willing to try and sort out if that’s the case or not. But I can’t seem to reproduce this issue in the osTicket Awesome client demo. Can you?

    Are either of you guys using OAuth2 by chance?

     

     

    In reply to: Easier way to apply smaller updates such as 1.17.x

    December 14, 2022 at 11:03 am #14227
    stevland
    Keymaster

    Hi @nandor,

    That’s an excellent suggestion.

    But honestly, I don’t see why anyone would want to do this work on their own, when they can wait a few days at most for the next osTicket Awesome release.

    Let me do the heavy lifting for you!

    stevland
    Keymaster

    @nandor,

    I honestly have no idea!

    It’s a great question, but once again I have to recommend that you post it in the osTicket Forum where you are far more likely to get good responses.

    Good luck!

    In reply to: Discord Notifications

    December 13, 2022 at 5:48 pm #14214
    stevland
    Keymaster

    Late reply, but did you see this thread?

    stevland
    Keymaster

    Hi @nandor,

    Hopefully you’ve also been asking these questions in the osTicket Forum… it’s not really an osTicket Awesome questions and you’re way more likely to get good responses over there.

    Good luck!

    In reply to: Filter problem

    December 13, 2022 at 5:44 pm #14212
    stevland
    Keymaster

    Hi @nandor,

    I apologize for overlooking this post.

    But honestly, you would probably have gotten more of a response if you posted it in the osTicket forum (and it’s not really a question regarding osTicket Awesome).

    In reply to: Turn off animations

    December 13, 2022 at 5:39 pm #14210
    stevland
    Keymaster

    I trust you figured out how to fix the #popup modal. 

    If I was forced to guess off the top of my head as to what went wrong, my theory would be that vanilla osTicket uses its own animation to get the modal onto the screen. So osTicket Awesome simply replace one animation for another. And, by setting #popup to animation: none; we inadvertently broke it altogether.

    I do like your idea of toggling animations on/off. I’ve added that to my list of ideas and will consider that for future dev.

    In reply to: Invoice needed

    December 13, 2022 at 5:34 pm #14209
    stevland
    Keymaster

    Hi @silviuip,

    I see that your invoice was sent on Dec. 4th. Sorry for the delay.

    I’ve been busy implementing a full ecommerce solution into this site. In the future a proper invoice will be emailed to each customer as soon as each transaction is complete.

    In reply to: Invoice needed

    December 13, 2022 at 5:31 pm #14207
    stevland
    Keymaster

    Hi @acotral,

    I sent your invoice the next day (October 11th). I trust you received it but, if not, let me know and I’ll resend it.

    In reply to: Invoice needed

    December 13, 2022 at 5:28 pm #14205
    stevland
    Keymaster

    Sorry for the trouble!

    I’ve been busy implementing a full ecommerce solution into this site, simply so that a proper invoice will be emailed to each customer as soon as each transaction is complete.

    The expression “to make an omelet you have to break a few eggs” comes to mind, however, because a few things got broken on the website during that transition.

    And unfortunately, for past transactions I still do need that form filled out so that I know what needs to appear on your invoice.

    But the good news is that the link is working again.

    If you bought osTicket Awesome for the first time and paid USD $100, please use this form:

    But if you renewed your 2-year access to this website and paid USD $80, please use this one:

    In reply to: Reports Plug-in

    December 13, 2022 at 5:20 pm #14201
    stevland
    Keymaster

    Hi @a.taylor,

    I’ve never run that plug-in myself, but I’ve heard that it is very useful.

    If I had to guess I would say that it should run perfectly, but there may be a couple of quirks with how things display in the back end.

    I would be happy to support this plugin as it is fairly popular. So if you do want to go ahead and purchase it — and if you are willing to grant me admin access to your osTicket Awesome installation — I will commit to sorting out any issues that arise.

    But I’m quite busy so please keep in mind that it may take a few days to do so.

    In reply to: V1.17.2 autosave issue

    December 13, 2022 at 5:14 pm #14198
    stevland
    Keymaster

    Hi Norman, I’m sorry for the delay in responding. Your post was mysteriously marked as “Pending” and I had to approve it for some reason (I’ve never had to do that before).

    I used Google Translate to figure out the error you’re seeing:

    Undefined. Cannot save the draft. Refresh the current page to restore your draft and continue.

    This is a problem with osTicket itself… it is not an osTicket Awesome issue.

    But, if you’re still having trouble, you will find the solution here:

    https://forum.osticket.com/d/101954-unable-to-save-draftrefresh-the-current-page-to-restore-and-continue-your-draft/6

    In your case you are already running osTicket 1.17.2 (albeit osTicket-1.17.2-Awesome-101). So you’ll just need to apply the patch.

    1. Open include/class.usersession.php

    2. Replace line 140

        if (isset($_SESSION['TIME_BOMB'])

        with this…

        if ($_SERVER['REQUEST_METHOD'] === 'GET'
              && isset($_SESSION['TIME_BOMB'])

    I hope this helps!

    In reply to: Invalid Email Address Error

    December 7, 2022 at 9:53 pm #14117
    stevland
    Keymaster

    This isn’t actually an osTicket Awesome issue… it’s related to core osTicket functionality.

    But the good news is there seems to be lots of info to be found on it:

    https://www.google.com/search?q=osticket+%E2%80%9CValid+email+is+required

    In reply to: Malformed “From” address after upgrade to 1.17.2

    December 7, 2022 at 3:29 pm #14116
    stevland
    Keymaster

    Oops, I somehow overlooked this support request.

    Thank you for coming back to share the solution, and marking it ‘Resolved’.

    Rock star!

    In reply to: Cannot delete entries in Holiday schedule

    December 7, 2022 at 12:52 pm #14110
    stevland
    Keymaster

    After all of these years there are still areas of osTicket that I haven’t yet found. And here is one of them!

    I see what is happening: the Edit icons are covering the checkboxes.

    Add this to Theme Options > Custom CSS:

    #schedule-entries i.icon-edit {
        margin: -5px 5px 0 22px !important;
    }