Search results

  1. N

    503 errors when uploading pictures

    I prefer configuration issue. has you posted questions on Xenforo forum ? maybe they're experienced with similar issue and know the answer. if uploading 6 very small images also has the problem, not likely an memory issue, rather an configuration limit ? just a guess.
  2. N

    503 errors when uploading pictures

    both apache and litespeed not work. looks like an php issue. what's the memory_limit of php ? (create a phpinfo.php under document root, access it and search for memory_limit)
  3. N

    XML RPC Windows Live Writter stopped working

    just got to know wordpress 4.4.1 is out please try 4.4.1, see if the issue still there.
  4. N

    XML RPC Windows Live Writter stopped working

    enable debug log, see if you can find anything ? lsws web admin -> Actions -> Toggle Debug Logging then watch error.log (no need restart lsws)
  5. N

    XML RPC Windows Live Writter stopped working

    is wordpress latest version ? is it a WHM/cPanel server ? are there any any mod_security rules installed ? are your server behind CloudFlare etc ? CloudFlare may apply for some mod_security rules to prevent xmlrpc attack.
  6. N

    Header set Access-Control-Allow-Origin "*"

    tested with latest lsws 5.0.10. results: already support above directives. but found a possible bug during tests. 1.to understand what CORS means , here's best document I got to understand this time: https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS so finally it looks...
  7. N

    XML RPC Windows Live Writter stopped working

    latest version is 5.0.10 can you upgraded to 5.0.10 and see if the issue still exist ?
  8. N

    IP blocking not being triggered

    my point is: set it to No temporarily, do tests again to see if the "weird" issue will be gone. your question looks clear to me now. actually already answered in previous replies, in above #4 / #6 reply. in short, in your case: attacking IPs --> proxy --> lsws server for this set up, lsws...
  9. N

    IP blocking not being triggered

    set it to "No"(default value). run tests again, still have the issues described in this thread ?
  10. N

    IP blocking not being triggered

    what your server's current setting: lsws web admin -> Server -> General -> Use Client IP in Header ? "Yes" ?
  11. N

    mod_pagespeed porting to litespeed?

    here's a reply in ticket by one of our staff:
  12. N

    [Resolved] Best Way to Protect a Directory in LS?

    if you provide access, I can login the server and trouble shoot this issue, see what happened. if you read apache's httpd.conf, search AllowOverride None directive. if exist, change it to AllowOverride All
  13. N

    suPHP Requires 755 Permissions

    there are many existing control panels, WHM/cPanel is the biggest one. each control panel may have different styles regarding file/directory permissions. you can also not to use any control panel, and defines a set of rules regarding file/directory ownership / permission. in other words, there...
  14. N

    suPHP Requires 755 Permissions

    this is a must and WHM/cPanel has formal document about it. you can ignore other suggestions in my 1st reply. considering static files, like image/js/css, are served by web server which usually run as nobody, you must let nobody user to read these files, so 1) if static files directly under...
  15. N

    suPHP Requires 755 Permissions

    on a WHM/cPanel, it should be /home/user/public_html user / nobody (750) /home/user/public_html/support user/user (755) /home/user/public_html/support/.htaccess user/user 750 so except home /home/user/public_html, all sub folders should have 755 permission, all files need 750 permission only...
  16. N

    [Resolved] Update to 5.0.10 but still LS API 6.8

    need rebuild lsphp, then you'll see lsapi is 6.9 upgrade lsws is quick, will take within 1 minutes. but rebuild lsphp will take time, at least a few minutes.
  17. N

    [Resolved] Best Way to Protect a Directory in LS?

    in .htaccess: RewriteEngine On Order allow, deny Deny from all put above lines at the very beginning, should work as expected. at present, install latest lsws (now 5.0.10), there should be no problem at all to switch between 4.x and 5.x
  18. N

    Wildcard config file include?

    some of them can. for example, apache php has no php suExec ProcessGroup mode(it's a litespeed only feature), to enable this mode under litespeed and not affect apache if switching back to apache, add <IfModule LiteSpeed> LSPHP_ProcessGroup on LSPHP_Workers 15 </IfModule> in httpd.conf more...
  19. N

    WooCommerce

    WooCommerce may need litemage like wordpress plugin to make it work properly. our wordpress plugin is on to-do list, it may cover WooCommerce. the rewrite rule you posted has little problems, it's an old version wiki. our wiki has updated...
  20. N

    Enable compression for css and js files

    this already enough to enable gzip css and js. css is text/css, included in "text/*", js is application/javascript or application/x-javascript, already included as well.
Top