I have installed Zend Framework and need to set up include path in PHP? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T21:06:45Zhttp://stackoverflow.com/feeds/question/452848http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/452848/i-have-installed-zend-framework-and-need-to-set-up-include-path-in-php0I have installed Zend Framework and need to set up include path in PHP?Anil2009-01-17T05:46:24Z2009-01-17T11:15:33Z
<p>I have dumped Zend Framework files in </p>
<p><strong>"home/hotbuzz/public_html/include/zend/"</strong></p>
<p>My hosting : linux </p>
<p>I want to load it in my script. Whenever I load I get this error.</p>
<p>Some info: I asked about my Zend, to hosting guys they said its located in "usr/local/zend"</p>
<p>But I want to use this home/hotbuzz/public_html/include/zend/</p>
<p>I had added these lined in my PHP:</p>
<pre><code>set_include_path(dirname(__FILE__).';'.get_include_path());
require_once 'Zend/Loader.php';
</code></pre>
<p>I get this error </p>
<pre><code>Fatal error: require_once() [function.require]: Failed opening required 'Zend/Exception.php' (include_path='/home/hotbuzz/public_html/include;.:/usr/lib/php:/usr/local/lib/php') in /home/hotbuzz/public_html/include/Zend/Loader.php on line 87
</code></pre>
<p>I want to set include path in my PHP code and configure it (.htaccess).</p>
http://stackoverflow.com/questions/452848/i-have-installed-zend-framework-and-need-to-set-up-include-path-in-php/452967#4529677Answer by stunti for I have installed Zend Framework and need to set up include path in PHP?stunti2009-01-17T08:06:30Z2009-01-17T08:06:30Z<p>As I said in your previous question. Do not use ';' but use PATH_SEPARATOR.
This is a PHP constant that represent the right separator for your system (semi-colon on windows and colon on linux)</p>
<pre><code>set_include_path(dirname(__FILE__).PATH_SEPARATOR.get_include_path());
</code></pre>
http://stackoverflow.com/questions/452848/i-have-installed-zend-framework-and-need-to-set-up-include-path-in-php/453019#4530190Answer by Uresu for I have installed Zend Framework and need to set up include path in PHP?Uresu2009-01-17T08:59:55Z2009-01-17T08:59:55Z<p>You may have more success if you use auto_prepend rather than include...</p>
<pre><code>php_value include_path /home/hotbuzz/public_html/include/zend/
php_value auto_prepend_file Zend/Loader.php
</code></pre>
<p>What do you get in the apache log on startup and execution with that?</p>
http://stackoverflow.com/questions/452848/i-have-installed-zend-framework-and-need-to-set-up-include-path-in-php/453153#4531531Answer by farzad for I have installed Zend Framework and need to set up include path in PHP?farzad2009-01-17T11:15:33Z2009-01-17T11:15:33Z<p>you were doing it write. you should call set_include_path in first lines of your main script (index.php) and then include/require zend framework files. remember to rename your Zend Framework containing folder to 'Zend' (uppercase Z) to follow ZF naming conversions. then put your Zend folder in your include directory.</p>
<pre><code><?php
$newIncludePath = array();
$newIncludePath[] = '.';
$newIncludePath[] = 'include';
$newIncludePath[] = get_include_path();
$newIncludePath = implode(PATH_SEPARATOR, $newIncludePath);
set_include_path($newIncludePath);
// now include path is setup and we can use zend
require_once 'Zend/Loader.php';
Zend_Loader::registerAutoLoad('Zend_Loader', true);
// the rest of the code
?>
</code></pre>
<p>if you put your Zend directory in your include path, and not the include directory (that contains the Zend directory), you may not use this:</p>
<pre><code>require_once 'Zend/Loader';
</code></pre>
<p>instead you should use:</p>
<pre><code>require_once 'Loader';
</code></pre>
<p>which is not a good idea. by using the Zend/* model, you will remember which files are included from Zend Framework and which files are you own. so just add the include directory to your include path.</p>