it's still don't work chris :( .... I think I know where the mistake, ABSPATH should be "/home/sujsu537/public-html/news/" not "/home/suu537/public-html/news/" You can see in the picture that I attach previously. so where do I have to fix? thank's.....
If you edit config.php, towards the top you'll see where ABSPATH is defined, comment it out and replace it with your own path something like this
if(!defined('ABSPATH')){
#define('ABSPATH', dirname(__FILE__) . '/' );
define('ABSPATH', '/home/sujsu537/public_html/news/');
}
[solve] i'm edit main.php, in the top of script i see where ABSPATH is defined, i'm replace it with my own like this :
session_name('n13news');
session_start();
$dirname = dirname(__FILE__);
$dirname = str_replace('js', '', $dirname);
#if(!defined('ABSPATH')){
#define('ABSPATH',$dirname);
if(!defined('ABSPATH')){
define('ABSPATH','/home/sujsu537/public_html/news/');
}
my dropdown menu in system now can be open, thank chris for your advice and your help...
