🔴 January 2024 Alert: Forum support inactive!
New forum registration are currently closed.
Use GitHub discussions
.

    UVdesk

    • Login
    • Search
    • Recent
    1. Home
    2. Rosa A Hancock
    3. Topics
    R
    • Profile
    • Following 0
    • Followers 0
    • Topics 6
    • Posts 7
    • Best 0
    • Controversial 0
    • Groups 0

    Topics created by Rosa A Hancock

    • R

      Solved Exchange server: PHP Fatal error: Uncaught ErrorException: Notice: Unknown: Kerberos error: No Kerberos credentials available
      Technical Help • • Rosa A Hancock

      6
      0
      Votes
      6
      Posts
      1664
      Views

      Sanjeev

      @Makss

      yes, or you can add it from the web interface !

      Sure, Glad to know now working for you !!

      Stay tuned with us for updates and upcoming release.
      https://github.com/uvdesk/community-skeleton

    • R

      Solved How to increase session expire or Logout time?
      Technical Help • • Rosa A Hancock

      2
      0
      Votes
      2
      Posts
      532
      Views

      Sanjeev

      @Rosa-A-Hancock

      By default session expire time is around 10 min means if you are inactive on site from last 10 min it will automatically logout after 10 minute of inactivity.

      If you wish to change it follow below solution.

      Locate path in your project config->packages->framework.yaml

      You will basically store the sessions in the /var/sessions/ directory and that's it, the lifetime option will work again. You can do this quickly modifying your framework.yaml file in the session block like this:

      session:
            handler_id: session.handler.native_file
            save_path: '%kernel.project_dir%/var/sessions/%kernel.environment%'
            # 2 Days lifetime (172800 seconds)
            cookie_lifetime: 172800
            cookie_secure: 'auto'
            cookie_samesite: 'lax'

      Most probably it should will work for you.

      And after saving framework.yaml file you should clear your project cache by below command:

      php bin/console c:c

    • R

      Solved Redirect to knowledgebase and ticket list page
      Technical Help • • Rosa A Hancock

      2
      0
      Votes
      2
      Posts
      337
      Views

      Sanjeev

      @Rosa-A-Hancock

      For this you need to make below changes as suggested below in screenshot.

      locate path in your project and update code as done with red mark in screenshot:

      vendor/uvdesk/support-center-bundle/Controller/Ticket.php

      Open Ticket.php and reach to ticketadd() function make changes as done in below screenshot.

      01136950-5a12-4aa9-aa9b-1d3cf99a8416-image.png

      It will also updated in our project in next release.

      Thanks,

    • R

      Solved How to add users email in group instead of their name?
      Technical Help • • Rosa A Hancock

      6
      0
      Votes
      6
      Posts
      688
      Views

      Sanjeev

      @alisamifarooq

      Stay tuned with github repository for latest updates and releases.
      https://github.com/uvdesk/community-skeleton

    • R

      Rename attachment
      Knowledge Base • • Rosa A Hancock

      3
      0
      Votes
      3
      Posts
      753
      Views

      peopleinside

      Hi, thanks for this topic.
      I moved in the Knowledge Base section as can be useful for other.

      I hope in the future the UI will allow this or attachments can have the original uploaded name.

    • R

      Solved "imap_open : couldn't open stream for gmail" - getting error while set up IMAP
      Technical Help • • Rosa A Hancock

      3
      0
      Votes
      3
      Posts
      672
      Views

      R

      @Sanjeev
      Thanks for your help.