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

    UVdesk

    • Login
    • Search
    • Recent
    1. Home
    2. Brian B Peach
    3. Topics
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 6
    • Best 2
    • Controversial 0
    • Groups 0

    Topics created by Brian B Peach

    • B

      Solved Office 365 Configuration for swiftmailer and mailbox how can we do this?
      Technical Help • • Brian B Peach

      2
      0
      Votes
      2
      Posts
      422
      Views

      Sanjeev

      @Brian-B-Peach

      Check below link to configure.

      https://github.com/uvdesk/community-skeleton/issues/234

      https://github.com/uvdesk/community-skeleton/issues/163

      Hope these link will help !!

    • B

      Solved Add index.php after public folder.
      Technical Help • • Brian B Peach

      2
      0
      Votes
      2
      Posts
      1001
      Views

      Sanjeev

      @Brian-B-Peach

      Open your .htaccess file under public folder of your project and add some random text at the top and save your file.

      Now try to access your project.

      Case 1:

      If you are getting 500 Internal server error after adding a random text in .htaccess file.

      It means it is working.

      Case 2:

      If you are still able to access public path of project which means  .htaccess it is not working yet.

      so you need to enable it.

      Open your apache2.conf file and Allow overwrite All.

      <Directory /home/users/www>
      Options Indexes FollowSymLinks
      AllowOverride All

      Require all granted

      here.

      Now also you need to run two below commands for enabling mod rewrite rule.

      a2enmod rewrite
      service apache2 restart

    • B

      Solved How to add an email from backend if not match with email pattern?
      Technical Help • • Brian B Peach

      2
      0
      Votes
      2
      Posts
      610
      Views

      Sanjeev

      @Brian-B-Peach

      As there is a front end validation which actually check a valid email (like .com/.net/.in at the end) so it will not allow you to add from front end.

      Now you can do one thing add any email from front end and change the email from backend files.

      Open swiftmailer.yaml, uvdesk.yaml, uvdesk_mailboxes.yaml file under config->packages of your project.

      You can change the email from these files after adding any valid email from front end.

      8ec6e691-925b-4bde-abfb-37e1d267ca6b-image.png

    • B

      How I can increase attachment size?
      Knowledge Base • • Brian B Peach

      2
      0
      Votes
      2
      Posts
      881
      Views

      Sanjeev

      @Brian-B-Peach

      Please increase upload_max_filesize in uvdesk.yaml file and also increase upload size from your php.ini file and make try.

      453cb951-aaa0-43f0-ba4d-6852763bf3ce-image.png

      Finally restart your server and try.

    • B

      Solved How to debug the error?
      Technical Help • • Brian B Peach

      4
      1
      Votes
      4
      Posts
      1402
      Views

      Sanjeev

      @Brian-B-Peach

      Please add red mark lines in code as attached in below screenshot.

      headerCode.PNG