Tuesday, December 30, 2008

Getting color screen for CakePHP application while executing localhost.

Getting color screen for CakePHP application while executing localhost follow these steps:

1.Start executing Cake browser application through moziilla/IE/opera/netscape/flog etc.
if you got error like "without getting color screen " for Application.
2.Open C:\xampp\apache\conf directory
3.Open httpd.conf file.
4.Remove # from line number 118

# LoadModule rewrite_module modules/mod_rewrite.so
give like this
LoadModule rewrite_module modules/mod_rewrite.so
5.change "None" as "All" in 188,331
like this

Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all

As

Options FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all

6.Now restart apache and Browser.
7.Execute your application.

No comments: