Multisite Conversion White Screen Error

Since you’re not getting anything in the page source, it’s at least reasonable to work under the assumption that something is either going wrong in the initialization process or very early on in building the page templates (like something you’ve hooked into wp_head(). I would try adding “breakpoints” to any functions that you’ve hooked into … Read more

kali php problem [closed]

The use of curly braces ({}) in accessing an array index or string offset was deprecated in PHP 7.4 and later versions. You need to use square brackets ([]) instead. Update the code on line 82 (or there about) in call.php to fix the offending use of {}.