Navigation

    UVdesk

    • Register
    • Login
    • Search
    • Recent
    1. Home
    2. Brian B Peach
    3. Topics
    B
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by Brian B Peach

    • B

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

      2
      0
      Votes
      2
      Posts
      8
      Views

      S

      @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

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

      2
      0
      Votes
      2
      Posts
      12
      Views

      S

      @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

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

      2
      0
      Votes
      2
      Posts
      213
      Views

      S

      @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.
    • B

      How I can increase attachment size?
      Technical Help • • Brian B Peach  

      2
      0
      Votes
      2
      Posts
      13
      Views

      S

      @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. Finally restart your server and try.
    • B

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

      4
      1
      Votes
      4
      Posts
      90
      Views

      S

      @Brian-B-Peach Please add red mark lines in code as attached in below screenshot.