php-general Digest 5 Dec 2012 16:19:15 -0000 Issue 8055
Topics (messages 319781 through 319803):
Re: shared memory on php servers?
319781 by: rene7705
319782 by: Sebastian Krebs
319783 by: Stuart Dallas
319784 by: Sebastian Krebs
319785 by: Alessandro Pellizzari
how to read emails with php
319786 by: Farzan Dalaee
319788 by: Daniel Brown
319789 by: Farzan Dalaee
319790 by: Jonathan Sundquist
319792 by: Farzan Dalaee
319794 by: Jonathan Sundquist
319795 by: Farzan Dalaee
319796 by: Jonathan Sundquist
319797 by: Daniel Brown
319798 by: Farzan Dalaee
319801 by: Jim Lucas
Re: building an improved service log
319787 by: Inigo Medina
Can't use the SNMP class
319791 by: Marc-Andre Bergeron
319793 by: Stuart Dallas
PHP site search broken?
319799 by: Paul M Foster
319800 by: Sebastian Krebs
319802 by: Jim Lucas
319803 by: Daniel Brown
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 ---
I would also like to hear any thoughts on how to efficiently add,
delete and edit data in this large and deep array structure from
multiple sessions at nearly the same time..
On Tue, Dec 4, 2012 at 11:49 AM, rene7705 <rene7...@gmail.com> wrote:
> Hi folks..
>
> I'm wondering, what's the fastest way to put a large and deep array()
> structure in shared memory on a PHP server?
--- End Message ---
--- Begin Message ---
Hi,
Why don't you use a database? Seems more appropiate here. At least SQLite
should fit ;)
Regards,
Sebastian
2012/12/4 rene7705 <rene7...@gmail.com>
> I would also like to hear any thoughts on how to efficiently add,
> delete and edit data in this large and deep array structure from
> multiple sessions at nearly the same time..
>
> On Tue, Dec 4, 2012 at 11:49 AM, rene7705 <rene7...@gmail.com> wrote:
> > Hi folks..
> >
> > I'm wondering, what's the fastest way to put a large and deep array()
> > structure in shared memory on a PHP server?
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
github.com/KingCrunch
--- End Message ---
--- Begin Message ---
On 4 Dec 2012, at 10:51, rene7705 <rene7...@gmail.com> wrote:
> I would also like to hear any thoughts on how to efficiently add,
> delete and edit data in this large and deep array structure from
> multiple sessions at nearly the same time..
>
> On Tue, Dec 4, 2012 at 11:49 AM, rene7705 <rene7...@gmail.com> wrote:
>> Hi folks..
>>
>> I'm wondering, what's the fastest way to put a large and deep array()
>> structure in shared memory on a PHP server?
Split the data up into smaller pieces. There's rarely a valid reason to store a
huge array of data as a single blob. It's an array, so it breaks up by the
first level of keys at the very least.
Look at APC, memcached, and redis. These are the most popular ways to store
data in shared memory. Note that APC is a PHP extension so you can only access
the shared memory from one machine, whereas memcached and redis are separate
daemons so you can access them from multiple servers.
Also, as Sebastian says, a database is another option unless you have a good
reason to want the data in shared memory rather than a DB.
-Stuart
--
Stuart Dallas
3ft9 Ltd
http://3ft9.com/
--- End Message ---
--- Begin Message ---
2012/12/4 Stuart Dallas <stu...@3ft9.com>
> On 4 Dec 2012, at 10:51, rene7705 <rene7...@gmail.com> wrote:
>
> > I would also like to hear any thoughts on how to efficiently add,
> > delete and edit data in this large and deep array structure from
> > multiple sessions at nearly the same time..
> >
> > On Tue, Dec 4, 2012 at 11:49 AM, rene7705 <rene7...@gmail.com> wrote:
> >> Hi folks..
> >>
> >> I'm wondering, what's the fastest way to put a large and deep array()
> >> structure in shared memory on a PHP server?
>
> Split the data up into smaller pieces. There's rarely a valid reason to
> store a huge array of data as a single blob. It's an array, so it breaks up
> by the first level of keys at the very least.
>
> Look at APC, memcached, and redis. These are the most popular ways to
> store data in shared memory. Note that APC is a PHP extension so you can
> only access the shared memory from one machine, whereas memcached and redis
> are separate daemons so you can access them from multiple servers.
>
> Also, as Sebastian says, a database is another option unless you have a
> good reason to want the data in shared memory rather than a DB.
>
Beside that you can have Databases in memory too, like SQLite on a
tmpfs-mount, or a specialized memory-persistent database engine :)
>
> -Stuart
>
> --
> Stuart Dallas
> 3ft9 Ltd
> http://3ft9.com/
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
github.com/KingCrunch
--- End Message ---
--- Begin Message ---
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. :)
Bye.
--- End Message ---
--- Begin Message ---
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
--- End Message ---
--- Begin Message ---
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/
--- End Message ---
--- Begin Message ---
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/
--- End Message ---
--- Begin Message ---
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
>
>
--- End Message ---
--- Begin Message ---
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';
$user = 'x...@mydomain.net';
$password = 'myPassword';
$mailbox = "{$host}INBOX";
$mbx = imap_open($mailbox , $user , $password);
$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
>>
>>
>
--- End Message ---
--- Begin Message ---
Try removing the call to the inbox and try getting a list of all the
folders using imap_listmailbox($host, "*");
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';
> $user = 'x...@mydomain.net';
> $password = 'myPassword';
> $mailbox = "{$host}INBOX";
> $mbx = imap_open($mailbox , $user , $password);
>
> $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
> >>
> >>
> >
>
--- End Message ---
--- Begin Message ---
Same error
I think its need something else for opening service like ssl setting or
somthing like that
Or this host im using block imap or pop3 access????
Best Regard
Farzan Dalaee
On Dec 4, 2012 10:03 PM, "Jonathan Sundquist" <jsundqu...@gmail.com> wrote:
> Try removing the call to the inbox and try getting a list of all the
> folders using imap_listmailbox($host, "*");
>
>
> 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';
>> $user = 'x...@mydomain.net';
>> $password = 'myPassword';
>> $mailbox = "{$host}INBOX";
>> $mbx = imap_open($mailbox , $user , $password);
>>
>> $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
>> >>
>> >>
>> >
>>
>
>
--- End Message ---
--- Begin Message ---
It is very likely that the host you are using is blocking access to that
port. Also depending on the host you are going to you may need to enable
imap as well.
On Tue, Dec 4, 2012 at 12:44 PM, Farzan Dalaee <farzan.dal...@gmail.com>wrote:
> Same error
> I think its need something else for opening service like ssl setting or
> somthing like that
> Or this host im using block imap or pop3 access????
>
> Best Regard
> Farzan Dalaee
> On Dec 4, 2012 10:03 PM, "Jonathan Sundquist" <jsundqu...@gmail.com>
> wrote:
>
>> Try removing the call to the inbox and try getting a list of all the
>> folders using imap_listmailbox($host, "*");
>>
>>
>> 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';
>>> $user = 'x...@mydomain.net';
>>> $password = 'myPassword';
>>> $mailbox = "{$host}INBOX";
>>> $mbx = imap_open($mailbox , $user , $password);
>>>
>>> $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
>>> >>
>>> >>
>>> >
>>>
>>
>>
--- End Message ---
--- Begin Message ---
On Tue, Dec 4, 2012 at 1:44 PM, Farzan Dalaee <farzan.dal...@gmail.com> wrote:
> Same error
> I think its need something else for opening service like ssl setting or
> somthing like that
> Or this host im using block imap or pop3 access????
Per list rules, please don't top-post.
Some things to consider:
1.) Incorrect domain name. Be sure the domain is spelled
correctly and is registered.
2.) System not configured to serve IMAP.
3.) Firewall blocking access to port 143.
4.) Host down.
Try pinging the domain. If you get a response back, try either
using Telnet to connect to the domain on port 143 or using an email
client with the same access details and credentials you're trying to
use in your code.
At this point, it's evident that it's not a PHP problem, so you'll
need to research the rest on your own.
--
</Daniel P. Brown>
Network Infrastructure Manager
http://www.php.net/
--- End Message ---
--- Begin Message ---
I think so, so my code is correct and it should be working, thanks you all for
your time
Best Regard
Farzan DalaeeJonathan Sundquist <jsundqu...@gmail.com> wrote:It is very likely
that the host you are using is blocking access to that port. Also depending on
the host you are going to you may need to enable imap as well.
On Tue, Dec 4, 2012 at 12:44 PM, Farzan Dalaee <farzan.dal...@gmail.com> wrote:
Same error
I think its need something else for opening service like ssl setting or
somthing like that
Or this host im using block imap or pop3 access????
Best Regard
Farzan Dalaee
On Dec 4, 2012 10:03 PM, "Jonathan Sundquist" <jsundqu...@gmail.com> wrote:
Try removing the call to the inbox and try getting a list of all the folders
using imap_listmailbox($host, "*");
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';
$user = 'x...@mydomain.net';
$password = 'myPassword';
$mailbox = "{$host}INBOX";
$mbx = imap_open($mailbox , $user , $password);
$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
>>
>>
>
--- End Message ---
--- Begin Message ---
On 12/04/2012 05:10 AM, Farzan Dalaee 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
As others have suggested, try connecting using telnet from the same
server you are running the PHP from.
Here is a page I wrote a while back that shows you how to do this.
http://bendsource.cmsws.com/serverSetup
--
Jim Lucas
http://www.cmsws.com/
http://www.cmsws.com/examples/
http://bendsource.cmsws.com/
--- End Message ---
--- Begin Message ---
On Thu, 29 Nov 2012, rene7705 wrote:
Hi folks..
I've got several requirements that I'd like to roll into one software component;
- log page views and any errors that page view may generate
- log javascript events (browser user-interaction events, but also
errors on the server during ajax operations)
- log status messages during 'cron' jobs
- gather data on shared hosting and then transfer that data on regular
intervals to a home server (because shared hosting won't allow scripts
to run longer than 30 seconds, and I need to do potentially long
running calculations (statistics) on the gathered data)
Did you think about using a NoSQL approach?
iñ
I'm wondering how to do this efficiently.
I've figured out the fields I need to store, but I'm unsure whether or
not to use a single table or multiple tables.
Single tables are easier to sync from shared hosting to my home
server, but multiple tables might be faster during the calculations
and detail lookups.
Ideally I would like to log all info for all my sites and their
homeserver testing grounds into one database, but that means that the
home server will be generating data in the same tables as the data
collected from shared hosting, meaning I can't just copy over the data
with all of it's auto_increment id fields as they were on the shared
hosting.
Please help me find a graceful solution for what I want to do here..
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
Hi,
When I try to use the SNMP class I got the following error: PHP Fatal error:
Class 'SNMP' not found. I use the following version: PHP 5.3.3 (cli) and it
runs on CentOS release 6.2 (Final). I've also installed
net-snmp-5.5-41.el6_3.1.x86_64. According to the documentation "In order to
use the SNMP functions requires installation of the » Net-SNMP package". I
can use the snmp functions (ex: snmpget, snmpset, etc) but not the SNMP
class. Any idea?
--- End Message ---
--- Begin Message ---
On 4 Dec 2012, at 17:42, "Marc-Andre Bergeron" <marc-andre.berge...@cogeco.com>
wrote:
> When I try to use the SNMP class I got the following error: PHP Fatal error:
> Class 'SNMP' not found. I use the following version: PHP 5.3.3 (cli) and it
> runs on CentOS release 6.2 (Final). I've also installed
> net-snmp-5.5-41.el6_3.1.x86_64. According to the documentation "In order to
> use the SNMP functions requires installation of the » Net-SNMP package". I
> can use the snmp functions (ex: snmpget, snmpset, etc) but not the SNMP
> class. Any idea?
The class is only available in PHP 5.4+.
http://php.net/snmp.construct
-Stuart
--
Stuart Dallas
3ft9 Ltd
http://3ft9.com/
--- End Message ---
--- Begin Message ---
Is it just me, or is the search feature on php.net broken?
When I enter a full search term (known good function name) and then hit
the arrow, it brings me back to the generic search page. If I enter a
partial search term and then click on one of the suggested
"completions", it usually (not always) does the same thing. Etc.
Paul
--
Paul M. Foster
http://noferblatz.com
http://quillandmouse.com
--- End Message ---
--- Begin Message ---
2012/12/4 Paul M Foster <pa...@quillandmouse.com>
> Is it just me, or is the search feature on php.net broken?
>
> When I enter a full search term (known good function name) and then hit
> the arrow, it brings me back to the generic search page. If I enter a
> partial search term and then click on one of the suggested
> "completions", it usually (not always) does the same thing. Etc.
>
Hi,
Works fine here. You could try a different mirror?
Regards,
Sebastian
>
> Paul
>
> --
> Paul M. Foster
> http://noferblatz.com
> http://quillandmouse.com
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
--
github.com/KingCrunch
--- End Message ---
--- Begin Message ---
On 12/04/2012 01:03 PM, Sebastian Krebs wrote:
2012/12/4 Paul M Foster<pa...@quillandmouse.com>
Is it just me, or is the search feature on php.net broken?
When I enter a full search term (known good function name) and then hit
the arrow, it brings me back to the generic search page. If I enter a
partial search term and then click on one of the suggested
"completions", it usually (not always) does the same thing. Etc.
Hi,
Works fine here. You could try a different mirror?
or a different browser?
Regards,
Sebastian
Paul
--
Paul M. Foster
http://noferblatz.com
http://quillandmouse.com
--
Jim Lucas
http://www.cmsws.com/
http://www.cmsws.com/examples/
--- End Message ---
--- Begin Message ---
On Tue, Dec 4, 2012 at 3:56 PM, Paul M Foster <pa...@quillandmouse.com> wrote:
> Is it just me, or is the search feature on php.net broken?
>
> When I enter a full search term (known good function name) and then hit
> the arrow, it brings me back to the generic search page. If I enter a
> partial search term and then click on one of the suggested
> "completions", it usually (not always) does the same thing. Etc.
It's probably a legitimate issue. I made some changes last week
to the DNS and fundamental server functionality to speed things up.
We're now using a service named myracloud[1] to help with traffic and
server load for the primary web box (the main php.net / www.php.net
system), as well as static.php.net, which handles graphics and other
media. Unfortunately, as with any major changes, there are a few
hiccups here and there for some users. Primarily, these are in the
form of HTTP 301's; when the server issues a redirect order, sometimes
the data isn't being sent along with it. We're working to resolve the
issues; I just made one moderately-sized commit to hopefully repair a
lot of the issues, and will be making at least one more shortly.
If you or anyone else reading this continue to experience issues,
please submit them as bugs at https://bugs.php.net/ and zip me a quick
email to bring it to my attention.
^1: https://myracloud.com/en/?_locale=en
--
</Daniel P. Brown>
Network Infrastructure Manager
http://www.php.net/
--- End Message ---