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

    UVdesk

    • Login
    • Search
    • Recent
    1. Home
    2. Sanjeev
    3. Best
    • Profile
    • Following 0
    • Followers 3
    • Topics 3
    • Posts 308
    • Best 37
    • Controversial 0
    • Groups 2

    Best posts made by Sanjeev

    • RE: How to upgrade UVdesk!

      One more approach to update your existing project :

      Download project zip from here.

      After downloading the project extract zip file.

      Now, copy uvdesk folder from extracted folder->vendor->uvdesk from this location.

      First, delete the uvdesk folder from your_project->vendor->uvdesk location.

      Now, copy uvdesk foder from extracted folder and paste into your project under vendor folder.

      Also replace your translation folder from extracted zip folder into your project.


      Check below screenshot for reference the folder you need to replace in your project from extracted zip folder

      bd9afc9c-0ff3-4394-aece-1b69548241a9-image.png

      Finally run the following commands:

      php bin/console d:s:u --force
      php bin/console c:c

      posted in Knowledge Base
      Sanjeev
      Sanjeev
    • RE: How I can increase attachment size?

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

      posted in Knowledge Base
      Sanjeev
      Sanjeev
    • RE: GitHub page not updated

      @peopleinside

      Of course will update latest version with our zip version on official site today here as well.

      Once it is done we will update you on this conversation.

      You don't need for composer for this you need to just download and setup project.

      posted in Comments & Feedback
      Sanjeev
      Sanjeev
    • RE: Translation to Portuguese BR

      @pedronapoleaojr
      You need to add a translation file here for your language
      (If It does not  already exist for your language).

      For Example: We have added messages.en.yml for english here.

      https://s3-ap-southeast-1.amazonaws.com/cdn.uvdesk.com/website/3/202002075e3cec5d9e4d3translationfile.png

      Now make a entry for your locale in uvdesk.yaml file.

      c845fda5-1c50-442f-96cd-53c7c7744179-image.png

      And Finally check your choice language by passing it into url.

      https://s3-ap-southeast-1.amazonaws.com/cdn.uvdesk.com/website/3/checkTranslation.png

      Now you can make it your default language.

      Locate file config->packages->translation.yaml  open translation.yaml  and make changes as given below.

      default_locale:    your_locale(en, ar etc)
            fallbacks:   
                           -  your_locale(en, ar etc)
       
       
      Clear your project cache by:
       
      php bin/console c:c

      posted in General Discussion
      Sanjeev
      Sanjeev
    • RE: Rename attachment

      @Rosa-A-Hancock
      Locate path in your project:

      vendor->uvdesk->core-framework->FileSystem->UploadManagers->Localhost.php

      Make changes as done in screenshot below:

      ddd0a6d1-38d2-4d6f-b315-40dcec9575d5-image.png

      Also if you don't want to see uploaded image in uppercase then:
      You need to remove data-toggle="tooltip" from below line.

      https://github.com/uvdesk/core-framework/blob/master/Resources/views/ticket.html.twig#L769

      posted in Knowledge Base
      Sanjeev
      Sanjeev
    • RE: GitHub page not updated

      @peopleinside

      UVdesk logo that is not working and once logged in I don't see any reCaptcha settings.

      You need to replace your new project public folder by old project public folder.

      As all the attachments and images path will be save in database and it will be physically present in public folder of project.

      posted in Comments & Feedback
      Sanjeev
      Sanjeev
    • RE: How to keep uvdesk updated?

      @peopleinside

      We are currently testing if anything is broken or any issue with the project due to many updates done and team is working on it time to time. Once done with testing and everything goes good and we have no such major issues we will come with a next release.

      posted in General Discussion
      Sanjeev
      Sanjeev
    • RE: Installing and setup UVdesk for the first time

      @peopleinside

      Thanks for sharing information it will really help to other users to do the same steps and setup project without any problem.

      posted in Knowledge Base
      Sanjeev
      Sanjeev
    • RE: GitHub page not updated

      @peopleinside

      Another point: user that update from zip need backup some files, resume that and replace the new public folder with the old one so it will not miss favicon, attachments, logo, etc.. but by doing that if you made for example update to css in the public/bundles user will loose updates.

      You can run below command and will get all latest CSS and Js automatically update in public folder anytime.

      php bin/console assets:install

      posted in Comments & Feedback
      Sanjeev
      Sanjeev
    • RE: How to keep uvdesk updated?

      @peopleinside

      Definitely we will check and try to add these as well if these are not creating any issues in project.

      posted in General Discussion
      Sanjeev
      Sanjeev
    • Disable knowledge base permanently and redirect to customer login.

      As we understand some of the user don't want to show knowlegebase to their customer instead they want to redirect customer to directly into customer login page.

      For this you need to make a slight changes in your code.

      Please follow  the steps given below:

      - Locate path in your project. 
      vendor/uvdesk/support-center-bundle/resources/config/routes/public.yaml

      Open public.yaml file replace line no. 3 (controller: Webkul\UVDesk\SupportCenterBundle\Controller\Website::home)  by:

      controller: Webkul\UVDesk\SupportCenterBundle\Controller\Customer::login

      Finally run command  php bin/console c:c  from project root directory.

      Hope it will help someone 🙏

      posted in Knowledge Base
      Sanjeev
      Sanjeev
    • RE: Password field in Agent and Customer Form

      @SaasMe

      For Agent:

      locate path in your project vendor->uvdesk->core-framework->Resources->views->Agent->updateSupportAgent.html.twig

      open this file reach to this section https://github.com/uvdesk/core-framework/blob/master/Resources/views/Agents/updateSupportAgent.html.twig#L142-L160 and remove If and endif line in selected section(First and last line in selected section).

      For Customer:

      locate path in your project vendor->uvdesk->core-framework->Resources->views->Customers->updateSupportCustomer.html.twig

      open this file reach to this section https://github.com/uvdesk/core-framework/blob/master/Resources/views/Customers/updateSupportCustomer.html.twig#L82-L100 and remove If and endif line in selected section(First and last line in selected section).

      posted in Technical Help
      Sanjeev
      Sanjeev
    • RE: Email to agent when customer reply to ticket

      @Alessandro-Gabba

      Many such issues already fixed in master branch currently and will be reflect in next release.
      Stay tuned with us on main repository https://github.com/uvdesk/community-skeleton of this project here soon we will release a new stable release with many fixes.

      @peopleinside Thanks for your support and always helping others to solve their issues.

      posted in Bug Report
      Sanjeev
      Sanjeev
    • RE: Add Google recaptcha

      @peopleinside

      Fine, We will check the possibility with our system and will try to add this.

      posted in General Discussion
      Sanjeev
      Sanjeev
    • RE: Uvdesk reachable only on localhost

      @manata

      There is not such config for this.
      If you are able to access it using localhost(127.0.0.1) then you can also access it using IP address through the LAN.

      check if you are able to access localhost using your IP address.

      As you can check screenshot we are accessing it using IP.

      ip.PNG

      posted in Technical Help
      Sanjeev
      Sanjeev
    • RE: How to configure Mailbox with these mail service Outlook/Office 365, Gmail

      @gustavowoltmann

      You should connect us on forum and GitHub Repository.

      You will get the solutions for your problem or you can directly discuss here on our forum.

      posted in General Discussion
      Sanjeev
      Sanjeev
    • RE: How to debug the error?

      @Brian-B-Peach

      Locate the file vendor->uvdesk->core-framework->Services->EmailService.php.

      Open the EmailService.php reach to sendMail() function.

      and dump() the exception as in attached image.

      It will show the error you are facing while sending mails (if adding an agent, creating a ticket etc).

      07a7026d-6546-413d-8f77-9b11ce4ff58e-image.png

      bf8a8c9f-8020-4e40-9d34-55fced5853a2-image.png

      Thanks,

      posted in Technical Help
      Sanjeev
      Sanjeev
    • RE: Ticket BCC / CC

      @peopleinside

      Demo Is now updated (as per the latest release) you can check here.

      posted in General Discussion
      Sanjeev
      Sanjeev
    • RE: How to debug the error?

      @Brian-B-Peach

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

      headerCode.PNG

      posted in Technical Help
      Sanjeev
      Sanjeev
    • RE: When a new user is created by email and password not set...

      @peopleinside

      User can not login to their account without setup their password.

      posted in General Discussion
      Sanjeev
      Sanjeev