Search results

  1. N

    White Page when loading site

    need more specific about your issue. for example, if there is a 0 byte index.html under your document root, then white page is normal.
  2. N

    mysql in latest php build

    remove --with-mysql=/usr/bin --with-mysqli
  3. N

    mysql in latest php build

    if php version is 5.3 or above, rebuild php by add --with-mysql=mysqlnd --with-mysqli=mysqlnd build parameter.
  4. N

    CheckCase url case senstivity

    for particular URL, you can do it in .htaccess: RewriteRule aBc.html abc.html [NC] [NC] mean "no case" so ABC.html, AbC.html etc all accessible. or RewriteRule aBc.html abc.html [NC,R] all redirect to abc.html, to let user know the correct case.
  5. N

    [solved] Max Idle Time

    | |-litespeed(3206)---lsphp5(3347)-+-lsphp5(1413) | | |-lsphp5(4013) | | |-lsphp5(5920) | | |-lsphp5(7512)...
  6. N

    [solved] Max Idle Time

    some 8-bit characters in it and hard to read. to resolve it, run "export LANG=C" before run "pstree -p"
  7. N

    [solved] Max Idle Time

    can you paste output of "pstree -p" under litespeed process subtree ?
  8. N

    Decreasing load time of images

    are you sure ? to confirm it, you can test on one image only, not the homepage. for example, test: http://yourdomain.com/themes/default/img/QHA.jpg
  9. N

    all Php are run with apache

    to confirm if suExec or not, please run following php code under a vhost docroot: <?php $pid=getmypid(); echo "getmypid()=" . $pid ."<br>"; echo "<hr><pre>"; system("ps -fp " . $pid); echo "</pre><hr>"; ?>
  10. N

    Minimum RAM ?!

    I installed and ran lsws on an old machine with 256M memory without problem. although not tested, I think 128M memory will be ok as well.
  11. N

    [solved] Max Idle Time

    are you running php in which mode: suExec or not ?
  12. N

    Litespeed cache settings

    the "Storage Path" must be set, now it's empty
  13. N

    How to use lsperld? Why there no instructions?

    yes, setup lsperld won't take time, and believe you can do it well. and I have same question with you: not sure if your script will be compatible with lsperld or how long will it take to get them working together. Suggest you set up it yourself, no more tricks than what demo shows. you can post...
  14. N

    How to use lsperld? Why there no instructions?

    please refer our service list: https://store.litespeedtech.com/store/cart.php?gid=5 maybe "Hourly Support" for your case. this demo YaBB forum hosted by perl has nearly 20k posts, I'm trying to clean it up. It has been running there for 6+ years.
  15. N

    Graceful restart not so graceful

    should be this change which fixed the issue.
  16. N

    How to use lsperld? Why there no instructions?

    please re-visit my last post I restarted lsws in the demo admin console, and http://demo.litespeedtech.com/perl/ is ok now :)
  17. N

    How to use lsperld? Why there no instructions?

    please refer litespeed demo admin console, access info is here: http://www.litespeedtech.com/litespeed-live-demos.html how to set Fast CGI App for lsperld in Virtual Hosts -> demo -> External App -> lsperld
  18. N

    WordPress Errors

    for wordpress, since there are WP plugins like supercache, they serve the same purpose and works well, so we haven't tried lscache rewrite rules for wp yet.
  19. N

    mod_ruid2 with litespeed's php?

    lsphp in suExec mode can run as user account and still keep high performance. and in mod_ruid2's README: -it runs only on linux because afaik only linux has implemented posix 1003.1e capabilities so I'm not clear what's point of this mod over lsphp ?
  20. N

    403 Forbidden - New post

    what's your lsws version ?
Top