Warning: require_once(rpcl/adodb/adodb.inc.php) [function.require-once]: failed to open stream: No such file or directory in /home/calveteinformatica/www/testetemp/bd/rpcl/rpcl.inc.php on line 161
Fatal error: require_once() [function.require]: Failed opening required 'rpcl/adodb/adodb.inc.php' (include_path='.:/usr/local/lib/php') in /home/calveteinformatica/www/testetemp/bd/rpcl/rpcl.inc.php o seguinte:
Na linha em questão esta a seguinte função, já fiz diversas mudanças e nada:
/**
* Includes an RPCL unit
*
* This function uses the RPCL path to include a unit that resides on the RPCL folder, so you don't have to worry
* about RPCL library location if you use this function. Included units are included require_once so you will get an
* error if required units doesn't exists and double inclusions won't be performed.
*
* <code>
* <?php
* use_unit("controls.inc.php");
* use_unit("subpath/myfunctions.inc.php");
* ?>
* </code>
*
* @link http://www.php.net/manual/en/function.require-once.php
*
* @param string $path Relative to RPCL root path
*
*/
function use_unit($path)
{
$apath=RPCL_FS_PATH;
if ($apath!="") $apath.="/";
require_once($apath.$path);
}
global $startup_functions;
$startup_functions=array();










