Search results

  1. D

    ssl mixed content error

    Server need to be restarted for loading the config(include rewrite rules and .htaccess file) at the very beginning and for good perfermance, it can not check the config changes during serving.
  2. D

    ERR_HTTP2_PROTOCOL_ERROR with Chrome Canary

    Please give me more infor, which version you are using?
  3. D

    Clear cache via CLI

    You can ssh to connect to your server and rm -rf ...lsws/cachedata (This is the default cache dir if you do not changed it).
  4. D

    Adding a subdomain

    You set two listeners with the same port 80, this is incorrect. You may use one listener and map two domains to the same listener.
  5. D

    Module:Cache checkAssignHandler error 2

    You can set enableCache 0 in server level setting, and if you need update the setting for any VHost, just set it in the VHosts. The Vhost will inherite the setting from server level and use its own if it has.
  6. D

    php_admin_value ignored if value's length is 1006 or more

    Can you try again? run command lsws/admin/misc/lsup.sh -e 1.7.5
  7. D

    php_admin_value ignored if value's length is 1006 or more

    OK. I have changed the plan conf long line from 1024 bytes to 4096 bytes several days before, it fixed a part of your issue. I will check it tomorrow.
  8. D

    php_admin_value ignored if value's length is 1006 or more

    Can you try 1.7.5? run command lsws/admin/misc/lsup.sh -e 1.7.5
  9. D

    Web server log displays only numbers now

    The accesslog format is set in conf. You need to restart service to make it reload and work.
  10. D

    Module:Cache checkAssignHandler error 2

    You may post your config (server + Vhost) about the module, also your current log with that error.
  11. D

    Module:Cache checkAssignHandler error 2

    I checked the cache code, the "checkAssignHandler error 2." error cause by cacheconfig is not initialized. Did you have cache module registered in server level? Even one line in server level config, such as "module cache" will register it.
  12. D

    Module:Cache checkAssignHandler error 2

    I will check the code and reply you later.
  13. D

    Missed $_SERVER['HTTP_CONTENT_RANGE'] variable

    I tested your site and at the beginning it does not have the HTTP_CONTENT_RANGE and I thought it is because of the cache. So that I change the querry string and then it did have.
  14. D

    Missed $_SERVER['HTTP_CONTENT_RANGE'] variable

    root@david-ubuntu-14:~# curl --http1.1 -k -i -H "content-range: 50000-" https://SERVER/phpinfo.php?21fgfg | grep HTTP_CONTENT_RANGE % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100...
  15. D

    Missed $_SERVER['HTTP_CONTENT_RANGE'] variable

    root@david-ubuntu-14:/usr/local/lsws# curl -k -i -H "content-range: 0-" https://127.0.0.1:8089/phpinfo.php | grep HTTP_CONTENT_RANGE % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100...
  16. D

    Missed $_SERVER['HTTP_CONTENT_RANGE'] variable

    I tested the example page, it seems it is handled correctly. root@david-ubuntu-14:/usr/local/lsws# curl -i -H "content-range: 0-" http://127.0.0.1:8088/phpinfo.php | grep HTTP_CONTENT_RANGE % Total % Received % Xferd Average Speed Time Time Time Current...
  17. D

    lsphp74-gd missing on Debian

    Can you tell us which version debian, how you installed lsphp74 and what errors you have?
  18. D

    Missed HTTP_CONTENT_RANGE server var

    As I tested, it should handle range request correctly. What is your version? I can do such version testing.
Top