[PHP-DEV] Bug #10796 Updated: imap_getmailboxes doesn't work after a database connection From: sniper <email protected>
Date: 05/10/01

ID: 10796
Updated by: sniper
Reported By: fjortiz <email protected>
Old-Status: Open
Status: Closed
Bug Type: IMAP related
Operating system:
PHP Version: 4.0.5
Assigned To:
Comments:

|| -> OR ( || die(.. -> OR die(.. )

http://www.php.net/manual/en/language.operators.precedence.php

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

[2001-05-10 13:09:05] fjortiz <email protected>
just comment that using imap_listsubscribed or imap_listmailboxes instead using imap_getmailboxes after a database connection also yields the same error (Warning: Unable to find stream pointer in ...)

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

[2001-05-10 12:20:56] fjortiz <email protected>
Now, this is a hard one I think, at least to explain:

brief explanation: (full code later)

imap_open + imap_getmailboxes -> works fine alone

Database connection + imap_open + imap_getmailboxes -> generates this error:

Warning: Unable to find stream pointer in /usr/local/apache/htdocs/folder/correo_carpetas.php on line 8 (where imap_getmailboxes is)
imap_getmailboxes failed:
Warning: Unable to find stream pointer in /usr/local/apache/htdocs/folder/correo_carpetas.php on line 21 (where imap_close is)

I tried with two database connections: against MSSQL 7.0 and Oracle8i. Just a call to mssql_connect or OCIPLogon spoils the whole thing. Comment that line, and all the mailboxes will be listed fine.

Full example:

<?php

/* fails with Oracle8i + PHP (IIS/Win32 or Apache/Linux) */
/* also fails with mssql_connect under IIS/Win32 */
/* comment the next 3 lines and everything will go ok (it's just like the sample provided in PHP manual ! */

$c1 = ociplogon("myuser","mypwd","devunix");
ocilogoff($c1);

        $mbox = imap_open("{tux.comunet.es}","user","userpwd",OP_HALFOPEN) || die("can't connect: ".imap_last_error());
         
        $list = imap_getmailboxes($mbox,"{tux.comunet.es}","*");
        if(is_array($list)) {
          reset($list);
          while (list($key, $val) = each($list))
          {
            print "($key) ";
            print imap_utf7_decode($val->name).",";
            print "'".$val->delimiter."',";
            print $val->attributes."<br>n";
          }
        } else
          print "imap_getmailboxes failed: ".imap_last_error()."n";
         
        imap_close($mbox);

?>

I hope I made myself clear. Ask me whatever you need.

Greetings,

F.J. Ortiz

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

ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=10796&edit=2

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>