
June 6th, 2012, 04:25 PM
|
|
Registered User
|
|
Join Date: Jun 2012
Posts: 3
Time spent in forums: 2 h 38 m 22 sec
Reputation Power: 0
|
|
|
Root directory works, subdirectories do not.
PHP will not run in subdirectories under document root.
http://localhost (works)
http://localhost/index.php (works)
http://localhost/testdirectory/index.php (DOES NOT WORK)
I am knew to PHP and Apache 2.2. I am trying to do is set up new projects in subdirectories and test projects which are created under the root that is working.
Additional information from the httpd conf file.
<Directory "C:/Apache">
PHPIniDir "c:\php"
LoadModule php5_module "c:\php\php5apache2_2.dll"
Is this a path enviromental issue ? Do I need to add directories onto the <Directory "C:\Apache> ? 
|