Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to set an env variable that has the DOC_ROOT info but nothing

SetEnv PROJECT_BASE %{ENV:DOC_ROOT}
SetEnv LAYOUT_HOME  %{ENV:PROJECT_BASE}"/html/app/wordpress/"

and then be able to access LAYOUT_HOME in php

How can I do this?

share|improve this question

1 Answer

up vote 1 down vote accepted

Variables are accesible via :

$_SERVER["LAYOUT_HOME"] and $_SERVER["PROJECT_BASE"] global variable.

A simple test if to execute the next command in php

<?php phpinfo(); ?>

and check if the variable is present and is defined.

If not, then may be exist some restricting in the php installation ( for example in a share ambiance - sharedhosting)

share|improve this answer
well the problem is in htaccess file... i cant access the variables im using SetEnv with.. %{ENV:PROJECT_BASE} is not working – qodeninja Feb 15 '11 at 23:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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