I really hope someone could help.

It's been driving me crazy for 2 days, I've tried so many configurations to 
get my app working.

I moved it from 1 domain to another, and although it renders the 1 page it 
doesn't login or go to sign up like it used to.

I have:
mod_rewrite on
Wildcard installed
Curl is enabled

The database connects and the paths are correct, it renders the homepage 
and login, but after login it doesn't redirect to the users account 
subdomain like it should.

For example, the site homepage http://www.cloudpollen.com/
The login link goes here http://www.cloudpollen.com/login
You login with these details jimmy / steven
It then redirects the homepage

I can only image it might be the .htaccess, but I've tried numerous 
versions but nothing, here's what I've tried:

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

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

and

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase    /app/
RewriteCond %{HTTP_HOST} ^(www\.)?cloudpollen.com$
RewriteRule    ^$ app/webroot/    [L]
RewriteCond %{HTTP_HOST} ^(www\.)?cloudpollen.com$
RewriteRule    (.*) app/webroot/$1 [L]
</IfModule>

I also tried modifying the above to get some kind of result but all I got 
were 500 errors


Can anyone help?

-- 
Like Us on FaceBook https://www.facebook.com/CakePHP
Find us on Twitter http://twitter.com/CakePHP

--- 
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com.
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/cake-php?hl=en.


Reply via email to