Error: "Zero Sized Reply" when accessing ADMINISTER MODULES
This is a solution, not a question. I had to do quite a bit of research to come up with a procedure to fix this headache. Hopefully this post will make it easier for the next person who gets this error.
Platform: Linux.
Problem: All of the 'Administer' pages, except 'Administer Modules', work fine. When trying to access Administer Modules, the following error occurs: "... Zero Sized Reply ..." (plus other miscellaneous, less relevant text).
Solution: Modify the php.ini file to allow more memory to be allocated to the Administer Modules script. To make the change, use a text editor such as vi, pico, or any other plain text editor. Masochists prefer emacs.
--more --
no semi-colon
memory_limit=8M
The leading semi-colon makes the line a comment. Comments are not executed when the ini file is read by the system.
At this point I like to insert another comment line (beginning with a semi-colon) to date the change and explain the reason. My "reason comments" look like this:
; 20060726 cel
; modified memory_limit to allow access to module management in Drupal
; memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)
Note: if your beginning memory_limit is higher than 32M, you'll have to experiment with numbers higher than "32".
Keep in mind that this resource limit exists to prevent degrading performance. Don't go higher than is necessary to enable access to the Administer Module page.
In my case, restart Apache(the web server service) with this command: /etc/init.d/httpd restart .
If you prefer, you may reboot the hardware server. That will accomplish the same goal (system to re-read the php.ini)
I assume that the Administer Modules script requires more memory than all the the other "Administer Pages." It would be nice if people would RTFM, and if TFM included the above.
