Tagged Questions
9
votes
4answers
17k views
ini_set(“memory_limit”) in PHP 5.3.3 is not working at all
I had this working before :
echo ini_get("memory_limit")."\n";
ini_set("memory_limit","256M");
echo ini_get("memory_limit")."\n";
That would input this :
32M
256M
on a php script executed by ...
17
votes
4answers
17k views
How can I prevent tons of apache processes spawning when I start apache and proceeding to kill my machine?
I have a highly trafficked application on one debian machine and apache has started acting strange.
Every time I start apache, tons of apache processes are spawned, the app doesn't load at all, and ...
4
votes
2answers
2k views
How can I check apache modules version?
How do I get versions of apache modules on debian?
I can get loaded modules list by apache2ctl -M - but how do I get their version numbers?
3
votes
2answers
2k views
Mono + apache2 = Service Temporarily Unavailable (503)
For a week now I've been trying to get my mono configuration running with apache.
I must have tried virtually anything, shamefully I notice no changes, the problem remains the same.
When I try to ...