Fatal error: Failed opening required 'pagedresults.php' (include_path='') in /home/network-/public_html/searchproperty.php on line 833
Can anyone tell me how to set the include_path= variable
I found the following from another site:
Question :
How can I set the include path and other settings that are fixed in php.ini without having access to php.ini?
Answer :
If you are hosting on a Linux server you may (Depending on your host) be able to use .htaccess this file must be in the root of the web directory.
The format is along the lines of (For PHP4 Module):-
php_value include_path .:/path/that/you/want/to/use
php_value magic_quotes_gpc "off"
php_value track_errors "on"
My site is hosted so I'm not sure I have access to the ini file or where to look. The following is the code section that generates the error. Any help would be appreciated.
<?
include("settings.inc");
require("pagedresults.php");
mysql_select_db("$mydb", $connection);
...
...
?>