4 Nov 2022, 06:38

@compay

It can be because of these reasons.
Check the below these cases and make changes accordingly:

  1. 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
  1. If your database password contains some special character(such as #$%@) then change your password and make it without special characters.

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

  3. 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
  1. 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.
    Restart your server.

And clear your project cache by:
php bin/console c:c
Now try to install your project.

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

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