Re: Cake 2.0 1&1 hosting and htaccess problem

2011-09-20 Thread José Lorenzo
Can you explain a bit better how the application is deployed on the filesystem, and verify that whether the .htaccess files are the same? Also verify if both the production and de 1&1 server settings match -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Che

Cake 2.0 1&1 hosting and htaccess problem

2011-09-20 Thread Raph
The problem is weird. We have two 1&1 linux servers managed by 1&1. On development server we have weird errors because Cake "thinks" that its base directory is directory above real base directory. The problem dosen't occur on production server. The weirdest thing is that older versions of Cake (1.

is htaccess problem or cakephp's problem?

2011-03-10 Thread cake-learner
My app used to forward to login.php page when user comes into the page but today it started going to index.php/login instead. mydomin.com/login page still exists but when i rediret( /login ) it goes to index.php/login -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakeph

Re: Cakephp deployment gone wrong...page controller not working. Maybe .htaccess problem?

2010-10-17 Thread cricket
On Sat, Oct 16, 2010 at 5:42 PM, mig_akira wrote: > > Actually I changed my Apache at home to "AllowOverride None", and I could > replicate the error. Could someone confirm that this error could be a server > error, and not a cakephp config error? Can you confirm that setting AllowOverride to 'Al

Re: Cakephp deployment gone wrong...page controller not working. Maybe .htaccess problem?

2010-10-16 Thread mig_akira
yment-gone-wrong-page-controller-not-working-Maybe-htaccess-problem-tp3215523p3215550.html Sent from the CakePHP mailing list archive at Nabble.com. Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message becau

Cakephp deployment gone wrong...page controller not working. Maybe .htaccess problem?

2010-10-16 Thread mig_akira
d not find the css file. I had to change it manually to It seems that the webroot folder has some problem. Can anyone help me here? Thanks! -- View this message in context: http://cakephp.1045679.n5.nabble.com/Cakephp-deployment-gone-wrong-page-controller-not-working-Maybe-htaccess-problem-t

Re: .htaccess problem on shared hosting environment (cakephp -> SEO)

2007-12-02 Thread Louie Miranda
thanks!!! > RewriteRule ^test/$ - [PT] -- Louie Miranda ([EMAIL PROTECTED]) http://www.axishift.com Security Is A Series Of Well-Defined Steps chmod -R 0 / ; and smile :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gr

Re: .htaccess problem on shared hosting environment (cakephp -> SEO)

2007-11-28 Thread powtac
http://bakery.cakephp.org/articles/view/500-errors-with-1and1-hosting-apache-1-x --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsu

Re: .htaccess problem on shared hosting environment (cakephp -> SEO)

2007-11-28 Thread powtac
Try RewriteEngine on RewriteRule^$ /public_html/example.com/app/webroot/[L] RewriteRule(.*) /public_html/example.com/app/webroot/$1 [L] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake

.htaccess problem on shared hosting environment (cakephp -> SEO)

2007-11-27 Thread Louie Miranda
My hosting provider stores my "add-on domains" under /public_html/example.com Now, when i access my main site. Everything, works well. But, when i accesss my "add-on domain" example.com. It says 500, Internal error. We tried removing the lines for .htaccess RewriteEngine on RewriteRule

Re: .htaccess problem

2007-11-13 Thread [EMAIL PROTECTED]
nops dear its not working and one more thing shop is my controller --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe fro

Re: .htaccess problem

2007-11-12 Thread schneimi
I had a similar problem and found the following solution somewhere on the web, just put it in the first .htaccess file, maybe it helps you too. RewriteEngine on RewriteRule^$ app/webroot/[L] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteR

.htaccess problem

2007-11-11 Thread [EMAIL PROTECTED]
in my cakephp i want to do some url rewrite but whenever i put some url rule on my htaccess it gives (none)500 error my url is http://www.xaprio.com/Client/work/PHPcake/shop?sn=a&lb=harish and i want http://www.xaprio.com/Client/work/PHPcake/shop/a/lb/harish shop is my function in a controll