Tagged Questions
7
votes
3answers
4k views
PHP sleep() silently hogs CPU
I'm running Apache on Linux within VMWare. One of the PHP pages I'm requesting does a sleep(), and I find that if I attempt to request a second page whilst the first page is sleep()'ing, the second ...
2
votes
1answer
96 views
PHP POST and execute for large file uploads
I have the following PHP Files:
fileUploadForm.php
handleUpload.php
fileUploadForm contains the following output:
output $_SESSION['errorMessage'] (if any)
Output a file upload form that posts ...
1
vote
2answers
76 views
PHP hangs on MySQL delete statement
I'm trying to delete one row of data from a MySQL database (innodb) in a PHP script. But instead of deleting, the PHP script hangs on the query. It's a very simple delete statement:
...
0
votes
1answer
24 views
PHPStorm hangs on highlighting a word, then Ctrl+Shift+F
I have PHPStorm 2.1.5. It could be that you encountered this, if so please suggest.
Generally, I don't care when and how ofter PHPStorm hangs, but this one is very consistent and annoying, because I ...
0
votes
2answers
62 views
PHP MYSQL Insert statement in FOR loop Hanging
I have spent many hours debugging, and scouring the internet for a solution to this unusual problem. Heres the deal:
I am working on a Work Order Submission and Tracking system. There are two ...
0
votes
1answer
73 views
PHP - How to make php.net's sample code not hang?
The Simple TCP/IP client example will hang if no data is being received.
To see what I mean, copy the client code and run it, but remove one of the \r\n's in the GET request to make it invalid, so it ...