Installation folder doesn't exist

I have uploaded the directory to html_public folder and ran composer install. However, installation folder doesn’t exists and therefore I am not able to continue installation. Has anyone had the same issue? Let me know if you know how to fix it!

 

Have you mod_rewrite enable ?

Show in /phpvms/storage/logs the Laravel Log file for error

3 hours ago, chris2012nrw said:

Have you mod_rewrite enable ?

Show in /phpvms/storage/logs the Laravel Log file for error

As I can see, that directory is empty with no log files in it

As said, you need mod_rewrite or htaccess enabled in your webhost,

I was able to solve it, as you said, by moving .htaccess file from public forder to the main one;)

 

Thanks everyone!

Don’t close the topic I’ve like the same problem !!!
I explain when i go to the page the-g-shop.fr/phpvms –> it’s a normal page but when i click on the green button a page go on and said Error 404 - No folder who have this name ! In fact I don’t have any Install folder in my FTP ! How I can solve this problem ?

Please Help me !
Baptiste Sutter

I’m having the same issue - I’ve tried moving the .htaccess file from public to main as suggested and restart apache, no joy…

So always problem persist …

Have removed Apache, recloned into Nginx, getting the default ‘phpvms not installed page’ correctly formatted. Click the green installer button, same problem, page not found. Also does same if I go to /public/index.php and try to launch. There is no /installer so I’m assuming there’s a redirect somewhere, but I can’t find it! 

 

On 1/19/2019 at 5:52 PM, TheRictus said:

Have removed Apache, recloned into Nginx, getting the default ‘phpvms not installed page’ correctly formatted. Click the green installer button, same problem, page not found. Also does same if I go to /public/index.php and try to launch. There is no /installer so I’m assuming there’s a redirect somewhere, but I can’t find it! 

 

if you’re just starting out with phpvms i would get the 5.5.x version from simpilot if i was you it is more stable at this time

Stable apart from the fact the Captcha is out of date and requires a whole load of work… I’m aware that v7 is currently in dev, we aren’t planning to go live until v7 is live. But I was hopeful to trial it successfully to look at features so we can make a decision ready for the VA relaunch.

Hello all,

Has anyone found a solution to this problem? I am running into the exact same thing. The normal page shows up, as I click “Head on to the Installer” I get a 404 page. Is there anything we can do or are we SOL until V7 is out of Beta?

I got it working with editing 

 location / { try\_files $uri $uri/ =404; }

into

 location / { try\_files $uri $uri/ /index.php?$args; }

 

Use another browser like Edge, I got this error when use Chrome

Apache V Host config it works

 

DocumentRoot /var/www/html/adu/phpvms/public
ServerName airduesseldorfva.ddnss.de
<Directory /var/www/html/adu/phpvms/public>
Options Indexes FollowSymLinks
    AllowOverride All
    Require all granted
</Directory>