mod_rewrite and cakephp installation

Need help installing PHP, configuring a script, or configuring a server? Then come on in and post your questions! We'll try to help the best we can!

Moderator: General Moderators

Post Reply
Tashu
Forum Newbie
Posts: 1
Joined: Sat Mar 08, 2008 7:39 am

mod_rewrite and cakephp installation

Post by Tashu »

I'm having some trouble with this -

I already set it to

Code: Select all

LoadModule rewrite_module modules/mod_rewrite.so
without comment, but it was already loaded.

I have Eclipse IDE in home folder, and I set it to -

Code: Select all

 
Alias /Blog "/home/peter/workspace/Blog"
<Directory "/home/peter/workspace/Blog">
  Options Indexes MultiViews
  AllowOverride All
  Order allow,deny
  Allow from all
  DirectoryIndex index.php
</Directory>
 
I do see the cakephp default webpage but the images were not loaded. So, I looked at the error log -

Code: Select all

[Sun Mar 16 19:15:18 2008] [error] [client 127.0.0.1] File does not exist: /opt/lampp/htdocs/img, referer: http://localhost/Blog/
I tried to move the blog to htdocs to see if it works, but the error is still there. I think that's related to -

Code: Select all

DocumentRoot "/opt/lampp/htdocs"
I googled the xampp/cakephp installation, I don't see any configurations on that. I wanted to check with this forum to see if they have any ideas.
Post Reply