vBulletin v3.7.2 انسٹالیشن پرابلم

راجہ صاحب

محفلین
بسم اللہ الرَّحْمٰن الرَّحِیْم ہ
السلام علیکم ورحمۃ اللہ و برکاتہ


میں vBulletin v3.7.2 کو یونی سرور5۔3 میں انسٹال کرنا چاہ رہا ہوں لیکن مجھے اس کی انسٹالیشن میں ذیل کے ایرر کا سامنا ہے جو کہ شاید config.php کو صحیح ایڈٹ نا کر سکنے کی وجہ سے ہے کیا کوئی دوست config.php کو ایڈٹ کر کے دے سکتا ہے


Step 2) Connect to the database

Attempting to attach to database

Error description: mysql_connect() [function.mysql-connect]: Access denied for user 'ODBC'@'localhost' (using password: NO) W:\www\upload\includes\class_core.php on line 311

The database has failed to connect because you do not have permission to connect to the server. Please confirm the values entered in the 'includes/config.php' file.
.
 

نبیل

تکنیکی معاون
آپ کسی سے فائل ایڈٹ کروانے کی بجائے خود ایڈٹ کر لیں تو بہتر ہوگا۔ ایرر میج سے لگ رہا ہے کہ آپ نے config.php میں ڈیٹابیس کا یوزر نیم یا پاسورڈ درست فراہم نہیں کیا ہے۔
 

راجہ صاحب

محفلین
آپ کسی سے فائل ایڈٹ کروانے کی بجائے خود ایڈٹ کر لیں تو بہتر ہوگا۔ ایرر میج سے لگ رہا ہے کہ آپ نے config.php میں ڈیٹابیس کا یوزر نیم یا پاسورڈ درست فراہم نہیں کیا ہے۔

جنابِ نبیل میں‌ نےاس طرح ایڈیٹ کیا ہے
$config['database']['mysql'] = 'mysql';

// ****** database name ******
// this is the name of the database where your vbulletin will be located.
// this must be created by your webhost.
$config['database']['vb'] = 'forum';

// ****** table prefix ******
// prefix that your vbulletin tables have in the database.
$config['database']['tableprefix'] = '';

// ****** technical email address ******
// if any database errors occur, they will be emailed to the address specified here.
// leave this blank to not send any emails when there is a database error.
$config['database']['rajapak@gmail.com'] = 'dbmaster@example.com';

// ****** force empty sql mode ******
// new versions of mysql (4.1+) have introduced some behaviors that are
// incompatible with vbulletin. Setting this value to "true" disables those
// behaviors. You only need to modify this value if vbulletin recommends it.
$config['database']['force_sql_mode'] = false;



// ****** master database server name and port ******
// this is the hostname or ip address and port of the database server.
// if you are unsure of what to put here, leave the default values.
$config['masterserver']['localhost'] = 'localhost';
$config['masterserver']['80'] = 3306;

// ****** master database username & password ******
// this is the username and password you use to access mysql.
// these must be obtained through your webhost.
$config['masterserver']['root'] = 'root';
$config['masterserver']['root'] = '';

// ****** master database persistent connections ******
// this option allows you to turn persistent connections to mysql on or off.
// the difference in performance is negligible for all but the largest boards.
// if you are unsure what this should be, leave it off. (0 = off; 1 = on)
$config['masterserver']['usepconnect'] = 0;

لیکن اس جگہ مجھے سمجھ نہیں‌ لگ رہی

// ****** slave database configuration ******
// if you have multiple database backends, this is the information for your slave
// server. If you are not 100% sure you need to fill in this information,
// do not change any of the values here.
$config['slaveserver']['servername'] = '';
$config['slaveserver']['port'] = 3306;
$config['slaveserver']['username'] = '';
$config['slaveserver']['password'] = '';
$config['slaveserver']['usepconnect'] = 0;



 

فخرنوید

محفلین
کوڈ:
	[LEFT]//	****** SLAVE DATABASE CONFIGURATION ******
	//	If you have multiple database backends, this is the information for your slave
	//	server. If you are not 100% sure you need to fill in this information,
	//	do not change any of the values here.
[COLOR="Red"]$config['SlaveServer']['servername'] = 'localhost';
$config['SlaveServer']['port'] = 3306;
$config['SlaveServer']['username'] = 'urdu_forum'; // your hosting username and your database created
$config['SlaveServer']['password'] = 'urduweb';[/COLOR][/LEFT]

درج بالا کوڈ لائن 70 تا 77 ہے اس کو ایڈٹ کرنا ہے۔


اس کے بعد آپ 94 تا 102 لائن


کوڈ:
//	******** FULL PATH TO FORUMS DIRECTORY ******
	//	On a few systems it may be necessary to input the full path to your forums directory
	//	for vBulletin to function normally. You can ignore this setting unless vBulletin
	//	tells you to fill this in. Do not include a trailing slash!
	//	Example Unix:
	//	  $config['Misc']['forumpath'] = '/home/users/public_html/forums';
	//	Example Win32:
	//	  $config['Misc']['forumpath'] = 'c:\program files\apache group\apache\htdocs\vb3';
[COLOR="Red"]$config['Misc']['forumpath'] = '/home/users/public_html/forums';[/COLOR] // your forums directory name in hostings may be diffrent
 

فخرنوید

محفلین
کوڈ:
$config['Database']['dbtype'] = 'mysql';

	//	****** DATABASE NAME ******
	//	This is the name of the database where your vBulletin will be located.
	//	This must be created by your webhost.
$config['Database']['dbname'] = 'urdu_forum';

	//	****** TABLE PREFIX ******
	//	Prefix that your vBulletin tables have in the database.
$config['Database']['tableprefix'] = 'vbuletin_';

	//	****** TECHNICAL EMAIL ADDRESS ******
	//	If any database errors occur, they will be emailed to the address specified here.
	//	Leave this blank to not send any emails when there is a database error.
$config['Database']['technicalemail'] = 'rajapak@gmail.com';

لائن 26 تا 40
 
Top