Search results

  1. C

    core dumps

    Hi, We just added a piece of code that queries an API using net/http when a visitor visits a certain page on our site. This block of code is also surrounded by a timeout block, just in case it takes too long querying the API, we don't want it to hang for the visitor. Once we added this, our...
  2. C

    messages in our stderr

    I upgraded to 3.3.10, but still getting the dropped connection message occasionally when I POST to https forms on our site. The odd thing is that I cannot get it to give this error during the day, only at night. We have a lot of outbound traffic on our network (remote backup,etc.) at night...
  3. C

    messages in our stderr

    Here's a full log for the request which exhibits the same problem, if you need it. It seems to happen randomly when I POST to our https forms. Most of the time it does work fine though, thats why I find it really strange. Hopefully it can be fixed. 2008-04-05 01:50:54.703 DEBUG [*:443] New...
  4. C

    messages in our stderr

    Actually, I'm still getting the dropped connection message on our production server. I think I finally caught the debug message: 2008-04-05 01:47:41.410 DEBUG [10.1.0.3:38715-0] SSL_accept() failed!: error:1407609C:SSL routines:SSL23_GET_CLIENT_HELLO:http request Could this be causing it?
  5. C

    messages in our stderr

    35 seconds
  6. C

    messages in our stderr

    Well it seems to be better with the update. I tried repeating everything again. I started uploading a big file and only 1 out of 10 times did I get the drop message. Much better than before I was getting it continuously.
  7. C

    messages in our stderr

    No, I don't get the error that frequently, although I worry if my visitors see it frequently. I have a lot of trouble repeating it. It seems to happen pretty randomly. Sometimes I don't see it for weeks. Today however, I kept getting the 'connection dropped' message from my browser...
  8. C

    messages in our stderr

    ok i turned on the debug log. Here's what it had for one of the times when I got the 'server dropped connection' message from my browser: 2008-03-29 17:00:04.710 DEBUG [*:443] New connection from 67.170.197.205:54020. 2008-03-29 17:00:04.710 DEBUG [*:443] 1 connections accepted! 2008-03-29...
  9. C

    messages in our stderr

    i guess from reading some other threads, this message is normal and just due to it killing off old child processes? I am running into a problem that happens intermittently with our rails app. Specifically, I click Submit on our login form after putting in my username/password. Within a...
  10. C

    messages in our stderr

    Hi I noticed in our stderr log we have many of these: /opt/lsws/fcgi-bin/RailsRunner.rb:23:in `accept': SIGUSR1 (SignalException) from /opt/lsws/fcgi-bin/RailsRunner.rb:23 Any idea what could be causing this? We are running ruby-lsapi 3.0 and litespeed 3.3.4. I just upgraded...
  11. C

    [10.1.0.2:30964-0] Status 400: Missing HTTP protocol string! in logs

    Hi, I just started seeing a lot of these showing up in my logs: [10.1.0.2:30964-0] Status 400: Missing HTTP protocol string! Not sure if it's anything to be concerned about. Any idea how to fix this? thanks, Chris
  12. C

    ruby-lsapi doesn't compile on mac osx leopard

    Hi, Not sure if this has already been reported, but I just wanted to let you know that when I try to install ruby-lsapi as a gem on Mac OSX 10.5 (leopard), I get the following error: "_environ", referenced from: environ$nonlazy_ptr in lsapilib.o ld: symbol(s) not found collect2: ld returned...
  13. C

    RMagick Problems

    ok, I got it to work by creating a link from /usr/local/bin/gs to /usr/bin/gs.
  14. C

    RMagick Problems

    Also I wanted to add, this line appears in my stderr.log file when I try to access the action that generates the image. sh: line 1: gs: command not found This makes sense I guess since it needs to use ghostscript. How do I tell litespeed where ghostscript is?
  15. C

    RMagick Problems

    Hi, I'm trying to generate dynamic images using RMagick from my Rails application. When I run the action that generates the images from Litespeed, RMagick gives me an error that it cant find the PostScript Delegate. However, this same code, I copied into a regular shell script and it...
  16. C

    first hit after periods of inactivity is slow

    Hi, I noticed that the first hit to my rails app after about 2-3 minutes of the server being completely idle takes about 5 seconds longer than subsequent hits. I read in other posts that this behavior is normal for the first hit when the webserver has just been turned on, but i have slowdown...
  17. C

    mint still hitting rails

    well, i misspoke, mint actually wasn't working. Going to /mint gave me a 404 but /mint/index.php worked fine. I figured out now it stopped working once i added the rewrite cache rules in your rails guide: RewriteRule ^(.*)/$ $1/index.html [QSA] RewriteRule ^([^.]+)$ $1.html [QSA] Makes...
  18. C

    mint still hitting rails

    Hi, I'm using mint with my Ruby on Rails app via lsphp. I'm just putting <script src="/mint/?js" type="text/javascript"></script> on each page. Mint is working fine. However, I started looking through my production logs and it appears that this javascript call is actually getting all the...
  19. C

    setup php in rails template

    Well I got it working finally using the php script handler. An error in my test script was causing it just to output a blank page. doh! Its been awhile since I've worked in php ;) Anyhow, I am curious though, is there a way to get it to work through a context instead of through a script...
  20. C

    setup php in rails template

    Hi, I'm using the provided rails virtual host template and everything is working fine. However, I want to add php support to this so I can run mint on my site. I installed and compiled php per your directions and didn't run into any problems. However, I'm having trouble getting php pages to...
Top