Here are the first issues i have found when running oxwall on php 7.4.8, there may be more to come.
One of these is easy to fix just removing the call to the function... But the others ill have to check the manuals and update this topic later. I will also check github to see if someone has already addressed these.
[ow_core_log] [Notice] Message: Function get_magic_quotes_gpc() is deprecated File: /home/username/public_html/sitefolder/ow_core/request.php Line:48
[ow_core_log] [Notice] Message: Unparenthesized `a ? b : c ? d : e` is deprecated. Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)` File: /home/username/public_html/sitefolder/ow_plugins/newsfeed/classes/event_handler.php Line:1444
[w_core_log] [Notice] Message: Array and string offset access syntax with curly braces is deprecated File: /home/username/public_html/sitefolder/ow_libraries/jevix/jevix.class.php Line:1025
Also just a heads up to other developers. I suppose this means that to get our plugins ready for php 7.4 we will have to replace all
$whatever = array();
$whatever = [];
If that is true then its a HUGE undertaking to get oxwall itself ready...