Re: the blog post problem

2009-03-13 Thread bilal
when i bypass the rewrite, it gives me the fancy cake layout but still the same result, i am going to try to install xampp now! On Mar 11, 9:58 am, Jon Bennett jmbenn...@gmail.com wrote: Hi bilal, You are right, all three files are different, the server had mod_rewrite off, i turned it on

Re: the blog post problem

2009-03-11 Thread Jon Bennett
Hi bilal, all three htaccess files are there, but i still have to type index.php to access, this is how my .htaccess files looks like IfModule mod_rewrite.c RewriteEngine on RewriteRule^$ app/webroot/[L] RewriteRule(.*) app/webroot/$1 [L] /IfModule Hmm, you

Re: the blog post problem

2009-03-11 Thread bilal
Hi Jon, You are right, all three files are different, the server had mod_rewrite off, i turned it on and tried again but it didnt help. :( what else could we look at ... On Mar 11, 4:58 am, Jon Bennett jmbenn...@gmail.com wrote: Hi bilal,  all three htaccess files are there, but i still

Re: the blog post problem

2009-03-11 Thread Jon Bennett
Hi bilal, You are right, all three files are different, the server had mod_rewrite off, i turned it on and tried again but it didnt help. :( what else could we look at ... hmm - is the html helper outputting links with index.php in them, or are you doing this manually? Does the site work if

Re: the blog post problem

2009-03-10 Thread Jon Bennett
Hi bilaliz, its WAMP server that i have installed on my notebook, the way i learned to deploy was to simply download cake and copy all files in to the www folder and i should able to see the default cake index, and indeed that worked .. so for example my views are in

Re: the blog post problem

2009-03-10 Thread bilal
Hi Jon, all three htaccess files are there, but i still have to type index.php to access, this is how my .htaccess files looks like IfModule mod_rewrite.c RewriteEngine on RewriteRule^$ app/webroot/[L] RewriteRule(.*) app/webroot/$1 [L] /IfModule thanks for helping out On

Re: the blog post problem

2009-03-09 Thread bilal
thanks for replying folks, i am posting my index, add and edit as well as the urls below i have looked through all, but still have got no clue . h1Blog posts/h1 p?php echo $html-link(Add Post, /posts/add); ? table tr thId/th thTitle/th

Re: the blog post problem

2009-03-09 Thread Jon Bennett
h1Blog posts/h1 p?php echo $html-link(Add Post, /posts/add); ? table tr thId/th thTitle/th thAction/th thCreated/th /tr !-- Here's where we loop through our $posts array, printing out post info --

Re: the blog post problem

2009-03-09 Thread bilal
its WAMP server that i have installed on my notebook, the way i learned to deploy was to simply download cake and copy all files in to the www folder and i should able to see the default cake index, and indeed that worked .. so for example my views are in D:\wamp\www\app\views\posts

Re: the blog post problem

2009-03-08 Thread hashmich
Same as Marcelo: Have a look at the view for index action - And a closer look at the area, where links for add-, edit- and delete-action are defined. Is there is something called like .../posts/posts instead of .../posts/ edit ? On Mar 7, 6:50 pm, brian bally.z...@gmail.com wrote: What do the

Re: the blog post problem

2009-03-07 Thread Marcelo Andrade
On Sat, Mar 7, 2009 at 6:19 AM, bilal bila...@gmail.com wrote: however ass soon as i click on ANY of the links i get the following error (including delete, edit Ad Post) Missing Method in PostsController Error: The action posts is not defined in controller PostsController How your views

Re: the blog post problem

2009-03-07 Thread brian
What do the URLs look like? Paste an example here. Also, do you have any routes set up for Posts? You shouldn't necessarily need any but, if you have created some Post routes, they may be the source of the problem. On Sat, Mar 7, 2009 at 4:19 AM, bilal bila...@gmail.com wrote: indeed i am a