You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 1, 2017. It is now read-only.
When I navigate to the install virtual directory I get this message. As I understand it, it's caused by a path issue with a bad value passed to the PHP, but I'm not sure how to fix it. I would really appreciate any suggestions, as it's not a problem mentioned in the install guide. Thanks!
I've tried the different .htaccess files given in the install guide but none of them worked
The text was updated successfully, but these errors were encountered:
I solved the problem and was able to successfully install by changing one line of the .htaccess
I changed this:
RewriteRule ^(.)$ ./index.php/$1 [L,QSA]
to this:
RewriteRule ^(.)$ ./index.php?/$1 [L,QSA]
For some reason adding the ? fixed the whole thing. I'm not familiar with web development so I have no idea what difference it made lol, but perhaps it will be helpful for someone else in the future.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When I navigate to the install virtual directory I get this message. As I understand it, it's caused by a path issue with a bad value passed to the PHP, but I'm not sure how to fix it. I would really appreciate any suggestions, as it's not a problem mentioned in the install guide. Thanks!
I've tried the different .htaccess files given in the install guide but none of them worked
The text was updated successfully, but these errors were encountered: