ID:               33092
 Comment by:       andre dot gadonski at gmail dot com
 Reported By:      fabio at bs2 dot com dot br
 Status:           No Feedback
 Bug Type:         InterBase related
 Operating System: FreeBSD
 PHP Version:      5.0.4
 New Comment:

Hi... 

I have the same error.


I'm using PHP 5.2.0 and APACHE 2.0 handler


Previous Comments:
------------------------------------------------------------------------

[2005-05-31 01:00:03] php-bugs at lists dot php dot net

No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".

------------------------------------------------------------------------

[2005-05-23 22:10:12] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php5-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5-win32-latest.zip



------------------------------------------------------------------------

[2005-05-23 19:23:19] fabio at bs2 dot com dot br

I'm was wrong, the version of apache in both servers is 2.0.54. The
differs is only the php version and number of users accessing the site.
The server of intebase is version 6.0.

I forgotten to say that the error occurs some times, is not constant.

------------------------------------------------------------------------

[2005-05-23 19:16:05] fabio at bs2 dot com dot br

<?
require_once 'MDB.php';
require_once 'LiveUser.php';

define('ALUNO', 'aluno');

$conf = array(
        'cookie' => array(
                'lifetime' => 0
        ),
        'login' => array(
                'username' => 'ra',
                'password' => 'senha'
        ),
        'logout' => array(
                'destroy'  => false
        ),
        'authContainers' => array(
                ...{Configuration of auth container}...
        )
);

$user = isset($_REQUEST['user']) ?$_REQUEST['user'] :'';
$pass = isset($_REQUEST['pass']) ?$_REQUEST['pass'] :'';
$logout = isset($_REQUEST['action']) && $_REQUEST['action'] ==
'logout';
$lu = &LiveUser::singleton($conf);
$lu->init($user ,$pass ,$logout);

$con = ibase_pconnect(...);
$res = ibase_query($con ,"SELECT * FROM table");
$row = ibase_fetch_assoc($res);
var_dump($row);

?>

------------------------------------------------------------------------

[2005-05-23 10:28:48] [EMAIL PROTECTED]

Please provide a complete reproducing script. (one that starts with
<?php, ends with ?> )



------------------------------------------------------------------------

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/33092

-- 
Edit this bug report at http://bugs.php.net/?id=33092&edit=1

Reply via email to