php-general Digest 6 Dec 2012 20:04:09 -0000 Issue 8056

Topics (messages 319804 through 319806):

Re: shared memory on php servers?
        319804 by: tamouse mailing lists

Re: how to read emails with php
        319805 by: tamouse mailing lists

[PHP-DEV] PHP 5.3.20RC1 and 5.4.10RC1 Released for Testing!
        319806 by: Johannes Schlüter

Administrivia:

To subscribe to the digest, e-mail:
        php-general-digest-subscr...@lists.php.net

To unsubscribe from the digest, e-mail:
        php-general-digest-unsubscr...@lists.php.net

To post to the list, e-mail:
        php-gene...@lists.php.net


----------------------------------------------------------------------
--- Begin Message ---
On Tue, Dec 4, 2012 at 7:02 AM, Alessandro Pellizzari <a...@amiran.it> wrote:
> Il Tue, 04 Dec 2012 11:49:22 +0100, rene7705 ha scritto:
>
>> I'm wondering, what's the fastest way to put a large and deep array()
>> structure in shared memory on a PHP server?
>
> Using MongoDB. :)

+++

--- End Message ---
--- Begin Message ---
On Tue, Dec 4, 2012 at 12:24 PM, Farzan Dalaee <farzan.dal...@gmail.com> wrote:
> Warning: imap_open() [function.imap-open]: Couldn't open stream
> mail.mydomain.net:143/pop3INBOX in C:\xampp\htdocs\mail.php on line 6
>
> Warning: imap_check() expects parameter 1 to be resource, boolean
> given in C:\xampp\htdocs\mail.php on line 10
>
> Notice: Unknown: Can't open mailbox mail.mydomain.net:143/pop3INBOX:
> no such mailbox (errflg=2) in Unknown on line 0
>
>
> this is my code
>
> $host = 'mail.mydomain.net:143/pop3';



I'm not hugely familiar with PHP's imap -- but are you trying to
connect using the IMAP port (143) but with the POP3 protocol? POP3 is
port 110...


> $user = 'x...@mydomain.net';
> $password = 'myPassword';
> $mailbox = "{$host}INBOX";
> $mbx = imap_open($mailbox , $user , $password);

You might consider checking if $mbx === false here, since if
imap_open, it will return false. Then check
imap_last_errors/imap_errors to see what the error(s) is(are).

  if (false === $mbx) exit ("can't connect to $mailbox: ".
imap_last_error() . PHP_EOL);



>
> $check = imap_check($mbx);
>
>
> On 12/4/12, Jonathan Sundquist <jsundqu...@gmail.com> wrote:
>> What does it say when you call imap_errors or imap_last_error?
>>
>>
>> On Tue, Dec 4, 2012 at 10:02 AM, Farzan Dalaee
>> <farzan.dal...@gmail.com>wrote:
>>
>>> i dont have access to log files on server
>>>
>>> On Azar 14, 1391, at 5:51 PM, Daniel Brown wrote:
>>>
>>> > On Tue, Dec 4, 2012 at 8:10 AM, Farzan Dalaee <farzan.dal...@gmail.com>
>>> wrote:
>>> >> hi guys
>>> >> i want to open an email content ( subject ,body , attachment ) with
>>> >> php
>>> >> i use imap_php but its wont connect to host
>>> >> what should i do?
>>> >> thanx
>>>
>>> >
>>> >    Start by finding out why it won't connect.  Check the logs on the
>>> > server if you can, that's always the best place to look first.
>>> >
>>> > --
>>> > </Daniel P. Brown>
>>> > Network Infrastructure Manager
>>> > http://www.php.net/
>>>
>>>
>>> --
>>> PHP General Mailing List (http://www.php.net/)
>>> To unsubscribe, visit: http://www.php.net/unsub.php
>>>
>>>
>>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>

--- End Message ---
--- Begin Message ---
Hi!

We've released PHP 5.3.20RC1 and 5.4.10RC1 which can be found here:

   5.3.20RC1:
   http://downloads.php.net/johannes/php-5.3.20RC1.tar.bz2
   http://downloads.php.net/johannes/php-5.3.20RC1.tar.gz

   5.4.10RC1:
   http://downloads.php.net/stas/php-5.4.10RC1.tar.bz2
   http://downloads.php.net/stas/php-5.4.10RC1.tar.gz

Windows binaries for both as always are at:
    http://windows.php.net/qa/

This is a regular bugfix release, the full list of issues fixed can be
found in the NEWS files. Please test and report if anything is broken.

If no critical issues is found in this RC, the final version will be
released in two weeks.

Regards,
    Stas Malyshev, Johannes Schlüter



--- End Message ---

Reply via email to