Search results

  1. N

    [Resolved] suhosin patch question

    :) I got clear too when investigating the issue.
  2. N

    [Resolved] suhosin patch question

    if it's same configuration as the default, no need put in php.ini. For example, suhosin.executor.max_depth default value is 0. whether suhosin.executor.max_depth=0 in php.ini or not, it's no difference. I think the default value is set in suhosin's source code. This is convenient...
  3. N

    how to improve the busy litespeed server

    in your attachment, "Http Used:2484", "Requests In Processing:2155". this is high. but no info about external App? in Real-Time Stats page, click "Show" button beside "External Application" can get the info.
  4. N

    [Resolved] suhosin patch question

    please refer: http://www.hardened-php.net/suhosin/configuration.html "For most users the Suhosin will work out of the box without any change to the default configuration needed" you can change the default configuration described in above URL.
  5. N

    vbulletin mods not working

    can you specify which vbulletin mods? maybe other people happen to have same experience and know the solution.
  6. N

    [Reso] Server won't start: ./lshttpd: 1: Syntax error: "(" unexpected (expecting ")")

    :) so this is what you said DNS-323 NAS: http://wiki.dns323.info/ and its processor(CPU): http://en.wikipedia.org/wiki/ARM_architecture lsws no build for ARM processor yet. so the binary you downloaded for x86 CPU can't run on it.
  7. N

    Where is the php-config path for LSWS?

    please refer: http://www.litespeedtech.com/support/wiki/doku.php?id=litespeed_wiki:php:opcode_cache 2) Download/Expand APC 3.0.11+ it's same procedure to build APC extension for lsphp. usually it located at /usr/local/lsws/lsphp5/bin /usr/local/lsws/lsphp5/bin>file php-config...
  8. N

    [Reso] Server won't start: ./lshttpd: 1: Syntax error: "(" unexpected (expecting ")")

    run those commands on your server to determine 32-bit or 64-bit. post the output here.
  9. N

    408 Errors

    the log looks strange except 1st line. or any typo? according the 408 error_log entry, check corresponding access_log entries for same IP around the time stamp, may find something unusual. for example, if above error log not typo, it looks in the client's http request, User-Agent is too long...
  10. N

    First steps with LSWS on isp manager

    run php4 or php5 can be overridden in .htaccess or vhost: for php4: for php5
  11. N

    PCI scan failed: Limbo CMS arbitrary command execution on LSWS console port

    the solution is there following the link you provided: http://www.securityfocus.com/bid/16902/solution Solution: LimboCMS has released a cumulative patch to address this vulnerability. Please see the reference section for further details. this is a php vulnerability of LimboCMS. You've to...
  12. N

    [Reso] Server won't start: ./lshttpd: 1: Syntax error: "(" unexpected (expecting ")")

    is your OS 32-bit or 64-bit? then how about lshttpd?
  13. N

    [Reso] Server won't start: ./lshttpd: 1: Syntax error: "(" unexpected (expecting ")")

    what's the output of ? it should be 555. if not, run
  14. N

    Is Litespeed best for high-traffic file hosting sites?

    here's one I can think of: http://www.litespeedtech.com/docs/webserver/config/general/#swappingDir "Virtual memory, disk swapping, is used to store big request bodies and dynamically generated responses. The swapping directory should be placed on a disk with enough space." "Place the...
  15. N

    Is Litespeed best for high-traffic file hosting sites?

    I guess the used memory included cache too? i.e., #free -m total used free shared buffers cached Mem: 11976 11909 67 0 1219 8445 -/+ buffers/cache: 2244 9732 Swap: 24003 0 24003...
  16. N

    Java/Flash Upload file

    is your flash uploader an open source script? If so I can test it in our lab.
  17. N

    [Resolved] ProxyPass Configuration using Proxy in Litespeed

    I have setup in the External App the setting for Tomcat to be proxied at port 8080 using Webserver Setting. assume the external app name is tomcat_backend. Please try following instead: RewriteEngine On RewriteRule (.*) http://tomcat_backend/$1 [L,P,QSA] I did similar test locally, and passed.
  18. N

    [Resolved] ProxyPass Configuration using Proxy in Litespeed

    Maybe you've missed the last post in that thread? repost it here:
  19. N

    [Resolved] DirectoryMatch and Directory causes all 404s to become 403s

    Hi, I did tests on Apache 2, if in .htaccess there is <DirectoryMatch "\.(svn|git)"> Order allow,deny Deny from all </DirectoryMatch> normal access to a file will return "500 Internal Server Error". without "<DirectoryMatch" directive, will be "200 OK". and there is an entry in...
  20. N

    Chmod is broken with Litespeed

    step 2: alias /_autoindex/default.php /home/myusername/test/myindex.php sorry, alias may not work in .htaccess refer: http://httpd.apache.org/docs/2.0/mod/mod_alias.html#alias Context: server config, virtual host please ask your host provider to add it to your virtual host...
Top