vote up 0 vote down star
1

Hi. / in the beginning of a link to get to the root folder doesnt work in php include.

for example "/example/example.php"

What is the solution?

flag

41% accept rate

3 Answers

vote up 1 vote down

include() (and many other functions like require(), fopen(), etc) all work off the local filesystem, not the web root.

So, when you do something like this

include( "/example/example.php" );

You're trying to include from the root of your *nix machine.

And while there are a multitude of ways to approach what you're doing, Paul Dixon's suggestions are probably your best bets.

link|flag
vote up 3 vote down

I'm assuming by root folder you mean your web document root, rather than filesystem root.

To that end, you can either

  • add the web root folder to the include path, and include('example/example.php')
  • or you can include($_SERVER['DOCUMENT_ROOT'].'/example/example.php')
link|flag
Also make sure the user running php has access to that folder. – Eric J. Sep 9 at 16:53
vote up 0 vote down

This sounds like PHP blocking you from using files outside of the current directory, for security reasons.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.