Recent content by Cardiff-Paul

  1. C

    More WebAdmin login issues

    In case it's relevant, admin/logs/error.log contains lots of these two warnings: 2026-05-29 16:28:50.224654 [NOTICE] [1151] [192.168.178.53:42834-1#_AdminVHost:lsapi] [STDERR] PHP Warning: dirname() expects exactly 1 parameter, 2 given in /usr/local/lsws/admin/html.open/view/inc/header.php on...
  2. C

    More WebAdmin login issues

    As this thread I have had to comment out the SSL check in login.php to reach the login page. https://forum.openlitespeed.org/threads/require-https-for-admin-panel-in-version-1-9-0.14507/ That worked for a while, but another update seems to have broken something else. When I try to log in with...
  3. C

    "Require https for admin panel." in version 1.9.0

    It looks like the answer is "that's how it is". Undocumented breaking change. I'll just keep editing the index.php because trying to get browsers to accept self-signed certificates is a pain.
  4. C

    "Require https for admin panel." in version 1.9.0

    I have a CentOS 7 dev server for older PHP versions running OpenLiteSpeed 1.7.19 which does not have this issue. The relevant section in $SERVER_ROOT/admin/html.open/login.php in that version is: $is_https = (isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] == 'on')); if...
  5. C

    "Require https for admin panel." in version 1.9.0

    $SERVER_ROOT/admin/conf/webadmin.key and $SERVER_ROOT/admin/conf/webadmin.crt both exist, dated 12th May 2025. In WebAdmin Settings > Listeners > adminListener > SSL the Private Key File and Certificate File are set to the paths above, Client Verification is set to "none" and everything else is...
  6. C

    "Require https for admin panel." in version 1.9.0

    My server has recently updated to version 1.9.0 and I now get "Require https for admin panel." at the login page. Because this is a local development system it doesn't have an SSL (not even a self-signed one), so if I try to use https I get a browser error reporting...
  7. C

    lsphp84-pecl-imap and lsphp85-pecl-imap installed but imap_ functions not available

    killall lsphp sorted it. imap wasn't showing in phpinfo() before and is after. I'm pleased it was something simple that I missed my end. I'll add that command to my notes. Feel free to move this form bug reports to somewhere more appropriate. Thank you, Paul
  8. C

    lsphp84-pecl-imap and lsphp85-pecl-imap installed but imap_ functions not available

    Hello, I have installed lsphp84-pecl-imap and lsphp85-pecl-imap and restarted lsws, however the various imap_ functions (listed here https://www.php.net/manual/en/ref.imap.php) are not available in the relevant PHP versions. Is this a bug or am I missing an important step somewhere? If it's...
  9. C

    Web Admin login error after update to 1.8.4

    Hello, After updating OpenLiteSpeed to 1.8.4 (from 1.8.3), logging into Web Admin failed - it just returned to login page with no error. For each failed login it sent a "LiteSpeed Web Admin Console Failed Login Attempt" email. During the update I noticed this message, which was the clue...
  10. C

    LSPHP 8.4 not available for OpenLiteSpeed 1.7.19 on CentOS 7

    The older 8.x versions are just development steps to get the old code to 8.4. It's easier to go one version at a time and deal with those changes. New live code will be PHP 8.4.
  11. C

    LSPHP 8.4 not available for OpenLiteSpeed 1.7.19 on CentOS 7

    That's exactly what I expected, thank you for confirming. Those folders make it easy to see what packages are available for different CentOS etc releases. I will build a new development server running AlmaLinux 9 for PHP 8.0 onward and keep the current one for working with legacy code. Thank...
  12. C

    LSPHP 8.4 not available for OpenLiteSpeed 1.7.19 on CentOS 7

    I have a local development server (mini PC) currently running CentOS 7 with OpenLiteSpeed 1.7.19 and LSPHP versions 7.0 to 8.3. I am still supporting client websites running on various PHP 7.x versions hence the need for this setup (PHP 7.0 to 7.3 aren't available for newer distros). Ongoing...
  13. C

    \n in top left corner of index pages

    As attached screenshot, with OpenLiteSpeed 1.7.19 there is a stray \n in the top left corner of index pages. This maybe fixed in 1.8.0 which I know is imminent.
  14. C

    [Closed] Unwanted redirecting to https with hostname but not with IP address

    OK, it's sorted - so you can ignore this whole thread! I had set the hostname to "dev" because it's a web dev server and I tend to use short names on my local network. However it seems that browsers look for .dev extensions and redirect them automatically to https. Even though "dev" != ".dev"...
  15. C

    [Closed] Unwanted redirecting to https with hostname but not with IP address

    I have now downloaded and compares the httpd_config.conf files from both servers. The only differences are the serverName (expected), the memory limits for CGIRLimit (higher on the new one) and the memory limits for railsDefaults, wsgiDefaults and nodeDefaults (all 2047M on the old server and 0...
Top