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

    UVdesk

    • Login
    • Search
    • Recent

    Solved Installation step giving error

    Technical Help
    2
    2
    1049
    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.
    • C
      ChandanHJ last edited by

      UVdesk.PNG

      In the installation, I'm struck from the past 3hrs it's still installing only. Can anyone help me to resolve this?

      1 Reply Last reply Reply Quote 0
      • admin
        admin UVdesk Staff admin last edited by

        @ChandanHJ
        Check Following Cases:
        Before setting up your project check below things and make changes accordingly:

        Case 1. A web server might don’t have permission to allow overriding of the Apache config on a per-directory basis. In apache2.conf, Allow Override needs to be set to All for the directory block as mention below:

        <Directory /home/users/www>
        Options Indexes FollowSymLink
        AllowOverride All
        Require all granted

        Note: Need to run below commands for enabling mod rewrite rule:

        a2enmod rewrite
        Then, restart web server:

        service apache2 restart
        Case 2. If your database password contains some special character(such as #$%@) then change your password and make it without special character.

        Case 3. Allow read-write permission for 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 project

        Case 4. And also check max execution time if it is 30 sec then increase it. Check here.

        Case 5. locate .env file in your project and make sure APP_ENV=dev when you are doing your setup.

        After that, restart your server by.

        service apache2 restart
        Lastly, clear your project cache by:

        php bin/console c:c

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