So you've Uncommented line 42 and removed the .htaccess files?

before you did that did your www/.htaccess have:


<IfModule mod_rewrite.c>
   RewriteEngine on
   RewriteRule    ^$ app/webroot/    [L]
   RewriteRule    (.*) app/webroot/$1 [L]
</IfModule>



and www/app/.htaccess:

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule    ^$    webroot/    [L]
    RewriteRule    (.*) webroot/$1    [L]
 </IfModule>



and www/app/webroot/.htaccess:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>

------------------------------------------------------------------


As you said, your ISP might have changed the (httpd.conf?) on your box.
Just needs restoring to original config.


Keep at it, as with current set up your CSS / script will be messed up.
( as it will be looking in the wrong place). If you were to continue as
is, it would probably cause hassle down the line.

<link rel="stylesheet" type="text/css" href="/css/cake.generic.css" />

 Whereas at present it will be looking in www/css/cake.generic.css



once set up you'll be able to get to your homepage with:

hostingnewmedia.com/app/webroot/
hostingnewmedia.com/app/

or

hostingnewmedia.com


Try sending your ISP to this thread for insight, or to the cakephp
manual as sometimes they can 'over tech' small issues.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/cake-php
-~----------~----~----~----~------~----~------~--~---

Reply via email to