I am stumped! Is there anything in your PHP error log? The long delay when nothing happens suggests a third party extension (plugin) has intercepted the form submission and is doing something that times out.
This is not easy to debug!
You could plant some code in administrator/components/com_modules/src/Controller/ModulesController.php
The save function starts on line 211. You could just insert a die statement, say on line 214: die('On line 214'); when you save you should see a white page with that statement - select the back button. Then move the statement through the code to see where you get to. Do you get to line 240?
The parent is libraries/src/MVC/Controller/FormController.php with save starting on line 537.
There are other ways of debugging. Copy the whole site to your laptop/desktop and debug it there.
This is not easy to debug!
You could plant some code in administrator/components/com_modules/src/Controller/ModulesController.php
The save function starts on line 211. You could just insert a die statement, say on line 214: die('On line 214'); when you save you should see a white page with that statement - select the back button. Then move the statement through the code to see where you get to. Do you get to line 240?
The parent is libraries/src/MVC/Controller/FormController.php with save starting on line 537.
There are other ways of debugging. Copy the whole site to your laptop/desktop and debug it there.
Statistics: Posted by ceford — Wed Feb 21, 2024 9:58 pm