0
votes
1answer
844 views

php curl - long redirect time in curl_getinfo()

The code works, but it takes up to 10 seconds to load the page. Then I add curl_getinfo(), and discovered the redirect time has used 90% of the total time.... <?php // $url = ...
2
votes
1answer
259 views

image uploading too slow php

i am doing multiple image upload with php using ajax . i am submitting the image upload form with file inputs targetted to a hidden iframe . after that i do 'move_uploaded_file()' and then i ...
0
votes
2answers
292 views

PHP: Query Exceeding Max Time (How to handle this)

Ok. I have my query written finally for my php file (which will write the query to a txt file). However, when I was testing the file earlier I apparently am excending the maximum execution time. I was ...
1
vote
3answers
2k views

Netbeans is so slow while developing PHP script [closed]

i'm using Netbeans on Ubuntu, when i write top command i notice that Java causes like 100%+ cpu usage. Is there anything to do to speed up Netbeans ? can i download another JRE on ubuntu to speed it ...
0
votes
2answers
105 views

Bottlenecks slowing some part of my script

I have a script that perform the following steps A user logs in, adds an SMS message and specifies recipients. That information is added to "queued message table"; Some process sends the messages ...
1
vote
1answer
65 views

How can I tell if a PHP install is corrupt? PHP pages display quickly, but continue to load for seconds

I'm trying to convince a guy in IT that the PHP installation he gave me is corrupt (somehow). He did an upgrade to the latest PHP and since then, PHP pages have been slow. In a weird way. If I visit ...
1
vote
3answers
2k views

PHP, MySQL, IIS7.5 is taking far too long for simple queries

I've created a simple PHP test page which connects to a MySQL database, selects one int value, and then frees the result. The page takes 5 seconds or more to load. I've seen a lot of posts about this ...