Love Fuel?
Donate
About
Forums
Discussions
Login
FuelPHP Forums
Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
General
Requested URL not Found
abarcenas
September 2013
For the first time, I tried uploading a segment of my code to the web to test.
http://cps.deremoe.com
It managed to load the primary page, but when I clicked the register button I get
The requested URL /account/register was not found on this server.
Of course on my development machine it works fine. So I might be missing something. I have a wordpress install on the server and it works fine.
Here is my vhost settings for the account.
<VirtualHost *:80>
DocumentRoot "/www/cps.deremoe.com/public"
ServerName cps.deremoe.com
<Directory "/www/cps.deremoe.com">
Satisfy Any
Allow from all
</Directory>
</VirtualHost>
Harro
September 2013
Accepted Answer
It sounds like your .htaccess in the public folder isn't picked up.
Is processing it disabled in your webserver config? If so you might need an AllowOverride statement in your virtualhost to have it read.
Most default configs have a "AllowOverride None" which will disable the .htaccess". See
http://httpd.apache.org/docs/2.2/howto/htaccess.html
Syntaxlb
September 2013
Problem solved ?
Add a Comment
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
5,088
General
↳ General
3,364
↳ Job Board
13
↳ Installation & Setup
214
Packages
↳ Oil
213
↳ Orm
700
↳ Auth
260
Development
↳ Tips and Tutorials
126
↳ Code share
145
↳ Applications
52
In this Discussion
Harro
September 2013
Syntaxlb
September 2013