test006 Posted April 29, 2006 Share Posted April 29, 2006 Hi,I have read the following tutorial Including Files in PHP - Beginner Tutorial and i still have some questions. I came across this when working on my current project.I have all my php files under following directory:/var/www/test/codeSo all my php scripts are under code directory as shown above....No i want to include files within my php scripts that are from a directory that is not inside /var/www directory.I want to have a include directory that inside /var directory so my include directory is /var/include.My question is how do i include files in my script that are located in a directory that is outside the /var/www directory as in my case this is /var/include directory...Do i need to enable read permissions for my web server to be able to read files from /var/include directory??Please advise...Thanks for help in advance.. Quote Link to comment Share on other sites More sharing options...
jarsky Posted April 29, 2006 Share Posted April 29, 2006 nope you dont, easiest way to do it would be to change[code]include("file.inc.php");[/code]to[code]include("../../include/file.inc.php");[/code]for every ../ you add it will jump back 1 directory :) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.