Search results

  1. M

    Installation issue

    Please post your httpd_config.xml
  2. M

    can't setup virtual host?

    chmod 0755 /usr/local/lsws/paulcurley
  3. M

    can't setup virtual host?

    accessible by the user that "admin_php" run as.
  4. M

    can't setup virtual host?

    permission problem.
  5. M

    rewrite questions

    Just add a Redirect context if you were using native LiteSpeed configuration. Or a "Redirect", or a regular rewrite rule in .htaccess
  6. M

    Problems running lsapi

    Make sure you have "Auto Start" of the bootstrap.lsapi external app set to "Yes".
  7. M

    reverse proxy scenario?

    Like, RewriteRule ^/(folder/file.html)$ http://doamin.net.s3.amazonaws.com/$1 [P,E=Proxy-Host:domain.net.s3.amazonaws.com] The value of environment "Proxy-Host" is the target domain name, this rule only works with Enterprise edition, standard edition is not capable of changing the domain...
  8. M

    Context: /media and / conflicting

    It should work, please turn on debug log, it should show which context it picks up. Please show me how /media/ context is configured.
  9. M

    Where can i get the completer Request Filtering Rule Set

    you can use mod_security 1.9 rules.
  10. M

    reverse proxy scenario?

    The first one is possible with rewrite rule which can change the domain name. The second one probably is no, because LSWS sends the response body as is.
  11. M

    503 on file upload

    looks like the memory has been set properly. I am not sure 700MB is enough or not. You can check the memory useage of the PHP process, and you can "strace" the PHP process, I think it must be crashed for some reason.
  12. M

    compile xcache from source?

    You need to update php.ini to add xcache related configuration.
  13. M

    PHP readfile Error

    need to change "allow_url_fopen" PHP configuration to "On" in the php.ini. However, it is not recommended to stream files through PHP, check http://www.litespeedtech.com/support/forum/showthread.php?t=1576
  14. M

    503 on file upload

    Please run shell command "ulimit -a" from a PHP script and check the output to make sure the memory limit has been set properly. Also, check lsws/logs/stderr.log and lsws/logs/error.log for PHP errors.
  15. M

    Install on FreeBSD - not starting

    Is there a core file created under lsws/bin or /tmp/lshttpd directory. User may have trouble running 32bit standard edition on 64bit FreeBSD, but you said it is 32bit FreeBSD. You can PM me a temp root login to that server if possible, I can take a look.
  16. M

    503 on file upload

    I think you need to increase the memory limit for lsphp external application as well.
  17. M

    Apache Migration

    I think you probably have to let LSWS listen on *:8088, and use ProxyPass or ProxyPassReverse in Apache configuration to pass request to "http://domain.com:8088/" for each site hosted on Apache. If I were you, I would verify everything working properly on port 8088, then switch from Apache to...
  18. M

    PHP 4.4.8 is out - Will Litespeed add this automaticaly?

    Will update to 4.4.8 in next release.
  19. M

    chroot: do I understand this correctly?

    Yes, you can jail the standard edition by manually crafting the chroot environment.
  20. M

    mysql problem

    You need to change mysql_socket in php.ini for lsphp 4.4.7 to match the mysql installation on your server.
Top