PHP from an Alias directory

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
squibs
Forum Newbie
Posts: 3
Joined: Tue Apr 10, 2007 5:21 am

PHP from an Alias directory

Post by squibs »

I set up a directory alias in apache

Code: Select all

Alias /mydir /var/www/vhosts/sharedscripts
In php.ini, the unix include path was commented out. I uncommented it and added my shared folder to the end

Code: Select all

include_path = ".:/php/includes:/var/www/vhosts/sharedscripts"
The safe_mode_include_dir was blank - I made it

Code: Select all

safe_mode_include_dir = "/var/www/vhosts/sharedscripts"
open_basedir is commented out.

PHP is served correctly from the document root, and html is served ok from the alias directory, but I get "do you want to save or open this file" for php files in the alias directory. I also can't get php files in the doc root to include php files from the alias (this is my ultimate goal). I would really appreciate any suggestions.
Post Reply