Hello,
for my understanding defining \define( 'ABSPATH', true ); as a bool is not a good idea.
I have late a strict comparsion like ABSPATH === $path in my test code and that will result in false becasue the $path will have the ABSPATH but converted to a sting.
Better use define( 'ABSPATH', sys_get_temp_dir() . '/' );
Hello,
for my understanding defining
\define( 'ABSPATH', true );as a bool is not a good idea.I have late a strict comparsion like
ABSPATH === $pathin my test code and that will result in false becasue the$pathwill have theABSPATHbut converted to a sting.Better use
define( 'ABSPATH', sys_get_temp_dir() . '/' );