I am new to ZEnd, any help is greatly appreciated
I had various contractors work on my site, and things got a messy, with multiple copies of the same folders in different locations. Now I am going in and trying to clean things up. FUN!!! One of the problem I am having is that the require_once statements in Zend are not finding the files they are looking for. I am having to go in and change the paths as follows. Assume that this is the code found in Zend/Gdata/App/FeedEntryParent.php
Not Working (Can't Find File):
require_once 'Zend/Gdata/App/Extension/Updated.php';
Seems to Work Fine:
require_once '/home/paul13/paul13.com/includes/library/Zend/Gdata/App/Extension/Updated.php';
The problem is that most of the require_once statements are writting like the first one. short of going in and manually editing all of them, is there a way to tell the require statements to look in the indicated directory? '/home/paul13/paul13.com/includes/library/' using php.ini? I tried entering
include_path=".:/home/paulthetutor/paulthetutors.com/includes/library"
in php.ini, but that does not seem to solve the problem.