Search results

  1. M

    Problems installing OpenX 2.6

    It should be loaded as an extension instead of zend_extension. If "extension_dir" value in phpinfo page is not /php5/lib/php/extensions/no-debug-non-zts-20060613/, you need to fix it in php.ini, either change the value or just comment it.
  2. M

    Problems installing OpenX 2.6

    Please check phpinfo page see if the module get loaded. Maybe it need to be loaded as a "zend_extnesion"?
  3. M

    restart

    As you requested, your package has been marked to be canceled when next renewal is due. Not sure the problem has been addressed or not, if you wish to continue the package, please login to your account and withdraw the cancellation request from there.
  4. M

    Problems installing OpenX 2.6

    copy mailparse.so to /php5/lib/php/extensions/no-debug-non-zts-20060613/ at the end of php.ini, add extension=mailparse.so
  5. M

    mod rewrite

    Yes, absolutely.
  6. M

    Problems installing OpenX 2.6

    have you tried export PHP_PREFIX="/php5" $PHP_PREFIX/bin/phpize
  7. M

    rewrite rule problem

    Those are rules for .htaccess, will not work at vhost level. The difference is that at .htacess level, rewrite base are striped from URL before matching the URL with the rule, it does not happen at vhost level. You may need to add a leading "/" to regex pattern when used at vhost level. like...
  8. M

    Problems installing OpenX 2.6

    PHP crashed, maybe some required PHP module are missing. check stderr.log
  9. M

    LSWS 3.3.17 has been released

    LiteSpeed Web Server 3.3.17 has been released This release is mainly to improve the PHP variables compatibilities with Apache mod_php. Download LiteSpeed Web Server View Version History
  10. M

    SSL certificate and domain

    Use IP based vhost, each SSL vhost got a dedicate IP. Same for apache. In LSWS, just create a listener for each <IP>:443, map to vhosts.
  11. M

    Permission issue / trouble debugging

    That's normal, the lshttpd process start suexec PHP process does not have right to kill the process any more. so killing that PHP process will be handed to the parent lshttpd process running as root.
  12. M

    request for change in how free edition loads virtual hosts

    It is not possible for LSWS to tell that is a real vhost or a default vhost for a IP, or a IP based real vhost. You have to manage the order of vhost configuration in httpd.conf manually.
  13. M

    XCache & Suhosin

    Or, just do not set "extension_dir" at all. :)
  14. M

    permissions issue

    I think it is a server permission configuration issue. You can try sudo -u <user_that_lshttpd_run_as> cat <a_file_with_000_permission> if above command does not end up with a permission denied, it is a permission configuration issue. Maybe something related to role based access control in...
  15. M

    Passenger architecture

    We have not tried it yet, but it should work well with LiteSpeed based on their claim. You may need to patch lsws/fcgi-bin/RailsRunner.rb by adding if GC.respond_to?(:copy_on_write_friendly=) GC.copy_on_write_friendly = true end at the very beginning in order to fully take advantage of it...
  16. M

    restart

    No problem. Wish you best luck.
  17. M

    GD Library

    You may need to include png, jpeg and freetype2 support when you build the PHP. Check stderr.log and error.log for related errors.
  18. M

    restart

    As you still can load the page that shows the online user count, I do think it is a web server problem. A web server problem usually result in 503/408 errors, if it immediately return a blank page, it likely is what PHP generates. It could be code errors or SQL errors. Maybe, you should...
  19. M

    restart

    Restart will not affect the count of online users whatsoever. Restarting the web server by an admin does not mean there is an error, it may be due to configuration updates. We can only investigate server downtime, page loading errors, etc. If you have an URL that can be used to reproduce a...
  20. M

    restart

    What is the base of your conclusion that it restarted again? The log does not show any restart, and the PID of lshttpd process did not change.
Top