Re: pretty URL's problem

2006-05-05 Thread ivan
I'm working on a windows machine. should that make any diference? --~--~-~--~~~---~--~~ 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 from

Re: pretty URL's problem

2006-05-04 Thread [EMAIL PROTECTED]
Also, maybe it was never mentioned or asked. But you are on a Linux machine right? And then return all the changes back. CakePHP by default is setup to work with mod_rewrite. So, from CakePHP default settings all you need to do is enable mod_rewrite and it will work. I agree you are trying

Re: pretty URL's problem

2006-05-03 Thread ivan
I did so and the links got messed up: http://localhost/posts/edit/5 they should be http://localhost/blog/posts/edit/5 and the css file got lost i erased the .htaccess files, but the same problems --~--~-~--~~~---~--~~ You received this message because you are

Re: pretty URL's problem

2006-05-03 Thread gwoo
ivan, you are trying too hard. If you are using Apache mod_rewrite can work if you enable the module in the config, set AllowOverride to ALL, AND have the htaccess, AND have line 42 commented. To recap: 1) enable mod_rewrite module in apache config 2) Make sure AllowOverride ALL is set for

pretty URL's problem

2006-05-02 Thread ivan
Hi everyone. I want pretty url's like this: http://localhost/cake/blog/posts/view/1 but I'm getting this: http://localhost/cake/blog/index.php/posts/view/1 with the 'index.php' in the middle I'm working locally, running Apache 2.x.x.x. The httpd.conf file reads All for AllowOverride but, since

Re: pretty URL's problem

2006-05-02 Thread Jason Lee
On 5/2/06, ivan [EMAIL PROTECTED] wrote: I'm working locally, running Apache 2.x.x.x. The httpd.conf file reads All for AllowOverride but, since the mod_rewrite module is commented, I'm using the .httaccess files Is .httaccess (note the two t's) a typo? Just making sure... :) In my

Re: pretty URL's problem

2006-05-02 Thread gwoo
you need to uncomment the mod_rewrite in apache config and then leave line 42 commented --~--~-~--~~~---~--~~ 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