I am running apache on an ubuntu installation. Several webapps are running on the same server.
I installed a new app, which required the pdo-sqlite extension to be installed.
Now my server is noticeably slower and doesn't seem to respond when asked for php generated CSS e.g. asking for:
phpmyadmin/phpmyadmin.css.php
gives an empty page (not a 404 error)
This seems to apply to all web-apps on the server where css is being generated from a php file. Other pages also show net::ERR_INCOMPLETE_CHUNKED_ENCODING in Chrome whereas Firefox doesn't complain.
Firefox says Status OK ... 0 bytes
Chrome is throwing up a load of net::ERR_INCOMPLETE_CHUNKED_ENCODING
errors for all sorts of pages, not just the .css.php
The same webapps run perfectly fine on the development server. (no errors from Chrome and .css being returned from .css.php files)
things I tried:
- uninstalling php5-sqlite
- rebooting the server
- disabling pdo extensions in php
- checking for any .htaccess files
Any clues much appreciated.