Navigation

    UVdesk

    • Register
    • Login
    • Search
    • Recent

    SOLVED Add Google recaptcha

    General Discussion
    6
    56
    12658
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • ali sami farooq
      ali sami farooq last edited by

      This thread is very interesting and gives a good knowledge , i will try to add google recaptcha by this method ~ Ali Sami Farooq

      Ali Sami Farooq

      1 Reply Last reply Reply Quote 0
      • S
        Sanjeev developer UVdesk Staff mod last edited by

        @peopleinside

        Please generate Recaptcha keys (site key and secret key) for your domain if you need Recaptcha for your site we have updated the code for the same but need to test it for a live domain.

        When you will be available reply back to us will will process further.

        peopleinside 1 Reply Last reply Reply Quote 0
        • peopleinside
          peopleinside mod admin community specialist @Sanjeev last edited by

          @Sanjeev I'm ready and I'm already use the recaptcha but only on ticket creation. You can find me on Skype if you need or let me know how can I help you.

          UVdesk passionate | Community moderator | External consultant

          If you need help with the community you can visit https://helpdesk.peopleinside.it/it/blog/uv
          You can always get in touch also with the UVdesk team
          https://support.uvdesk.com/en/

          1 Reply Last reply Reply Quote 0
          • S
            Sanjeev developer UVdesk Staff mod last edited by

            @peopleinside

            Have you generated site key and secret key for your domain for google recaptcha?

            peopleinside 1 Reply Last reply Reply Quote 0
            • peopleinside
              peopleinside mod admin community specialist @Sanjeev last edited by

              @Sanjeev Sure

              UVdesk passionate | Community moderator | External consultant

              If you need help with the community you can visit https://helpdesk.peopleinside.it/it/blog/uv
              You can always get in touch also with the UVdesk team
              https://support.uvdesk.com/en/

              1 Reply Last reply Reply Quote 0
              • S
                Sanjeev developer UVdesk Staff mod last edited by Sanjeev

                @peopleinside

                Ok please take a backup of your current project and apply the changes for a new one.

                For generating recaptcha site key and secret key for your domain take help from here.

                Step 1.

                Delete your core-framework and support-center-bundle under vendor/uvdesk folder of your project.

                And clone both bundle using command below at the same place (under vendor/uvdesk folder)

                git clone https://github.com/uvdesk/core-framework
                git clone https://github.com/uvdesk/support-center-bundle

                1 Reply Last reply Reply Quote 0
                • S
                  Sanjeev developer UVdesk Staff mod last edited by Sanjeev

                  Step 2.

                  Open config/packages folder of your project.
                  You will see two files here twig.yaml and uvdesk.yaml

                  Update below 3 keys in twig.yaml

                   is_google_captcha_enabled: '%is_google_captcha_enabled%'
                   recaptcha_site_key: '%recaptcha_site_key%'
                   recaptcha_secret_key: '%recaptcha_secret_key%'
                  
                  
                  

                  In uvdesk.yaml update below lines:

                  recapchaUvdesk.PNG

                      is_google_captcha_enabled: true
                      recaptcha_site_key: 'site_key'
                      recaptcha_secret_key: 'secret_key'
                  

                  Finally clear your cache using below command:

                  php bin/console c:c

                  1 Reply Last reply Reply Quote 0
                  • S
                    Sanjeev developer UVdesk Staff mod last edited by Sanjeev

                    Step 3.

                    Require recaptcha package in your project using below command:

                    composer require google/recaptcha "^1.2"

                    Also update your site key and secret key of google recaptcha for your domain in uvdesk.yaml file.

                    Clear your cache:
                    php bin/console c:c

                    peopleinside 1 Reply Last reply Reply Quote 0
                    • peopleinside
                      peopleinside mod admin community specialist @Sanjeev last edited by peopleinside

                      @Sanjeev

                      The "ocramius/package-versions" plugin was skipped because it requires a Plugin API version ("^1.0.0") that does not match your Composer installation ("2.0.0"). You may need to run composer update with the "--no-plugins" option.
                      The "uvdesk/composer-plugin" plugin was skipped because it requires a Plugin API version ("^1.0") that does not match your Composer installation ("2.0.0"). You may need to run composer update with the "--no-plugins" option.
                      The "symfony/flex" plugin was skipped because it requires a Plugin API version ("^1.0") that does not match your Composer installation ("2.0.0"). You may need to run composer update with the "--no-plugins" option.
                      ./composer.json has been updated
                      The "ocramius/package-versions" plugin was skipped because it requires a Plugin API version ("^1.0.0") that does not match your Composer installation ("2.0.0"). You may need to run composer update with the "--no-plugins" option.
                      The "uvdesk/composer-plugin" plugin was skipped because it requires a Plugin API version ("^1.0") that does not match your Composer installation ("2.0.0"). You may need to run composer update with the "--no-plugins" option.
                      The "symfony/flex" plugin was skipped because it requires a Plugin API version ("^1.0") that does not match your Composer installation ("2.0.0"). You may need to run composer update with the "--no-plugins" option.
                      
                      Your requirements could not be resolved to an installable set of packages.
                      
                        Problem 1
                          - symfony/flex is locked to version v1.4.8 and an update of this package was not requested.
                          - symfony/flex v1.4.8 requires composer-plugin-api ^1.0 -> found composer-plugin-api[2.0.0] but it does not match the constraint.
                        Problem 2
                          - uvdesk/composer-plugin is locked to version v1.0.1 and an update of this package was not requested.
                          - uvdesk/composer-plugin v1.0.1 requires composer-plugin-api ^1.0 -> found composer-plugin-api[2.0.0] but it does not match the constraint.
                        Problem 3
                          - ocramius/package-versions 1.4.1 requires composer-plugin-api ^1.0.0 -> found composer-plugin-api[2.0.0] but it does not match the constraint.
                          - doctrine/doctrine-migrations-bundle 2.1.2 requires doctrine/migrations ^2.2 -> satisfiable by doctrine/migrations[2.2.0].
                          - doctrine/migrations 2.2.0 requires ocramius/package-versions ^1.3 -> satisfiable by ocramius/package-versions[1.4.1].
                          - doctrine/doctrine-migrations-bundle is locked to version 2.1.2 and an update of this package was not requested.
                      
                      ocramius/package-versions only provides support for Composer 2 in 1.8+, which requires PHP 7.4.
                      If you can not upgrade PHP you can require composer/package-versions-deprecated to resolve this with PHP 7.0+.
                      
                      You are using Composer 2, which some of your plugins seem to be incompatible with. Make sure you update your plugins or report a plugin-issue to ask them to support Composer 2.
                      

                      I'm now resuming my backup as it not works.
                      The ReCaptcha is showed in the contact form but never work.

                      UVdesk passionate | Community moderator | External consultant

                      If you need help with the community you can visit https://helpdesk.peopleinside.it/it/blog/uv
                      You can always get in touch also with the UVdesk team
                      https://support.uvdesk.com/en/

                      1 Reply Last reply Reply Quote 0
                      • S
                        Sanjeev developer UVdesk Staff mod last edited by Sanjeev

                        @peopleinside

                        Please downgrade your composer version to 1.6.5 and then try.

                        Also take a clone of core-framework again as recently we have updated some code there.

                        We have tested recaptcha and it is working perfectly now.

                        peopleinside 1 Reply Last reply Reply Quote 0
                        • peopleinside
                          peopleinside mod admin community specialist last edited by

                          I have also an issue: cannot run

                          php bin/console c:c
                          

                          because every time I get

                          Unable to write in the "/uvdesk/var/cache/prod"
                           directory
                          

                          and I need run this command as root. I change already all uvdesk folders and file to be on not root user and for a while I'm able to run but after some time I get again the same issue.

                          UVdesk passionate | Community moderator | External consultant

                          If you need help with the community you can visit https://helpdesk.peopleinside.it/it/blog/uv
                          You can always get in touch also with the UVdesk team
                          https://support.uvdesk.com/en/

                          1 Reply Last reply Reply Quote 0
                          • peopleinside
                            peopleinside mod admin community specialist @Sanjeev last edited by peopleinside

                            @Sanjeev Sorry I cannot downgrade the composer as I use other software that required composer 2 that is more safer and updated.

                            UVdesk passionate | Community moderator | External consultant

                            If you need help with the community you can visit https://helpdesk.peopleinside.it/it/blog/uv
                            You can always get in touch also with the UVdesk team
                            https://support.uvdesk.com/en/

                            1 Reply Last reply Reply Quote 0
                            • S
                              Sanjeev developer UVdesk Staff mod last edited by

                              @peopleinside

                              ok we will provide a zip of project with all latest changes you just need to place it to your server and just need to add Database details in .env file.

                              peopleinside 1 Reply Last reply Reply Quote 0
                              • peopleinside
                                peopleinside mod admin community specialist @Sanjeev last edited by

                                @Sanjeev ok. Hope you will keep in mind if you will send any update in the future my server will not use obsolete PHP or composer, etc. I always work to keep software updated so your project should support composer 2.

                                UVdesk passionate | Community moderator | External consultant

                                If you need help with the community you can visit https://helpdesk.peopleinside.it/it/blog/uv
                                You can always get in touch also with the UVdesk team
                                https://support.uvdesk.com/en/

                                1 Reply Last reply Reply Quote 0
                                • S
                                  Sanjeev developer UVdesk Staff mod last edited by

                                  @peopleinside

                                  For that we always provide a project ZIP on official site where you don't need to do anything. But still we will look into it to resolve issues for composer 2

                                  peopleinside 1 Reply Last reply Reply Quote 0
                                  • peopleinside
                                    peopleinside mod admin community specialist @Sanjeev last edited by

                                    @Sanjeev OK will wait the zip file.
                                    Have you also tested if a message of error is showed if no ReCaptcha is entered?
                                    Be sure also this works and the error can be translated.

                                    In my partial test no error was showed but I was not able to do the latest steps in your latest post because of composer.

                                    UVdesk passionate | Community moderator | External consultant

                                    If you need help with the community you can visit https://helpdesk.peopleinside.it/it/blog/uv
                                    You can always get in touch also with the UVdesk team
                                    https://support.uvdesk.com/en/

                                    1 Reply Last reply Reply Quote 0
                                    • S
                                      Sanjeev developer UVdesk Staff mod last edited by

                                      @peopleinside @ercanyuzuk

                                      Download project from here.

                                      Just add your Database details in .env file and run the project.

                                      peopleinside 2 Replies Last reply Reply Quote 0
                                      • peopleinside
                                        peopleinside mod admin community specialist @Sanjeev last edited by

                                        @Sanjeev thanks will try maybe now. I have to insert secret and site key I suppose.

                                        UVdesk passionate | Community moderator | External consultant

                                        If you need help with the community you can visit https://helpdesk.peopleinside.it/it/blog/uv
                                        You can always get in touch also with the UVdesk team
                                        https://support.uvdesk.com/en/

                                        1 Reply Last reply Reply Quote 0
                                        • peopleinside
                                          peopleinside mod admin community specialist @Sanjeev last edited by

                                          @Sanjeev said in Add Google recaptcha:

                                          @peopleinside @ercanyuzuk

                                          Download project from here.

                                          Just add your Database details in .env file and run the project.

                                          delete uvdesk root folder, use all file you provided under uvdesk root folder and put the old .env file never work. The Help desk load a empty white page. Maybe all email and other settings are missed?

                                          Maybe it's not enough restore just the .env file.
                                          Waiting your feedback.

                                          UVdesk passionate | Community moderator | External consultant

                                          If you need help with the community you can visit https://helpdesk.peopleinside.it/it/blog/uv
                                          You can always get in touch also with the UVdesk team
                                          https://support.uvdesk.com/en/

                                          1 Reply Last reply Reply Quote 0
                                          • peopleinside
                                            peopleinside mod admin community specialist last edited by peopleinside

                                            @Sanjeev

                                            I tried to replace only uvdesk folder (vendor/uvdesk) than replaced in config/packages folder the two files twig.yaml and uvdesk.yaml and inserted my ReCaptca site and secret key.

                                            php bin/console c:c

                                            I can see reCaptcha but doesn't let me login in the operator side, doesn't work if I try to create a ticket... no recpatcha error showed, the send button never work.

                                            Seems also removing the two files twig.yaml and uvdesk.yaml than cleaning chache the operator login never work and give a red error system login error.

                                            his update is not usable for me. Sorry, never work.

                                            I see some server error logs

                                            [Wed Mar 17 17:34:04.454789 2021] [proxy_fcgi:error] [pid 375516] [client [IP]:62507] AH01071: Got error 'PHP message: PHP Fatal error:  Uncaught Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Too few arguments to function Webkul\\UVDesk\\CoreFrameworkBundle\\Dashboard\\SearchTemplate::__construct(), 1 passed in /uvdesk/var/cache/prod/ContainerWSHmTL2/srcApp_KernelProdContainer.php on line 771 and exactly 3 expected in /uvdesk/vendor/uvdesk/core-framework/Dashboard/SearchTemplate.php:16\nStack trace:\n#0 /uvdesk/var/cache/prod/ContainerWSHmTL2/srcApp_KernelProdContainer.php(771): Webkul\\UVDesk\\CoreFrameworkBundle\\Dashboard\\SearchTemplate->__construct(Object(Twig\\Environment))\n#1 /uvdesk/var/cache/prod/ContainerWSHmTL2/srcApp_KernelProdContainer.php(654): ContainerWSHmTL2\\srcApp_KernelProdContainer->getUvdesk_ExtensiblesService()\n#2 /uvdesk/var/cache/prod/Container...', 
                                            [Wed Mar 17 17:34:02.338993 2021] [proxy_fcgi:error] [pid 429852] [client [IP]:62504] AH01071: Got error 'PHP message: PHP Fatal error:  Uncaught Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Too few arguments to function Webkul\\UVDesk\\CoreFrameworkBundle\\Dashboard\\SearchTemplate::__construct(), 1 passed in /uvdesk/var/cache/prod/ContainerWSHmTL2/srcApp_KernelProdContainer.php on line 771 and exactly 3 expected in /uvdesk/vendor/uvdesk/core-framework/Dashboard/SearchTemplate.php:16\nStack trace:\n#0 /uvdesk/var/cache/prod/ContainerWSHmTL2/srcApp_KernelProdContainer.php(771): Webkul\\UVDesk\\CoreFrameworkBundle\\Dashboard\\SearchTemplate->__construct(Object(Twig\\Environment))\n#1 /uvdesk/var/cache/prod/ContainerWSHmTL2/srcApp_KernelProdContainer.php(654): ContainerWSHmTL2\\srcApp_KernelProdContainer->getUvdesk_ExtensiblesService()\n#2 /uvdesk/var/cache/prod/Container...', 
                                            [Wed Mar 17 16:09:22.213396 2021] [proxy_fcgi:error] [pid 374845] [client [IP]:59410] AH01071: Got error 'PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 351PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 385PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 394PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 408PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 416PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 451PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 529PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 559PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 637PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 638PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 640PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 678PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 679PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 681PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 835PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 835PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 839PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 839PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 843PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 843PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 847PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 847PHP message: PHP Fatal error:  Uncaught Symfony\\Component\\DependencyInjection\\Exception\\ServiceNotFoundException: The service "security.context_listener.0" has a dependency on a non-existent service "Webkul\\UVDesk\\ApiBundle\\Providers\\ApiCredentials". in /uvdesk/vendor/symfony/dependency-injection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php:86\nStack trace:\n#0 /uvdesk/vendor/symfony/dependency-injection/Compiler/AbstractRecursivePass.php(82): Symfony\\Component\\DependencyInjection\\Compiler\\CheckExceptionOnInvalidReferenceBehaviorPass->processValue(Object(Symfony\\Component\\DependencyInjection\\Reference), false)\n#1 /uvdesk/vendor/symfony/dependency-injection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php(49): Symfony\\Component\\DependencyInjection\\Compiler\\AbstractRecursivePass->processValue(Array, false)\n#2 /home/piadm/public_html/helpd...', 
                                            [Wed Mar 17 16:09:18.353219 2021] [proxy_fcgi:error] [pid 378757] [client [IP]:59406] AH01071: Got error 'PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 351PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 385PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 394PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 408PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 416PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 451PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 529PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 559PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 637PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 638PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 640PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 678PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 679PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 681PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 835PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 835PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 839PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 839PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 843PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 843PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 847PHP message: PHP Deprecated:  Array and string offset access syntax with curly braces is deprecated in /uvdesk/vendor/uvdesk/core-framework/Utils/HTMLFilter.php on line 847PHP message: PHP Fatal error:  Uncaught Symfony\\Component\\DependencyInjection\\Exception\\ServiceNotFoundException: The service "security.context_listener.0" has a dependency on a non-existent service "Webkul\\UVDesk\\ApiBundle\\Providers\\ApiCredentials". in /uvdesk/vendor/symfony/dependency-injection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php:86\nStack trace:\n#0 /uvdesk/vendor/symfony/dependency-injection/Compiler/AbstractRecursivePass.php(82): Symfony\\Component\\DependencyInjection\\Compiler\\CheckExceptionOnInvalidReferenceBehaviorPass->processValue(Object(Symfony\\Component\\DependencyInjection\\Reference), false)\n#1 /uvdesk/vendor/symfony/dependency-injection/Compiler/CheckExceptionOnInvalidReferenceBehaviorPass.php(49): Symfony\\Component\\DependencyInjection\\Compiler\\AbstractRecursivePass->processValue(Array, false)\n#2 /home/piadm/public_html/helpd...', 
                                            [Wed Mar 17 13:44:31.474739 2021] [proxy_fcgi:error] [pid 378757] [client [IP]:55605] AH01071: Got error 'PHP message: PHP Fatal error:  Uncaught Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Too few arguments to function Webkul\\UVDesk\\CoreFrameworkBundle\\Dashboard\\SearchTemplate::__construct(), 1 passed in /uvdesk/var/cache/prod/ContainerWSHmTL2/srcApp_KernelProdContainer.php on line 771 and exactly 3 expected in /uvdesk/vendor/uvdesk/core-framework/Dashboard/SearchTemplate.php:16\nStack trace:\n#0 /uvdesk/var/cache/prod/ContainerWSHmTL2/srcApp_KernelProdContainer.php(771): Webkul\\UVDesk\\CoreFrameworkBundle\\Dashboard\\SearchTemplate->__construct(Object(Twig\\Environment))\n#1 /uvdesk/var/cache/prod/ContainerWSHmTL2/srcApp_KernelProdContainer.php(654): ContainerWSHmTL2\\srcApp_KernelProdContainer->getUvdesk_ExtensiblesService()\n#2 /uvdesk/var/cache/prod/Container...'
                                            [Wed Mar 17 13:40:09.300680 2021] [proxy_fcgi:error] [pid 374845] [client [IP]:55429] AH01071: Got error 'PHP message: PHP Fatal error:  Uncaught Symfony\\Component\\Debug\\Exception\\FatalThrowableError: Too few arguments to function Webkul\\UVDesk\\CoreFrameworkBundle\\Dashboard\\SearchTemplate::__construct(), 1 passed in /uvdesk/var/cache/prod/ContainerWSHmTL2/srcApp_KernelProdContainer.php on line 771 and exactly 3 expected in /uvdesk/vendor/uvdesk/core-framework/Dashboard/SearchTemplate.php:16\nStack trace:\n#0 /uvdesk/var/cache/prod/ContainerWSHmTL2/srcApp_KernelProdContainer.php(771): Webkul\\UVDesk\\CoreFrameworkBundle\\Dashboard\\SearchTemplate->__construct(Object(Twig\\Environment))\n#1 /uvdesk/var/cache/prod/ContainerWSHmTL2/srcApp_KernelProdContainer.php(654): ContainerWSHmTL2\\srcApp_KernelProdContainer->getUvdesk_ExtensiblesService()\n#2 /uvdesk/var/cache/prod/Container...'
                                            [Wed Mar 17 13:30:57.044574 2021] [proxy_fcgi:error] [pid 381382] [client [IP]:55070] AH01071: Got error 'PHP message: PHP Fatal error:  Uncaught Error: Class 'Webkul\\UVDesk\\CoreFrameworkBundle\\UVDeskCoreFrameworkBundle' not found in /uvdesk/src/Kernel.php:23\nStack trace:\n#0 /uvdesk/vendor/symfony/http-kernel/Kernel.php(429): App\\Kernel->registerBundles()\n#1 /uvdesk/vendor/symfony/http-kernel/Kernel.php(130): Symfony\\Component\\HttpKernel\\Kernel->initializeBundles()\n#2 /uvdesk/vendor/symfony/http-kernel/Kernel.php(193): Symfony\\Component\\HttpKernel\\Kernel->boot()\n#3 /uvdesk/public/index.php(25): Symfony\\Component\\HttpKernel\\Kernel->handle(Object(Symfony\\Component\\HttpFoundation\\Request))\n#4 {main}\n  thrown in /uvdesk/src/Kernel.php on line 23',
                                            

                                            UVdesk passionate | Community moderator | External consultant

                                            If you need help with the community you can visit https://helpdesk.peopleinside.it/it/blog/uv
                                            You can always get in touch also with the UVdesk team
                                            https://support.uvdesk.com/en/

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post