is your document root set to your cake folder, or cake/app, or cake/
app/webroot?

Try setting it to:
cake/app/webroot
 and then change your .htaccess file (cake/app/webroot/.htaccess) to:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ /index.php?url=$1 [QSA,L]
</IfModule>

good luck,
cook

On May 25, 12:56 am, Merc <[EMAIL PROTECTED]> wrote:
> I am attempting to follow the article at Sitepoint 
> (http://www.sitepoint.com/article/application-development-cakephp). I believe
> that I have CakePHP successfully installed and configured 
> (athttp://www.b13ed.com/);however, I am stuck at page 2 of the article.
> I cannot gethttp://b13ed.com/notes/to produce any results - other
> than a lovely 404 error. I have created and uploaded the 2 files as
> directed by the article, but not getting the expected results.
>
> I would be grateful for any direction that will help my to
> troubleshoot the issue.


--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to