I found the solution to this problem, it has something to do with
godaddy subdomains.
I put this on .htaccess in cflive directory
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteRule ^$ cflive/app/webroot/ [L]
RewriteRule (.*) cflive/app/webroot/$1 [L]
</IfModule>
and this on cflive/app/webroot/
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ cflive/app/webroot/index.php?url=$1 [QSA,L]
</IfModule>
All the best!
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---