Search results

  1. W

    How to get rid of this warning?

    You can comment it out to get rid of the warning or ignore it since suPHP is not used in LSWS (enable PHP suEXEC takes care of shared hosting as if having suPHP with Apache).
  2. W

    HELP ME - Litespeed not work after upgrade to 4.2.3

    Please order a new license.
  3. W

    HELP ME - Litespeed not work after upgrade to 4.2.3

    Looks like your license was cancelled earlier today (Reason: I want Cancel). Hence the issue.
  4. W

    HELP ME - Litespeed not work after upgrade to 4.2.3

    pls pm the login.
  5. W

    [Resolved] .htaccess problem

    i did not change anything. just show you how to debug the issue using rewrite logging.
  6. W

    [Resolved] .htaccess problem

    pls see rewrite log below. '+' is replaced with '%20'. So rewrite works as expected.
  7. W

    [Resolved] .htaccess problem

    you need to escape '+' in your matching pattern. iow, use '\+' instead of '+'.
  8. W

    [Resolved] .htaccess problem

    grep your IP (along with REWRITE) while you make request to debug from command line as follows:
  9. W

    [Resolved] .htaccess problem

    Do not use "<RewriteLogLevel>9</RewriteLogLevel>" but "RewriteLogLevel 9" instead.
  10. W

    [Resolved] .htaccess problem

    enable rewrite logging (add 'RewriteLogLevel 9' in httpd.conf) and grep 'REWRITE' in error log to debug.
  11. W

    [solved] Compile PHP 5.2

    here is how (take php 5.4.5 source as example).
  12. W

    where is the php.ini file

    You should copy a php.ini to /usr/local/lsws/lsphp5/lib for lsphp5 to pick up. A good candidate is the php.ini comes with php source code (depends on lsphp5(php) version). To have custom php.ini for each vhost, please refer to this wiki...
  13. W

    new install issue with VB 4.2

    not sure about first 3 items. for 4), the Anti-DDoS proxy sends out x-forwarded-for header ($_SERVER["HTTP_X_FORWARDED_FOR"]) for the real client IP. Seems VB has a way to extract it. see if it works for you. http://www.vbulletin.org/forum/archive/index.php/t-149401.html
  14. W

    Litespeed Error on Directadmin

    you should check 'error.log' instead. file like error.log.2013_07_25.01 (rotated) recorded past activity. also, do 'netstat -ntpl | grep litespeed' to verify if server is up or not. seems you are using DA plugin but install Standard Edition (not meant for control panel). Hence no license info...
  15. W

    php-mysql compile error

    There is no 'mysqlind'. you need to use '--with-mysqli=mysqlnd'
  16. W

    php-mysql compile error

    Yes, that's for php 5.3 with mysqlnd. mysqlnd is default for all the MySQL extensions in php 5.4 so no need to specify. http://www.php.net/manual/en/mysqlnd.install.php
  17. W

    Zend Optimizer

    you can download zend guard loader 6.0 (runtime for php 5.4) from http://www.zend.com/en/products/guard/downloads and copy the so file to the extension folder for install.
  18. W

    [Resolved] rewrite error

    not sure what you mean. the URL returns 200 status which means the resource does exist. ~>curl -A "" -I "http://www.topgiftssite.com/favicon.ico?id=0.547004595642902" HTTP/1.1 200 OK Date: Sat, 20 Jul 2013 00:08:15 GMT Server: LiteSpeed Accept-Ranges: bytes Connection: Keep-Alive Keep-Alive...
  19. W

    AutoIndex headername?

    look at /usr/local/lsws/share/autoindex/default.php to start with. the HeaderName is hardcoded with 'HEADER[.html|.htm]'. iow, just name the file HEADER or HEADER.html or HEADER.htm in the directory should be good.
  20. W

    PHP LiteSpeed SAPI from php sources?

    step back a bit. just to be clear: we submit the package to the PHP team. they will update the php source when they see fit.
Top