Search results

  1. M

    304 support broken under SSL?

    I don't know what to say, it's working fine now. I'll see if I can reproduce it consistently again. Thanks for the sanity check.
  2. M

    304 support broken under SSL?

    Odd, I'm using Firefox's live headers too.
  3. 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...
  4. M

    No UTF-16 Support?

    Weird, I'll just chalk it up to bad browsers.
  5. M

    No UTF-16 Support?

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

    HTTP Auth causes PHP errors

    Perfect! I wish everything was so easy. :)
  7. 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...
  8. M

    Random 404s

    Since the new 2.1.9 everything seems good so far.
  9. M

    Random 404s

    Yeah the forum folks were about to bite my head off. I'll upload the logs to a directory and send you a link.
  10. M

    Random 404s

    Raising the limit didn't make a diff. Running 2.1.9, here's a second of logs where the 404 thing happened to me. (The forum load.) 2005-12-28 14:50:58.047 [INFO] [141.91.240.162:22937-0#WP.org] File not found [/home/wporg/public_html/style/v3-head/forums.png] 2005-12-28 14:50:58.075...
  11. M

    Random 404s

    The lshttpd had 170 open files according to lsof. There are about 1500 open total on the system. ulimit -a returns this: two:~# ulimit -a core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited file size (blocks, -f) unlimited max locked memory...
  12. M

    Random 404s

    The root .htaccess is the only one, it changes pretty rarely, really only when I'm working on the site. WordPress.org is on standard, not enterprise, though I can purchase one if needed. Will that file you pointed to still work?
  13. M

    Random 404s

    I emailed all my conf files and .htaccess to your support email, let me know if anything else is needed.
  14. M

    Random 404s

    Possibly on the traffic, we're on the front page of Digg right now and a ton of blogs. I downgraded to 2.1.7 and still having a prob, next earliest I have is 2.1.5 which I remember having a prob with hanging PHP procs.
  15. M

    Random 404s

    I can downgrade if you want me to try that.
  16. M

    Random 404s

    I've been editing it, but not really in the past few hours and the 404s have been continuing.
  17. M

    Random 404s

    Something else that may be relevant, when I get a 404 I click reload over and over but the I just keep getting the 404 for 3-5 seconds.
  18. M

    Random 404s

    Long post warning. This is the 10 seconds on either side of a 404 I got, with the rewrite log at 9. The 404 is the very last line, and as you can see there is no relevant rewrite logging before it. Something else that's notable is the 404 is the Litespeed default one, not my custom one...
  19. M

    Random 404s

    Here are the relevant rewrite rules. # SUPPORT FORUMS RewriteRule ^tags/(.*) /support/tags.php?tag=$1 RewriteRule ^support/topic/([0-9]+)/page/([0-9]+) /support/topic.php?id=$1&page=$2 [L] RewriteRule ^support/topic/([0-9]+) /support/topic.php?id=$1 [L] RewriteRule...
  20. M

    Multiviews support

    I needed two rules to get this to really work right: # Multiviews RewriteCond %{DOCUMENT_ROOT}/$1 -d RewriteRule ^(.*)/$ $1/index.php RewriteCond %(DOCUMENT_ROOT}/$1.php -f RewriteRule ^(.*)/$ $1.php
Top