Ho w do i uploud files in Binaray Mode

3F72A12

New Member
Well i am new to this vBulletin stuff.In ever vBulletin download i see it says
Upload all files in BINARY mode.
Well can someone tell me how to do that and tell me how to do my config.php
 
Most FTP clients made in the last 10 years or so intuitively upload the files in either binary or ascii according to what is necessary for the particular file type, so unless you are using something really old, you shouldn't have to worry about it.

What is up with your config.php?
 
well when i open the intall/install.php and i go trough the steps.In step two it says this
Step 2) Connect to the database

Attempting to attach to database

Error description: mysql_connect() [function.mysql-connect]: Access denied for user 'root'@'localhost' (using password: NO) /home/a4045197/public_html/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.
Do you think u can help me or tell me what im doing wrong
 
You have not entered the database username and password into the config.php. Without seeing your config.php, that's all I know for sure at this point.

If you post your config.php, be sure to remove any site-specific information.
 
yo but i dount know how to fill up the config.php thing.So can someone put a quick tutorial plz or somthing that can help me
 
First step open up config.php and look for this

// ****** 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'] = 'PUT YOUR DATABASE NAME HERE';

where i have put 'PUT YOUR DATABASE NAME HERE' add your there

Then look for this

// ****** MASTER DATABASE USERNAME & PASSWORD ******
// This is the username and password you use to access MySQL.
// These must be obtained through your webhost.
$config['MasterServer']['username'] = 'root';
$config['MasterServer']['password'] = 'password';

Where it says root put the user name you used for the database do the same for your password then save it config.php
 
Back
Top