FoolCode / FoOlSlide

[NO LONGER MAINTAINED] Online Comics Publishing Software for Authors and Teams
http://foolcode.github.com/FoOlSlide/
Other
115 stars 64 forks source link

"No input file specified." on install #61

Open edasaki opened 8 years ago

edasaki commented 8 years ago

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

edasaki commented 8 years ago

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.