Search results

  1. D

    SSR Errror: Failed to load key file

    If you using your IP but not the https://domain:7080/, you will always get such a notice, this is because the certificate does not contain your IP.
  2. D

    SSR Errror: Failed to load key file

    It may thin your certificate and your domain do not match.
  3. D

    SSR Errror: Failed to load key file

    Of cause yes for webadmin to use ssl and the default setting is. I am confused with your question.
  4. D

    SSR Errror: Failed to load key file

    By default 7080 is used for webAdmin. You may try another port.
  5. D

    [AutoRestarter] child process with pid=3264 received signal=11, a core file is created

    Can you check your email if you have gotten such an email about the backtrace of the core file? If not, can you do (you need to install gdb) />gdb /usr/local/lsws/bin/openlitespeed /tmp/lshttpd/bak_core/core.xxxxx and type bt, you will get the backtrace and send us it.
  6. D

    Block access to all php files

    RewriteRule ^(.*)$ /403-message.html [L,R=403]
  7. D

    Block access to all php files

    OpenLiteSpeed partially support the rewrite rule, and the `deny` is not supported. You may want to use a `rewriterule` to do a redirect.
  8. D

    Need help with installation with ubuntu wordpress

    Usually one click will do all thing just in one command with the right parameters. Include the mysql installation and settings. If you can run it correctly, you are good.
  9. D

    admin panel no change in management

    Since directadmin use a lot of `include` in the conf, so that the webAdmin is readonly mode. This is why you can only view it but can not update it. You may ask directadmin or you may update the conf manually.
  10. D

    Wordpress/Yoast(?) Permalink Issues

    You can update the error log level to DEBUG/HIGH and reproduce the 404 case, then the log will tell the reason, or you can send us the log of that request.
  11. D

    Wordpress/Yoast(?) Permalink Issues

    The default page is index.php or index.html when a url does not contain a filename. A url such as http://......./abc/, if there is not index file in ..../abc/, it will shows 404 error. You can set the rewrite or use a index file to fix this issue.
  12. D

    Turn on Mod Security on OpenLiteSpeed Wordpress Image

    If you can not find the mod_security.so in the lsws/modules/, you may download it from download page of our web site if you are running linux.
  13. D

    Subfolder rewrite error

    Did you set the Vhost correctly? Can you send me your conf?
  14. D

    how to upgrade to OpenLiteSpeed v1.6.1

    What is you current running version?
  15. D

    Subfolder rewrite error

    404 means the file does not exist or can not be accessed by openlitespeed. You need to present more info so that we can help. Such as error log, the file info.
  16. D

    Reached max children process - Log into vhost error log instead of stderr

    Are you use this ``` env LSAPI_STDERR_LOG=/dev/null ``` in your conf? Which lsphp version you are using? I just tested with a 1.4 and lsphp 5.3.6.
  17. D

    Reached max children process - Log into vhost error log instead of stderr

    So the total testing vhost conf is like this phpIniOverride { php_admin_value log_errors on } extprocessor lsphp { type lsapi address uds://tmp/lshttpd/lsphp1.sock maxConns 1 env PHP_LSAPI_CHILDREN=1 env...
  18. D

    Reached max children process - Log into vhost error log instead of stderr

    I tested with vhost config phpIniOverride { php_admin_value log_errors on } and that VHost can log its own php errors.
Top