Search results

  1. M

    304 support broken under SSL?

    I was doing some investigating on why the admin section of WP.com was feeling slow, and one thing I noticed is that none of the scripts or anything else called ever returned a 304 not modified. I played around with sending various combinations of last-modified headers and etags, and I could...
  2. M

    No UTF-16 Support?

    We're trying to send a blog as UTF-16 and this happened: http://hopesmith.wordpress.com/ Any suggestions?
  3. M

    HTTP Auth causes PHP errors

    This is on my home server, I set up lsws 2.1.9 and wanted to put HTTP auth on it, which I did by adding the basic AuthType Basic and it worked great. Then I changed Basic to Digest and it hasn't worked since. Even now that I've changed it back to basic every PHP page I try to load it sends me an...
  4. M

    Random 404s

    On random pages I'm getting a 404 error from Litespeed, if I reload a few times the correct page is shown. These are pages that use mod_rewrite. This is all there is in the logs: 2005-12-26 22:42:47.931 [INFO] [24.6.161.136:3687-0#WP.org] File not found...
  5. M

    Multiviews support

    Apache does this cool thing with multiviews enabled where you can have a file like /about/contact.php and refer to it in a URL like /about/contact/ and it works. This is nice in that you don't have to make directories for everything. I would love a way to do this in Litespeed, either as a...
  6. M

    PHP processes constantly climbing

    Not sure if this is a bug or a config error on my part, but I've been noticing that the number of lsphp processes climbs steadily and never goes down. I ran into this when we were getting complaints about mail() not working, so I logged in and noticed that PHP was unable to talk to sendmail...
  7. M

    Headers not being sent correctly

    Okay, I just ran into this today after somebody left a comment about it: http://akismet.com/blog/2005/10/database-move/#comment-22 You can see the problem by trying to parse any RSS feed on wordpress.com, example...
  8. M

    enable_phpa.sh fails

    I've tracked it down to the line with "uname -p", which returns: Try `uname --help' for more information. uname -a returns: Linux web2.wordpress.com 2.6.12-9-amd64-k8-smp #1 SMP Mon Oct 10 13:18:18 BST 2005 x86_64 GNU/Linux uname -m seems to return what you want, but obviously the...
  9. M

    WordPress support

    I just added the code to make LiteSpeed function on par with Apache in terms of WordPress links and permalink structure, the diff was a short one: http://trac.wordpress.org/changeset/2965 WordPress is PHP/MySQL blogging software: http://wordpress.org/ The latest version has had over...
  10. M

    Better mod_rewrite compatibility

    Many programs that use mod_rewrite (like WordPress) do the rules like this: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /blog/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php </IfModule> This works, but only if I comment...
Top