Re: [PHP-DB] Adobc error

2001-06-28 Thread Markus Fischer

Seems you're missing the file 'adodb.inc.php' in any of your
include paths, namely '.' and '/usr/share/php'.

Either extend the include_path directive in php.ini to make sure
adodb.inc.php is in the include path or copy the fileto an
appropriate directory.

HTH,
Markus

On Wed, Jun 27, 2001 at 05:47:36PM -0500, Wilmar Pérez wrote : 
> Hello guys
> 
> Does anyone know what the following error means and how I can fix it?
> 
> **
> Fatal error: Failed opening required './adodb/adodb.inc.php'
> (include_path='.:/usr/share/php') in /home/thesis/public_html/registro.php
> on line 7
> 
> 
> Thanks a lot
> ---
> Wilmar Pérez
>  IT Manager - Central Library
>  University of Antioquia
>Medellín - Colombia
>   tel: ++57(4)2105145
> ---
> 
> 
> -- 
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
> 

-- 
Markus Fischer,  http://guru.josefine.at/~mfischer/
EMail: [EMAIL PROTECTED]
PGP Public  Key: http://guru.josefine.at/~mfischer/C2272BD0.asc
PGP Fingerprint: D3B0 DD4F E12B F911 3CE1  C2B5 D674 B445 C227 2BD0

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP-DB] Adobc error

2001-06-28 Thread Steve Brett

you need to find adodb.inc.php and then check that the path in the include
statement on line 7 in adodb.inc.php is pointing at the correct path.

Steve

> -Original Message-
> From: Wilmar Pérez [mailto:[EMAIL PROTECTED]]
> Sent: 27 June 2001 23:48
> To: PHP List
> Subject: [PHP-DB] Adobc error
> 
> 
> Hello guys
> 
> Does anyone know what the following error means and how I can fix it?
> 
> **
> Fatal error: Failed opening required './adodb/adodb.inc.php'
> (include_path='.:/usr/share/php') in 
> /home/thesis/public_html/registro.php
> on line 7
> 
> 
> Thanks a lot
> ---
> Wilmar Prez
>  IT Manager - Central Library
>  University of Antioquia
>Medelln - Colombia
>   tel: ++57(4)2105145
> ---
> 
> 
> -- 
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: 
> [EMAIL PROTECTED]
> 

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP-DB] Adobc error

2001-06-28 Thread Beau Lebens

Wilmar, it means that a file which is "included" via the "require()"
function cannot be found. usually this is because they are doing something
like

require( $ROOT . "/the/file/they/want.php");

and you haven't set $ROOT properly, or something like that.
basically, search registro.php for "require" and check that all the files it
is trying to "require" can be found.

HTH

Beau

// -Original Message-
// From: Wilmar Pérez [mailto:[EMAIL PROTECTED]]
// Sent: Thursday, 28 June 2001 6:48 AM
// To: PHP List
// Subject: [PHP-DB] Adobc error
// 
// 
// Hello guys
// 
// Does anyone know what the following error means and how I can fix it?
// 
// **
// Fatal error: Failed opening required './adodb/adodb.inc.php'
// (include_path='.:/usr/share/php') in 
// /home/thesis/public_html/registro.php
// on line 7
// 
// 
// Thanks a lot
// ---
// Wilmar Pérez
//  IT Manager - Central Library
//  University of Antioquia
//Medellín - Colombia
//   tel: ++57(4)2105145
// ---
// 
// 
// -- 
// PHP Database Mailing List (http://www.php.net/)
// To unsubscribe, e-mail: [EMAIL PROTECTED]
// For additional commands, e-mail: [EMAIL PROTECTED]
// To contact the list administrators, e-mail: 
// [EMAIL PROTECTED]
// 

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP-DB] Adobc error

2001-06-28 Thread Christian Sandfeld

It means that the registro.php script can't find the required file
adodb.inc.php. Check the path of the requite statement on line 7 of
registro.php (looking at the error msg. it could be the '.:' before the
'/usr...' causing the problem).

/Christian

-Original Message-
From: Wilmar Pérez [mailto:[EMAIL PROTECTED]]
Sent: 28. juni 2001 00:48
To: PHP List
Subject: [PHP-DB] Adobc error


Hello guys

Does anyone know what the following error means and how I can fix it?

**
Fatal error: Failed opening required './adodb/adodb.inc.php'
(include_path='.:/usr/share/php') in /home/thesis/public_html/registro.php
on line 7


Thanks a lot
---
Wilmar Pérez
 IT Manager - Central Library
 University of Antioquia
   Medellín - Colombia
  tel: ++57(4)2105145
---


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]