Search results

  1. M

    FrontPage Extensions & cPanel

    All the permission issuses are caused by the uid/gid that frontpage extension run as. I wonder what uid/gid is used under cPanel + Apache, root:$user? What is the ownership of file uploaded via FP extension? LiteSpeed run it under $user:nobody, same as the the owner of doc_root. I can change...
  2. M

    Need help with SSL Install for subdomain/vhost

    You need to remove the password protection of your private key file. try command openssl rsa -in server.skey -out server.key Also, you need to create a listener on port 443, and bind SSL certificate there. port 80 is for normal HTTP traffic. If you plan to host mutltiple secured site, you...
  3. M

    Need help with SSL Install for subdomain/vhost

    It does look like something is wrong, what about remove the CA certification file, does it work? Your cert will not be trusted this way, but I want to know what exactly causes the problem. Maybe something wrong with sf_issuing.crt, have you tried...
  4. M

    Need help with SSL Install for subdomain/vhost

    Is there any error message in error.log regarding the SSL configuration? Your configuration looks all right to me. Maybe the SSL session get cached during the testing when the configuration is not right. Try from another browser or from any machine. It does not matter where you put the certs...
  5. M

    Verifying RoR + LSAPI is working?

    If there is something in lsws/logs/stderr.log like: .../lsapi.so: warning: already initialized constant ENV you rails application is powered by LSAPI now. You may feel the first request is still pretty slow, that's because the RoR framework need to initialization for the first request, it is...
  6. M

    FrontPage Extensions & cPanel

    Please give the to be released RC2 package a try http://www.litespeedtech.com/packages/3.0/lsws-3.0RC2-std-i386-linux.tar.gz It should work better.
  7. M

    capistrano script to start lsws

    It could be a rc script problem. Which linux distribution Amazon's es2 uses? Glad you find the work around.
  8. M

    DirectorySlash

    Will Mephisto takes request to /2007/1/8/test-blog-post/comments/ ? If yes, I think you can try a rewrite rule which append the "/" automatically, so LSWS will not add a slash and redirect the request again. Just an idea, please let me know if it works or not.
  9. M

    LSAPI Ruby v1.12, PHP v2.4 Released

    Ruby LSAPI 1.12, PHP LSAPI 2.4 Released: Download: http://www.litespeedtech.com/products/webserver/lsapi/ Overview: Ruby LSAPI is a Ruby extension which implements the highly optimized LiteSpeed SAPI protocol between Ruby and LiteSpeed Server. PHP LSAPI is a PHP SAPI which implements the...
  10. M

    FrontPage Extensions & cPanel

    1. _vti_inf.html related error messages are because frontpage extension has not been installed for that vhost. LSWS tests existances of a few files under document root to make sure frontpage extension is enabled for that vhost. We can skip that test and enable fp extension for all vhost. Who...
  11. M

    Is there something like CGI Set *GID* Mode?

    Absolutely! :cool: Please help us spread the words.:)
  12. M

    Is there something like CGI Set *GID* Mode?

    My previous reply was wrong, using $VH_ROOT, $DOC_ROOT in Apache configuration like what you described should work well, even in template. You can verify it with a phpinfo page. I forgot when the change was made, probably right after this issue was mentioned. :)
  13. M

    rails proc spawning question

    LSWS will spawn one process for each rails application, this process will have the rails framework initialized then watch for new connection from web server, then fork children processes to do the real work, the cost of adding new process is the lowest, the connection between web server and a...
  14. M

    Is there something like CGI Set *GID* Mode?

    You can do the same to virtual host by adding the same configuration line to the "Apache Style Config" entry at the bottom of "General" tab. You need to instantiate a template member to create the vhost configuration file.
  15. M

    Cpanel Awstats Integration

    Yes, LSWS should write access log to the same file that apache used, you may need to change the log file ownership from "root" to "nobody" though.
  16. M

    Requests in Processing VS Request per Second

    Requests per second is how many requests have been processed during last second. Requests in Processing is the number of concurrent requests being processing at the time when the report generated. If a request takes about 1ms to process, you could get 1000 with Requests per second, while...
  17. M

    FrontPage Extensions & cPanel

    OK, frontpage should work now with the updated package, please give it a try and let me know. Thanks.
  18. M

    503 troubleshooting

    I have no clue what causing it. it should be a ruby/rails internal error. Maybe you should check the DB configuration for the mode that rails running in. try changing it from "production" to "development" or vice versa, see if it helps.
  19. M

    FrontPage Extensions & cPanel

    OK, it is the mod_frontpage coming with Microsoft frontpage package, it is like a global switch which enable frontpage for all vhosts. I will add support for that module.
  20. M

    Requests in Processing VS Request per Second

    That's perfectly fine as there is no request in the wait Q. Other than the wiki, there is a howto/FAQ section in the document bundled with the package, you can take a look at that as well as the documentation for each configuration option.
Top