Search results

  1. M

    Build PHP error

    You can try googling it. it is PHP internal error, probably relate to mismatched header files.
  2. M

    Using LS + cPanel

    You can have Apache run on another port without really take any traffic. cPanel may not work properly if you remove Apache completely.
  3. M

    [IDEA] Multi user support

    suHTTPD need a httpd process for serving static contents, and need to start twice amount of processes even for pure PHP dynamic content comparing suPHP. It is a pretty big scalability issue. I think your lighttpd solution may not able to go beyond couple hundred accounts.
  4. M

    [IDEA] Multi user support

    What you want is in the mind of event-driven and perfork server, it has serious scalability issue, imagine when you want to put 2000 accounts on one server, there is going to be too many processes, and forking processes frequently is not a good idea either. We will stick with our current...
  5. M

    [IDEA] Multi user support

    Thank you for the suggestion. LSWS' architecture is a single process event-driven non-blocking server for the maximum performance and scalabilities, what you described cannot apply. suEXEC should be good enough as we only need to worry about the security of CGI script, for static content it...
  6. M

    Build PHP error

    I think it should be a PHP configuration issue, make sure to use the same configuration parameters reported by phpinfo() page produced by mod_php, minus apache related parameters.
  7. M

    Using LS + cPanel

    It is possible if you just configure LS natively through the web console. It may not work well if you still want to LS read Apache httpd.conf, I would get rid of Apache completely instead of mixing them up if there is no special requirement for Apache.
  8. M

    install.sh no longer offers to install PHP cache

    Thanks for the suggestion, forgot to mention that you can always enable PHP opcode cache by running script lsws/admin/misc/enable_phpa.sh
  9. M

    install.sh no longer offers to install PHP cache

    You can install PHP opcode cache by building PHP binary from the web console. We turn it off from the installer because we do not offer opcode cache binary for PHP5 while most user will use PHP5 and need to build their own from the web console.
  10. M

    Installing with Ensim Pro X

    We thought Ensim is close to dead after Parallels took over it, so we do not follow up it closely. Glad that Parallels has finally released something. Litespeed should have no problem to support those features if not all of them are supported now. We need to get a sample Apache httpd...
  11. M

    Location-based error pages

    You should be able to override the error document via .htaccess. LiteSpeed's .htaccess implement is the most efficient with cache.
  12. M

    Server Load Low - Litespeed slow

    I suggest you to look into the internal redirect to serve static files directly instead of going through PHP. http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed:wiki:feature:internal_redirect
  13. M

    Presale question

    PDF version is not available.
  14. M

    Passing to another proxy on Litespeed

    LiteSpeed just proxy the request as normal no matter the target server is itself or somewhere else.
  15. M

    Atom Entry mime type warning.

    LSWS does not like the mime type with trialing ";type=entry". Do you really need to add that MIME configuration like that? "application/atom+xml" is fine with LSWS. if the response is generated by Rails dynamically, you do not have to add that MIME configuration at all.
  16. M

    cache function ?

    That's correct. We will tell user this function is not available in the web console for standard edition.
Top