šŸ”“ January 2024 Alert: Forum support inactive!
New forum registration are currently closed.
Use GitHub discussions
.

    UVdesk

    • Login
    • Search
    • Recent

    Solved Help with a fresh install

    Technical Help
    3
    14
    1183
    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.
    • peopleinside
      peopleinside EX helping member @Ultra Plankton last edited by

      @Ultra-Plankton what PHP version are you running?

      How did you installed UVDesk: using composer, Docker or what?
      What version of UVdesk are you trying to install?

      This infos can help developers and staff to reply to your topic.

      šŸ’¬ You can also ask help on GitHub Discussions
      šŸ”“ I am no more active on Uvdesk
      šŸ”“ Forum support is inactive!

      U 1 Reply Last reply Reply Quote 0
      • U
        Ultra Plankton @peopleinside last edited by

        @peopleinside
        So currently trying to do it with php 8.1.2
        Uvdesk 1.0.18
        I couldn’t get composer to work because it was reading for php 7 and I couldn’t get php 7. So just with wget and manually run it

        peopleinside 1 Reply Last reply Reply Quote 0
        • peopleinside
          peopleinside EX helping member @Ultra Plankton last edited by

          @Ultra-Plankton thanks for the info.
          Composer can run with PHP 8.x but you need use the updated composer version 2 the latest.

          Also latest UVdesk version is v1.1.3
          https://github.com/uvdesk/community-skeleton/releases/tag/v1.1.3

          For know why the error and what to do we need wait a UVdesk staff reply

          šŸ’¬ You can also ask help on GitHub Discussions
          šŸ”“ I am no more active on Uvdesk
          šŸ”“ Forum support is inactive!

          U 2 Replies Last reply Reply Quote 0
          • U
            Ultra Plankton @peopleinside last edited by

            @peopleinside

            Oh alright maybe thats why I didn’t see that was there I will try running it with composer 2 when I get home and update

            1 Reply Last reply Reply Quote 0
            • U
              Ultra Plankton @peopleinside last edited by

              @peopleinside

              Hey so I tried the install via composer and it says this Screenshot 2023-07-09 011023.png

              peopleinside 1 Reply Last reply Reply Quote 0
              • peopleinside
                peopleinside EX helping member @Ultra Plankton last edited by peopleinside

                @Ultra-Plankton If I'm not wrong, those can be just warnings for UVdesk developers.
                I think you can ignore them. Is the installation working?

                šŸ’¬ You can also ask help on GitHub Discussions
                šŸ”“ I am no more active on Uvdesk
                šŸ”“ Forum support is inactive!

                U 1 Reply Last reply Reply Quote 0
                • U
                  Ultra Plankton @peopleinside last edited by

                  @peopleinside
                  No its not I get a error saying that it refused to connect when I open the web ui. After I installed apache2 and it just loads the default apache page

                  peopleinside 2 Replies Last reply Reply Quote 0
                  • peopleinside
                    peopleinside EX helping member @Ultra Plankton last edited by

                    @Ultra-Plankton what steps did you follow:

                    • were you able to install composer 2?
                    • after that was you able to run the installation wizard? If yes all checks was green passed?

                    After the installation the home page of the ticket was showed correctly?
                    Maybe a video of the installation process and encountered issue can help better to understand.

                    šŸ’¬ You can also ask help on GitHub Discussions
                    šŸ”“ I am no more active on Uvdesk
                    šŸ”“ Forum support is inactive!

                    U 1 Reply Last reply Reply Quote 0
                    • U
                      Ultra Plankton @peopleinside last edited by

                      @peopleinside
                      I can show a video when I get home tonight but I couldn’t even get to the installation wizard. Composer 2 was installed successfully

                      1 Reply Last reply Reply Quote 0
                      • peopleinside
                        peopleinside EX helping member @Ultra Plankton last edited by peopleinside

                        @Ultra-Plankton remember also that in the browser you may need load the public folder because if you see a default Apache page can be the URL in the browser that is wrong.

                        https://yourdomain.ext/uvdesk/public/

                        šŸ’¬ You can also ask help on GitHub Discussions
                        šŸ”“ I am no more active on Uvdesk
                        šŸ”“ Forum support is inactive!

                        U 1 Reply Last reply Reply Quote 0
                        • U
                          Ultra Plankton @peopleinside last edited by

                          @peopleinside It saying I can't upload the video

                          1 Reply Last reply Reply Quote 0
                          • Komal Sharma
                            Komal Sharma UVdesk Staff mod last edited by

                            @Ultra-Plankton

                            After install composer 2. Try with the latest version of uvdesk v-1.1.3. Also, once you can check the below these cases and make changes accordingly:

                            A web server might don't have permission to allow overriding of theĀ Apache configĀ on a per-directory basis.Ā Allow Override needs to be set to AllĀ for the directory block as mentioned below:

                            <Directory /home/users/var/www/htdocs>
                            Options Indexes FollowSymLinks
                            AllowOverride All
                            Require all granted
                            

                            If yourĀ database passwordĀ contains someĀ special character(such as #$%@)Ā then change your password andĀ make it without special characters.

                            Locate theĀ .env fileĀ in your project and make sureĀ APP_ENV=devĀ when you are doing your setup.

                            AllowĀ read-write permissionĀ for the below file & folder:

                            ForĀ .envĀ file – chmod 777 -R path of .env file of UVdesk project
                            ForĀ VarĀ folder -chmod 777 -R path of var folder of UVdesk project
                            ForĀ ConfigĀ folder – chmod 777 -R path of config folder of UVdesk
                            ForĀ PublicĀ folder – chmod 777 -R path of the public folder of UVdesk
                            ForĀ MigrationĀ folder – chmod 777 -R path of the migration folder of UVdesk

                            It happens mainly because ofĀ less execution timeĀ in theĀ php.iniĀ file.

                            By default,Ā max_execution_timeĀ is 30 sec you need to increase it and restart your server.

                            CheckĀ hereĀ how to increase theĀ max-execution timeĀ and restart your server.

                            And clear your project cache using the below command:

                            $ php bin/console c:c
                            

                            Now try to install your project.

                            => Also,Ā run the below commands in your project root directory:

                            $ php bin/console doctrine:migrations:diff
                            
                            $ php bin/console doctrine:migrations:migrate
                            

                            AndĀ clear the cache of the project:

                            $ php bin/console c:c
                            

                            => Once you try with theĀ manual installation of uvdeskĀ fromĀ here.

                            If the issue is still in the manual installation setup, let us know.

                            Thanks and Regards
                            Uvdesk Team

                            1 Reply Last reply Reply Quote 1
                            • Topic has been marked as solved  peopleinside peopleinside 
                            • First post
                              Last post