How to fix "Allocation of JIT memory failed, PCRE JIT will be disabled" warning in Joomla 4
With the release of Joomla 4, they recommend that we upgrade our server's PHP to version 8.
However, PHP versions from 7.2.5 are still accepted, see details at https://downloads.joomla.org/technical-requirements
When using Joomla 4 on PHP 7, you may get an error like "Allocation of JIT memory failed, PCRE JIT will be disabled...", it happens almost throughout the entire page and it looks really confusing.

There are ways to fix it:
1. Change the settings on the PHP.ini file
Most server/hosting providers support tweaking the basic PHP settings. You can find it from the server/hosting management section.
After opening the PHP.ini file, add the following line of code: pcre.jit=0
Another way is that you can add the above parameter to the JMP PHP Settings extension.

2. Edit the code directly on the index.php file.
All requests on Joomla are made through the index.php file. Please add this line of code:
ini_set("pcre.jit", "0");
... to the files below:
- index.php
- administrator/index.php

3. Change the value of Error Reporting
From the Joomla admin section, go to System > Global Configuration > Server > Error Reporting: None

This is not preferred because you cannot control the error. This may lead to incorrect results.
4. Upgrade to PHP 8.
This is the last way and also the riskiest. It is risky because the extensions you are installing may not be compatible with PHP 8. Of course, if you are installing Joomla for the first time, this is the right thing to do.
I have been googling how to change the menu colours, as the black text on my purple background is not very readable. However everything I have tried to change the text colour of the Off-Canvas main menu text to white did not work.
Would you know what custom CSS I would need to change all menu items to white text (including submenus).
Probably need background colour to not be white when hovering over submenus
Any help you can provide would be gratefully appreciated (or a pointer to some useful help).
Thank you
see
https://siteupdate.vedicmaths.org/index.php
InPre-Update Check for Joomla 5.4.4
for Off-Canvas it says
Joomla cannot detect the extension's compatibility with the target version of Joomla.
have you implemented the compatibility stuff for Joomla to upgrade extensions correctly ?
Have got two off canvas menus working (1. for tools and 2. for main menu)
However I can only get the Main menu to display the first level of menu items.
Have you any suggestions for getting the sub menu items to display ?
N.B. the menu item with sub menu items does display a down arrow, but trying to click on it only display the item at the main menu level.
see
https://siteupdate.vedicmaths.org/index.php
If you want to see where I have currently got to