helpmeplease1234 Posted September 5, 2006 Share Posted September 5, 2006 I am trying to install a script.It is asking many things, and I did good till the end.______________________________________________________________ // database param define('DB_TYPE', 'mysql'); define('DB_SERVER', 'localhost'); define('DB_USER', 'db_db'); define('DB_PASSWORD', 'db'); define('DB_DATABASE', 'db_db'); // set define('HOMEPAGE','http://yoursite.com/'); define('SITENAME','Your Site Name'); define('SHOWPIMP','ON'); //ON or OFF show left-topdefine('ROOT_DIR', realpath(dirname(__FILE__)));define('MP3FLASHLIST_DIR',ROOT_DIR."/uploads/playlist"); _____________________________________________________these last two I really have no idea?can you help me, Please???? ::) Quote Link to comment https://forums.phpfreaks.com/topic/19733-question-about-database-param/ Share on other sites More sharing options...
wildteen88 Posted September 5, 2006 Share Posted September 5, 2006 You mean these two:[code]define('ROOT_DIR', realpath(dirname(__FILE__)));define('MP3FLASHLIST_DIR',ROOT_DIR."/uploads/playlist");[/code]They should fine as they are. No need to tinker them. the only bit you might want to change is where it says '[i]"/uploads/playlist"[/i]'. WHat ever you are uploading will be uploaded to '[your sites root dir)/uploads/playlist' (http://yoursite.com/uploads/playlist) Quote Link to comment https://forums.phpfreaks.com/topic/19733-question-about-database-param/#findComment-86273 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.