Search results

  1. M

    possible migration from lighttpd

    For a remote ExtApp, you just leave all configurations below "Auto Start" unset. For example: Name remoteLsapi Address 127.0.0.1:4567 Max Connections 10 Environment <not set> Initial Request Timeout (secs) 60 Retry Timeout (secs) 0 Response Bufferring No Auto Start...
  2. M

    possible migration from lighttpd

    Yes, you need to add "&" at end of the command line to put it to background. Maybe add "nohup" to the command line as well, nohup ./lsphp -b ... & It will not start 15 processes at beginning, a new PHP process will be forked when there is a new request comes in.
  3. M

    Path Does Not Exist

    OK, thanks. We will investigate.
  4. M

    use it for 4 days and happy

    PHP and MySQL optimizations should apply to all setup no matter which server is used. LSWS comes with pretty optimized default configuration, maybe only a few minor changes are required, we have it covered. :)
  5. M

    Path Does Not Exist

    I guess it should be a permission problem if the directory already exist. You can try change $VH_ROOT/html to "/webs/mydomain.com/html", see if it will help.
  6. M

    opcode cache benefits quantified?

    Yes, opcode cache caches compiled PHP scripts, so there is no need to compile the script again and again. The real world improvment is depends on how complicate the PHP script is. The most common opcode caches are "APC" and "eAccelerator" now. Google on those key words can give you more...
  7. M

    use it for 4 days and happy

    Thank you for sharing your experience with our product. Hope you will become one of our happy litespeed enterprise customers soon. :) If you don't mind prompting a commercial product, please help us spread the words in the vBulletin community. Thanks! ;)
  8. M

    Host Name Somewhere in Admin panel

    "Server Name" is intended for this purpose, you can change it from default "lshttpd". Maybe we can set it to "uname -n" during installation.
  9. M

    Curious about LSWS and Bugzilla..

    BugZilla is written as plain Perl CGI, so it should work well with LiteSpeed. In addition to the step in our cPanel guide, you need to add a script handler for ".pl" at server level, just use CGI as handler. restart LiteSpeed, it should work. You can try our persistent perl daemon to improve...
  10. M

    possible migration from lighttpd

    I have not found any open source package does not work well with gmake. Maybe some sun packages require make, but I never have any problem with gmake.
  11. M

    possible migration from lighttpd

    fastcgi settings should be removed from configuration. Only one SAPI extension can be built.
  12. M

    possible migration from lighttpd

    I think should let "make" an alias of "gmake" and override the make comes with solaris. Both phpinfo and -v should show it is "LiteSpeed" SAPI if it is successful.
  13. M

    possible migration from lighttpd

    You need to install GNU m4/gmake/autoconf/gcc, make sure those tools is used instead of sun's. You can try a different version as well.
  14. M

    Help! I cannot start litespeed from commandline!

    If you set "Secure" to "Yes", you need to specify SSL key and certificate as well.
  15. M

    error log not logging

    Better use access log for this purpose, or turn on awstats integration. 404 message is at "INFO" or "DEBUG" level.
  16. M

    possible migration from lighttpd

    Correct. Easier than that, just run installer and select upgrade, no downtime at all.
  17. M

    Please update benchmarks for v3 :-)

    We will when we get a chance.
  18. M

    Concurrent connection limit

    Answer to your question. http://www.litespeedtech.com/support/forum/showthread.php?p=4646#post4646
  19. M

    possible migration from lighttpd

    Yes, you can do that. You should be able to do whatever you did with lighttpd with LSWS. :) When the backlog of TCP server socket is not full, the pending connection will be held in the backlog, when the backlog was full, more connections will be refused. Linux's TCP backlog can hold upto 200...
  20. M

    error log not logging

    Not an error level message in LSWS.
Top