Search results

  1. I

    Solaris install.sh problem

    Solution I had to make one change to get installation to complete: line 983 echo "skip" #install_whm_plugin Why would it want to install that? It didnt ask me if it should. And one change after installation to bin/lswsctrl: change hard coded "ps aux" to "ps -elf" Will I...
  2. I

    Solaris install.sh problem

    This is on a Joyent Accelerator (Solaris): Right as the actual installation seems to be taking place Im getting this: Setup up PHP [Y/n]: n Installing, please wait... ./install.sh: test: argument expected And it quits. Im using lsws-3.3.15-std-i386-solaris.tar.gz I've checked...
  3. I

    Rails development env, LSAPI, white screen on redirects

    If I turn off Gzip compression completely at the server level the issue doesnt seem to happen. Are there specific recommended gzip setting for use with rails? Also to be noted, to make this even stranger, Safari did NOT have the problem with gzip ON. Firefox was not following redirects with...
  4. I

    Rails development env, LSAPI, white screen on redirects

    Im having some odd issue where redirects in the development environment result in a white page rendered and the logs show that the redirect was not followed (redirected to action never hit). This is with 3.2.2 and ruby-lsapi 2.7, in rails development environment Production does not seem to...
  5. I

    Proxy crashes backend mongrel when URL ends with ?

    Small update, just FYI and in case anyone ever stumbles upon this problem. Its not a litespeed problem. Its not a mongrel problem. Its a ruby problem. Specifically, its a ruby 1.8.6 problem. rubyonrails.org recommends 1.8.5, however the guide they point to for installation does 1.8.6, and...
  6. I

    Proxy crashes backend mongrel when URL ends with ?

    Hopefully this is what you were after: http://stat.im/tcd.txt Ive only included the last 20000 lines, because I *think* they are somewhat repetitive. Joe
  7. I

    Proxy crashes backend mongrel when URL ends with ?

    I'm proxying lsws to a mongrel backend serving my rails app in my development environment. Ive noticed that a url such as /locations/6/edit? causes lsws and mongrel to go crazy. Mongrel ends up dying. lsws debug output of what its trying to do is here: http://stat.im/lsws.error.log.txt...
  8. I

    link to Mac OSX (Intel) download has typo

    on the download page: http://www.litespeedtech.com/packages/3.0/lsws-3.1.1.1-std-i386-osx.tar.gz should be: http://www.litespeedtech.com/packages/3.0/lsws-3.1.1-std-i386-osx.tar.gz
  9. I

    Ruby LSAPI versions?

    I just checked the LSAPI page and it says version 2.2 (the actual link is still pointing to 2.1 by the way). Looks like a lot has changed in the LSAPI since I last updated it. I'm still using 1.13. I don't see anything in the Release Log on the site, nor the README in the package. I feel...
  10. I

    Zero content length, only affecting one rails app, out of nowhere

    As a followup, I seem to have fixed it, but not in a way that I know what happened in the first place to cause it. I backed up my virtual host's xml file. I then delete the virtual host from the admin interface. I re-created the virtual host from the admin interface, and then restarted the...
  11. I

    Zero content length, only affecting one rails app, out of nowhere

    I have no idea what is going on with one of my rails apps. The only thing Ive done was upgrade ruby-lsapi to 1.13 recently. All of the sudden at 11:30 today one of my apps is just completely inaccessible, very odd. Nothing in stderr.log, and definitely different output in debug mode when I try...
  12. I

    whatever popen does isnt working in a rails app

    Ok, so I just found a solution (in the form of a workaround, but it seems like a GOOD workaround, this 'session' gem seems great so far): This seems to be working great (so far): require the session gem and: def run cmd = "htmldoc -t pdf14 --webpage -" text =...
  13. I

    whatever popen does isnt working in a rails app

    Not sure if this is a bug or something that just needs configuration tweaks to work correctly, I'll do my best to explain: Im running into a Broken Pipe issue with the following code running on 2.2.5. The same thing under Mongrel works fine, so I assume there is something I can do to get...
  14. I

    Log rotation/gzip creates files as root, how to fix?

    Awesome! Thanks so much, Joe
  15. I

    Log rotation/gzip creates files as root, how to fix?

    I have ftp access set up to the log directory so clients can pull their access logs. Using the nice log rotation and gzip seems to be the perfect fit, but its creating the gzip's as root. This results in the files being Permission denied when attempting to download them. Is that any way I can...
  16. I

    suexec issues with rails? maybe to do with permissions of ls user?

    Yep, your right, and the way you explain works perfectly. I put what you described into a mini howto step by step on my wiki at http://inspirix.stikipad.com/wiki/show/Litespeed+file+permissions+when+using+SuExec and the only difference is that im using chmod 0770. Not sure if thats a big deal...
  17. I

    suexec issues with rails? maybe to do with permissions of ls user?

    Ok, I did get this working now. I finally found this thread: http://www.litespeedtech.com/support/forum/archive/index.php/t-231.html The method described there works, I had to set 0755 on /home/joenoon. This works in the short-term, but Im going to keep looking for a better way as I'd...
  18. I

    suexec issues with rails? maybe to do with permissions of ls user?

    Forgot to say im running 2.2.4 standard on RHEL. If I am correct that this is a bug of some type, you can access my server if it would help. We can set that up through email if needed. Thanks, Joe
  19. I

    suexec issues with rails? maybe to do with permissions of ls user?

    Not sure if this is a bug but I can not seem to work around this issue unless I am simply overlooking a setting. Ive successfully set up rails apps on litespeed when running litespeed and all the rails apps under the same (one) username. Now what im attempting is running litespeed as nobody...
  20. I

    log files

    Not quite a bug, not quite a feature.... hopefully it would be a quick fix: The log files (stderr.log for example) get locked/closed/something on a server restart: tail -f stderr.log & (logs tailed) lswsctrl restart (no more logs from tail show up) in which case you need to break out...
Top