I was having problems similar but not like yours. I unziped or extracted cakephp to my public_html and changed the folder name to cake so it's now public_html/cake. This is called a development install which is perfect for playing around. In public_html/cake/.htaccess you will see this:
<IfModule mod_rewrite.c> RewriteEngine on RewriteRule ^$ app/webroot/ [L] RewriteRule (.*) app/webroot/$1 [L] </IfModule> You can change it to this: <IfModule mod_rewrite.c> RewriteEngine on RewriteRule ^$ app/webroot/ [L] RewriteRule (.*) app/webroot/$1 [L] RewriteBase /~vistoin1/ </IfModule> Then you can access it from yourhostingprovider.com/~vistoin1/cake. But I gave up and setup a domain name to the account so now cakephp just works right out of the box. Like it was intended. If you have access to your accounts control panel look for "error logs" when get an error take a peak at the last error log and you will see what's going on and why you need a domain name. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
