When installing from new, there's a problem with this line (6):
if( defined( ABSPATH ) == false ) {define( "ABSPATH", "../" ); }
it should be this:
if( defined( 'ABSPATH' ) == false ) {define( "ABSPATH", "../" ); }
When installing from new, there's a problem with this line (6):
if( defined( ABSPATH ) == false ) {define( "ABSPATH", "../" ); }
it should be this:
if( defined( 'ABSPATH' ) == false ) {define( "ABSPATH", "../" ); }