Jump to content

Weird apache2 + php5.2.2


chombium

Recommended Posts

Hi,

 

I've installed apache 2 and php 5.2.2 on Suse 10 SLES.

 

I'm experiencing some weird problem:

In the Apache DocumentRoot directory I have several files

they are owned by the same user and have the same permissions.

I can open some of them in a web browser and for some of

them I get "error 404: Object not found!".

At first I thought that I have so problem with the permissions

After checking and setting the permissions and owner on the same

values as the files that are opened correctly I've tried again but

i got the same results.

 

From the command line using the php cli I've also checked if the .php

files are prased correctly and everything was ok.

 

I didn't know what else to do so to give one last try I've created

a virtual host in the same directory as the DocumentRoot in httpd.conf

 

Everything works fine now, but it's a sort of a hack, not a real solution

 

Everything in the httpd.conf as in the httpd.default except these few lines:

DocumentRoot "/vas/www/htdocs/"

<Directory />
   Options FollowSymLinks
   Options +Includes +MultiViews +Indexes
   AllowOverride All
   Order deny,allow
   Allow from all
   Satisfy all
</Directory>

 

The config section for the virtual host is (it's the same with the one above):

<VirtualHost *:4005>
   DocumentRoot "/vas/www/htdocs/"
   ServerName localhost
   ServerAdmin root@localhost
   DirectoryIndex index.html index.php 

   AddHandler application/x-httpd-php .php
   AddHandler application/x-httpd-php-source .phps

  <Directory />
     Options FollowSymLinks
     Options +Includes +MultiViews +Indexes
     AllowOverride All
     Order deny,allow
     Allow from all  
     Satisfy all
  </Directory>
</VirtualHost> 

 

When I try to access the files with http://localhost:4005

everything works fine.

 

I've tried playing around with .htaccess file, but I didn't get any positive result :(

 

Seems like I'm missing something in the Apache configuration, but I can not find what.  ::)

 

Any Ideas?

 

Thanks in advance

Link to comment
Share on other sites

Which files could you open and which couldn't you open?

 

There wasn't anything special php code in the files.

 

For examle I've created a phpinfo.php

<?php phpinfo(); ?>

 

then I've copied it as ppp.php, in the same folder as phpinfo.php changed

the owner and permissions to the very same as phpinfo.php, and

it return error 404.

 

Don't know what to do ???

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.