|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-01-10 10:40 UTC] kalle at ok dot ee
--- test.php ---
<?
IMAP_POPEN("myserver.com", "MyName", "MyPassword");
?>
--- /// ---
Fatal error: Call to undefined function: imap_popen() in /home/kalle/public_html/imap.php on line 2
Still, there is entry in manual:
http://ee.php.net/manual/en/function.imap-popen.php
---
(3.0.12 - 3.0.18 only, PHP 4 >= 4.0.0)
imap_popen -- Open a persistant IMAP stream to a mailbox
---
so, who is fooling who ;) AND, there has NEVER been (well, in my extensive use of PHP staring from PHP/FI ending with latest CVS versions) function like that...
Pitty, i REALLY could use persistent connections to IMAP servers ;) really...
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 01:00:01 2025 UTC |
popen is implemented but disabled in the code as it isn't working well but you should get "Persistent IMAP connections are not yet supported." if you had the imap extension compiled in or loaded, "Call to undefined function" indicates that you have no imap support at all in your build PS: persistant connections in php might not be what you tink they are ...