Search results

  1. M

    running rubyrunner or lsapi?

    RailsRunner.rb is using lsapi. All rails application will be invoked through RailsRunner.rb if you use Easy Rails configuration. You can safely ignore the warning "already initialized constant ENV".
  2. M

    DELETE request not working

    Please tell me exactly how the DELETE request looks like. I will try to produce it.
  3. M

    Installing with Cpanel

    Like what pizzaman did, create a .htaccess file under the directory where osCommerce is installed. Add it there. And you need to make sure the htacess support has been turned on.
  4. M

    uid, gid warnings, and vhosts not showing up in panel

    It will be the best, if you create a dedicate user/group like "lsws/lsws" for running just LiteSpeed Web Server. Makde sure the UID and GID is greater than 10. This may fix your 1st and 3rd problem. Please pay attention to the UID/GID of public/ folder of you rails app, should not owned by...
  5. M

    suexec conflicts with web server user

    To run setuid process in a fixed GID, not follow the GID of public folder, try "Force GID" option under "Server"->"Security" tab. The UID is still follow that of public folder. LiteSpeed provide all the flexibilities, you should be able to find a good security model which fits your needs. :)
  6. M

    cPanel migration - .htaccess (sus.page)

    Answers to your questions: No. 1: 3.0RC1 is expected on Monday, but blocking subdomain may not able to make it, it is a bigger change. Maybe in RC2 release. No. 2: Fixed. No. 3: It should work, I will check, fix should be 3.0RC1. No. 4: Maybe in RC2 release if cannot make into RC1 No. 5: No...
  7. M

    Joomla Problem

    It should be PHP problem, maybe something wrong with a PHP extension. And the PHP problem only happen with the "Old Civid" picture http://redgoblin.org:81/index.php?option=com_frontpage&Itemid=1&limit=5&limitstart=1 If "limitstart" is >1, there is no problem. Check your lsws/logs/stderr.log...
  8. M

    Failed install on Ubuntu

    To install the 32bit library, try sudo apt-get install ia32-libs 64bit binary will be available for Enterprise edition in our upcoming 3.0 release.
  9. M

    cPanel migration - .htaccess (sus.page)

    The problem with addon domains is because the htaccess cache implemented, no easy fix, may be in 3.0 release. I cannot reproduce the second problem, it works. LiteSpeed cache .htaccess for a few seconds, maybe you did that too fast, or it is the browser cached the page.
  10. M

    about 404 page

    Why 404 page cannot be set to "/reply.php"? When set to "http://domain/reply.php", it becomes a external redirect with status code 302 will be returned, I think "Referer" header has not been sent by the browser.
  11. M

    litespeed stop responding

    Please make sure to upgrade to the latest release. If it still happening, try strace the run away lshttpd processes.
  12. M

    Unable to log to STDOUT from Ruby/Rails when running under LiteSpeed

    Still not able to reproduce the problem here. I think it might happen during Rails framework initialization, after the framework has been fully initialized, it just works fine.
  13. M

    whatever popen does isnt working in a rails app

    More finding. If "generator.close" is not called at the end, there will be a new zombie process for each request, since LiteSpeed set the "Number of Process Limit", soon the limit will be reached, and 'popen' will fail. Maybe that is the reason. :)
  14. M

    whatever popen does isnt working in a rails app

    I did a simple IO.popen() test, and it works. Maybe it has something to do with your application. If you really want to find out why, you can try "strace" the ruby process that executes IO.popen(). Aother possibility is that the child process created by IO.popen() dead for some reason, you can...
  15. M

    ProxyPass

    Rewrite only works when everything is on the same server, just the URLs/Hosts are different, as the example you gave. As to what you want at the beginning of the thread, rewrite does not work. Maybe a reverse proxy to api.search.yahoo.com works, if the request without any change can be...
  16. M

    ProxyPass

    rlance, you can use URL rewrite with Zope + FCGI for the same purpose.
  17. M

    ProxyPass

    I think the example you given is just implemented with URL rewrite, no Proxypass involved at all.
  18. M

    ProxyPass

    The two examples you give does not implemented with proxypass, they are just domain alias for the same vhost, the two domain names point to the same server.
  19. M

    403 Forbidden

    Possibly the document root of that vhost is owned by "root", by it is not allowed to run any script as "root".
  20. M

    php configuration question

    You need to recompile lsphp. please follow our guide in our wiki.
Top