Search results

  1. N

    [Resolved] XenForo Rebuild Attachment Thumbnails 503

    is csf / lfd installed ? if so, please refer https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:php:503-errors#lsphp_process_is_killed_unexpectedly
  2. N

    [Resolved] XenForo Rebuild Attachment Thumbnails 503

    add RewriteEngine On RewriteRule admin.php - [E=noabort:1, E=noconntimeout:1] in .htaccess, see if works. more details: https://www.litespeedtech.com/support/wiki/doku.php/litespeed_wiki:php:run-without-timeouts
  3. N

    Litespeed Cache for Plesk

    can you be more specific ? if looking at https://store.litespeedtech.com/store/cart.php?gid=2 there are 2 cache options: LSCache / LiteMage, it depends on licenses, not depend on which control panel.
  4. N

    Gzip on static and dynamic files are enabled but gtmetrix says no

    checked the domain, it's currently running apache. is litespeed installed on this server ?
  5. N

    LFD excessive resource usage too much

    #pmap -x pid-of-lsphp5 to get more info. from man page of pmap: EXTENDED AND DEVICE FORMAT FIELDS Address: start address of map Kbytes: size of map in kilobytes RSS: resident set size in kilobytes Dirty: dirty pages (both shared and private) in...
  6. N

    LFD excessive resource usage too much

    can check with #pmap -p pid-of-lsphp5-process I think it depends the php script. to measure if lsphp5 itself has consumed many memory, can test with a simple script <?php sleep(30); ?> then check with pmap how many memory used. in example of opcode extemsion, it'll explicitly pre-allocate...
  7. N

    WP-ADMIN error

    check the .htaccess file /home/saleh/public_html/2dropshipping.com/.htaccess if wp-login.php is not allowed to access
  8. N

    Upgrade No Longer Works

    can you run it at command line (i.e., manually) #/usr/local/lsws/admin/misc/lsup.sh -f -v 4.2.23 if still fail, may be a firewall issue between your server and www.litespeedtech.com
  9. N

    Force strict owner ship not work for file uploaded

    if you have many user accounts on the server, usually you need enable php suExec. otherwise all accounts are running as nobody:nobody or apache:apache, and each account can access other account's files.
  10. N

    High response time on Port 80

    if you monitor a simple /hello.html page and response average is very high(above 2 sec), I'd agree it's a litespeed issue. but if you monitor the a domain's homepage, which could be very complex, litespeed may just wait for backend php/mysql to generate the response, you can't blame litespeed...
  11. N

    Lsphp5 High CPU Usage.

    Thanks for the sharing. so php 7 is the "silver bullet" for this scenario not sure how it resolves this particular issue though.
  12. N

    Access to context [/] is denied

    you can "start a conversation" to provide server access, I can login to take a check.
  13. N

    Error when installing litesppeed on WHM

    does /usr/src exist ? if not, manually create it, then run install script again. to ensure this error don't occur again.
  14. N

    Error when installing litesppeed on WHM

    are you running install script with root ?
  15. N

    Force strict owner ship not work for file uploaded

    this looks wrong. have you enabled php suExec ?
  16. N

    WordPress Plugin

    have you enabled php suExec ? http://www.litespeedtech.com/docs/webserver/config/general#phpSuExec check the user/group lsphp process running as and the user/group along the path wp-content/uploads/2015/06 lsphp process should have read/write permission to directory wp-content/uploads/2015/06
  17. N

    LiteSpeed CGI Daemon Auto start options

    I think so. "Through CGI Daemon" imply "Yes" (also "Through CGI Daemon (async)"). no other related configurations. difference between "Through CGI Daemon" and "Yes" in run time: lsphp's parent process is different, can view this by "pstree -p" >And this will greatly reduce overhead (and...
  18. N

    Feature Request: Limit Req/Sec and/or Req In Processing

    lsws 5.0 introduced mod_bw : "Virtual host-level bandwidth throttling with mod_bw compatibility" ( refer http://www.litespeedtech.com/products/litespeed-web-server/release-log ) please investigate if it meets your requirement.
  19. N

    Xenforo litespeed cache, login problem, main index page not showing the users logged

    need do some tests. how about change RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] to RewriteCond %{REQUEST_FILENAME} -f RewriteRule ^.*$ - [NC,L]
  20. N

    503 with litespeed admin panel

    don't choose "No", unless you know exactly what "chroot" mean. you can re-install and choose "No" to chroot, 503 error should be gone.
Top