Love Fuel?    Donate

FuelPHP Forums

Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
Requested URL not Found
  • For the first time, I tried uploading a segment of my code to the web to test. 


    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>
  • HarroHarro
    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
  • Problem solved ?

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion