Configure Cake PHP on Zend Core For Oracle
If you guys are running XAMPP as your apache then its a piece of cake for you to configure cakePHP for the first time.
just open your httpd.conf and look for the following line and uncomment it
LoadModule rewrite_module modules/mod_rewrite.so
But if you guys are running Zend Core as your apache then you will need a little bit more effort to configure your cakePHP for the first time.
Look for these lines in your httpd.conf
1. LoadModule rewrite_module modules/mod_rewrite.so
(Uncomment It)
2. <Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
(Change to this)
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
3. AllowOverride None (Change to this) AllowOverride All
4. Restart you apache service and refresh your browser.
That’s it, Good Luck
About this entry
You’re currently reading “Configure Cake PHP on Zend Core For Oracle,” an entry on Xyiry PHP Blog | Where Open Source Lives
- Published:
- 04.20.08 / 8am
- Category:
- CakePHP
No comments
Jump to comment form | comments rss [?] | trackback uri [?]