Search results

  1. L

    Basic auth realm always promting auth even the password is correct

    The same issue occured for me while protecting the phpmyadmin. when i disabled the code(//$cfg['Servers'][$i]['auth_type'] = 'http';) in phpmyadmin/config.inc.php. after that issue resolved.
  2. L

    files upload stuck at 2MB with swap error

    You can follow https://forum.openlitespeed.org/threads/503-error-lsphp-failed-to-listen-socket-tmp-lshttpd-lsphp-sock-no-space-left-on-device.4349/#post-9217 if you are facing /tmp full issue
  3. L

    Unable to export sql database

    Please check the downloaded/export file last line and let me know if there is an error on the last line.
  4. L

    503 error + [lsphp]: Failed to listen socket [/tmp/lshttpd/lsphp.sock]: No space left on device

    Hello inspiredearth, Generally, the below solutions can solve your issue. you can ignore systemctl commands mentioned in my previous reply. I have disabled phpsessionclean services because those service not cleaning session files without making changes in php.ini 1. session files by cronjob...
  5. L

    OpenLiteSpeed with mod_security running as reverse proxy (WAF)

    Make sure the external server is accessible from your server "curl http://172.16.0.188" extprocessor node { type proxy address http://172.16.0.188 maxConns 30 initTimeout 600 retryTimeout 0 respBuffer...
  6. L

    503 error + [lsphp]: Failed to listen socket [/tmp/lshttpd/lsphp.sock]: No space left on device

    in addition to the previous reply, you can also change the swapping directory in OLS. https://serverok.in/openlitespeed-move-swapping-directory
  7. L

    Reg LSPHP56

    Which OS you are using?
  8. L

    503 error + [lsphp]: Failed to listen socket [/tmp/lshttpd/lsphp.sock]: No space left on device

    You are getting No space left on device message because /tmp partition full due to PHP session not cleared for a long time. Please set up a cronjob with the below code. systemctl stop phpsessionclean.service systemctl disable phpsessionclean.service systemctl stop phpsessionclean.timer...
Top