Re: [PHP] high traffic websites

2013-09-19 Thread Negin Nickparsa
it may be helpful for someone. I liked GTmetrix kinda helpful and magic. http://gtmetrix.com/#! Sincerely Negin Nickparsa On Wed, Sep 18, 2013 at 4:42 PM, Sebastian Krebs krebs@gmail.comwrote: 2013/9/18 Camilo Sperberg unrea...@gmail.com On Sep 18, 2013, at 14:26, Haluk Karamete

[PHP] high traffic websites

2013-09-18 Thread Negin Nickparsa
In general, what are the best ways to handle high traffic websites? VPS(clouds)? web analyzers? dedicated servers? distributed memory cache? Sincerely Negin Nickparsa

Re: [PHP] high traffic websites

2013-09-18 Thread Sebastian Krebs
2013/9/18 Negin Nickparsa nickpa...@gmail.com In general, what are the best ways to handle high traffic websites? VPS(clouds)? web analyzers? dedicated servers? distributed memory cache? Yes :) But seriously: That is a topic most of us spent much time to get into it. You can explain it

Re: [PHP] high traffic websites

2013-09-18 Thread Negin Nickparsa
Thank you Sebastian..actually I will already have one if qualified for the job. Yes, and I may fail to handle it that's why I asked for guidance. I wanted some tidbits to start over. I have searched through yslow, HTTtrack and others. I have searched through php list in my email too before asking

Re: [PHP] high traffic websites

2013-09-18 Thread Camilo Sperberg
On Sep 18, 2013, at 09:38, Negin Nickparsa nickpa...@gmail.com wrote: Thank you Sebastian..actually I will already have one if qualified for the job. Yes, and I may fail to handle it that's why I asked for guidance. I wanted some tidbits to start over. I have searched through yslow, HTTtrack

Re: [PHP] high traffic websites

2013-09-18 Thread Negin Nickparsa
Thank you Camilo to be more in details,suppose the website has 80,000 users and each page takes 200 ms to be rendered and you have thousand hits in a second so we want to reduce the time of rendering. is there any way to reduce the rendering time? other thing is suppose they want to upload files

Re: [PHP] high traffic websites

2013-09-18 Thread Sebastian Krebs
2013/9/18 Negin Nickparsa nickpa...@gmail.com Thank you Camilo to be more in details,suppose the website has 80,000 users and each page takes 200 ms to be rendered and you have thousand hits in a second so we want to reduce the time of rendering. is there any way to reduce the rendering

Re: [PHP] high traffic websites

2013-09-18 Thread Stuart Dallas
On 18 Sep 2013, at 12:50, Negin Nickparsa nickpa...@gmail.com wrote: to be more in details,suppose the website has 80,000 users and each page takes 200 ms to be rendered and you have thousand hits in a second so we want to reduce the time of rendering. is there any way to reduce the rendering

Re: [PHP] high traffic websites

2013-09-18 Thread Negin Nickparsa
I am a little bit curious: Do you _really_ have 1000 requests/second, or do you just throw some numbers in? ;) Sebastian, supposedly_asking_to_get_some_pre_evaluation :) Even in times, where there is not that much traffix? Automatic backup at 3:00 in the morning for example? 3:00 morning in one

Re: [PHP] high traffic websites

2013-09-18 Thread Camilo Sperberg
On Sep 18, 2013, at 14:26, Haluk Karamete halukkaram...@gmail.com wrote: I recommend OPCache, which is already included in PHP 5.5. Camilo, I'm just curious about the disadvantageous aspects of OPcache. My logic says there must be some issues with it otherwise it would have come

Re: [PHP] high traffic websites

2013-09-18 Thread Sebastian Krebs
2013/9/18 Camilo Sperberg unrea...@gmail.com On Sep 18, 2013, at 14:26, Haluk Karamete halukkaram...@gmail.com wrote: I recommend OPCache, which is already included in PHP 5.5. Camilo, I'm just curious about the disadvantageous aspects of OPcache. My logic says there must be some

[PHP] no traffic

2012-03-06 Thread Lawrence Decker
I've been playing with PHP for about 6 years and I have no idea why this is happening... I've been writing a script to auth to AD. When I run the script on my dev box, nothing. I have wireshark running in the background on the dev box, I can see the script's traffic go out and hit the DNS server

Re: [PHP] no traffic

2012-03-06 Thread Charles
On Tue, Mar 6, 2012 at 8:55 PM, Lawrence Decker lld0...@gmail.com wrote: I've been playing with PHP for about 6 years and I have no idea why this is happening... I've been writing a script to auth to AD.  When I run the script on my dev box, nothing.  I have wireshark running in the background

Re: [PHP] no traffic

2012-03-06 Thread Mike Mackintosh
On Mar 6, 2012, at 8:55, Lawrence Decker lld0...@gmail.com wrote: I've been playing with PHP for about 6 years and I have no idea why this is happening... I've been writing a script to auth to AD. When I run the script on my dev box, nothing. I have wireshark running in the background on

Re: [PHP] no traffic

2012-03-06 Thread Frank Arensmeier
6 mar 2012 kl. 15.29 skrev Mike Mackintosh: On Mar 6, 2012, at 8:55, Lawrence Decker lld0...@gmail.com wrote: I've been playing with PHP for about 6 years and I have no idea why this is happening... I've been writing a script to auth to AD. When I run the script on my dev box, nothing. I

Re: [PHP] no traffic

2012-03-06 Thread Lawrence Decker
I can cli to any host/port that's open, firewall's wide open fc-lawrence:~# telnet ad1.bac.com 389 Trying 10.13.3.10... Connected to ad1.bac.com. Escape character is '^]'. ^CConnection closed by foreign host. # iptables -nL Chain INPUT (policy ACCEPT) target prot opt source

Re: [PHP] no traffic

2012-03-06 Thread Lawrence Decker
Thanks Franks, corrected but still same problem... On Tue, Mar 6, 2012 at 9:33 AM, Frank Arensmeier farensme...@gmail.comwrote: 6 mar 2012 kl. 15.29 skrev Mike Mackintosh: On Mar 6, 2012, at 8:55, Lawrence Decker lld0...@gmail.com wrote: I've been playing with PHP for about 6 years and

Re: [PHP] no traffic

2012-03-06 Thread Charles
On Tue, Mar 6, 2012 at 8:55 PM, Lawrence Decker lld0...@gmail.com wrote: I've been playing with PHP for about 6 years and I have no idea why this is happening... I've been writing a script to auth to AD.  When I run the script on my dev box, nothing.  I have wireshark running in the background

Re: [PHP] no traffic

2012-03-06 Thread Lawrence Decker
YEA that was it!!! Yes, selinux is enabled. Checked the selinux log, and saw all the connection failures with httpd... Excellent, thanks it's been driving me nuts!!! On Tue, Mar 6, 2012 at 10:13 AM, Charles peac...@gmail.com wrote: On Tue, Mar 6, 2012 at 8:55 PM, Lawrence Decker

[PHP] Re: Traffic throttling

2009-07-21 Thread Michelle Konzack
Hello Stuart, Am 2009-07-21 16:39:30, schrieb Stuart: http://php.net/usleep Thank you, that it was. Greetings and nice Day/Evening Michelle Konzack Systemadministrator Tamay Dogan Network Debian GNU/Linux Consultant -- Linux-User #280138 with the Linux Counter,

[PHP] heavy traffic portal site

2003-06-03 Thread Adrian Teasdale
Hi there We have been contacted about creating a portal site which will have some heavy usage. They are talking about having 100,000 subscribed users to the system which will have the following: 1. Web based email 2. Calender (for the persons own use, not shared) 3. File store (and sharing)

Re: [PHP] heavy traffic portal site

2003-06-03 Thread Mark
I see you posted this to the Horde list, so you're aware of that project. Horde has been used in a few very large installations, but more important than the number of users is the load on the app. Will the 100k users be on it very frequently? Rarely? What kind of hit level are we talking about?

RE: [PHP] heavy traffic portal site

2003-06-03 Thread Adrian Teasdale
- all appreciated Ade -Original Message- From: Mark [mailto:[EMAIL PROTECTED] Sent: 03 June 2003 11:27 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP] heavy traffic portal site I see you posted this to the Horde list, so you're aware of that project. Horde has been used

[PHP] outbound traffic, sessions reg expressions

2002-01-25 Thread Justin French
Hi, I want to create a file (out.php???) which measures and keeps stats on the sites we link OUT to, including affiliates... i've got a few ideas how to do this, so that's not the problem... the problem is that a lot of the content on the site is contributed through writers, not programmers, and

[PHP] Monitoring traffic

2001-09-14 Thread SED
Hi, This is kind of off topic but I need to monitor the traffic in kilobytes/bits on my net card adapter (in/out) or server (PHP, HTML, etc.), do you know of any software? I'm using Win2000. Thanks, SED -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] Monitoring traffic

2001-09-14 Thread Jason Bell
check out www.mrtg.org for a pre-packaged solution, otherwise check out the SNMP functions of PHP. http://www.php.net/manual/en/ref.snmp.php in either case, you'll need to install the snmp support from your win2000 installation disk. /* SED asked: */ This

Re: [PHP] web traffic report

2001-08-03 Thread Andreas D. Landmark
At 03.08.2001 04:44, mike cullerton wrote: another vote for analog. Dunno what this has got to do with php, but my vote is for webalyzer... fast and easy to use... -- Andreas D Landmark / noXtension Real Time, adj.: Here and now, as opposed to fake time, which only occurs there and

Re: [PHP] web traffic report

2001-08-03 Thread Corey Chapman
Can't you just run a cron job (set it to do it automatically every so often) to delete the file from your web account's tmp folder.. ? Has anyone figured a way to purge access-log files after webalizer is done using to data only so far back? -eric - Original Message - I'm

Re: [PHP] web traffic report

2001-08-03 Thread mike cullerton
another vote for analog. on 8/2/01 9:46 PM, Chris Fry at [EMAIL PROTECTED] wrote: analog seems to be the industry standard - use it with the extended log format. http://www.statslab.cam.ac.uk/~sret1/analog/ -- mike cullerton -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] web traffic report

2001-08-03 Thread Richard Lynch
-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: Corey Chapman [EMAIL PROTECTED] Newsgroups: php.general To: Eric Wood [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, August 03, 2001 1:38 PM Subject: Re: [PHP] web traffic report