This is a discussion on Installing wordpress blog software (with no auto installers) within the Programming Articles forums, part of the Webmaster Articles/Tutorials category; Installing wordpress First go to mySQL databases in cpanel, then you create a database, lets name it robert_wordpress2. Then create ...
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| | #1 (permalink) |
| Moderator | Installing wordpress First go to mySQL databases in cpanel, then you create a database, lets name it robert_wordpress2. Then create a user, lets name it "robert_robert" and a password of "1337" This is what the code looks like in wp-config-sample.php". Code: <?php
// ** MySQL settings ** //
define('DB_NAME', 'wordpress'); // The name of the database
define('DB_USER', 'username'); // Your MySQL username
define('DB_PASSWORD', 'password'); // ...and password
define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value
// Change the prefix if you want to have multiple blogs in a single database.
$table_prefix = 'wp_'; // example: 'wp_' or 'b2' or 'mylogin_'
// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-includes/languages.
// For example, install de.mo to wp-includes/languages and set WPLANG to 'de'
// to enable German language support.
define ('WPLANG', '');
/* Stop editing */
define('ABSPATH', dirname(__FILE__).'/');
require_once(ABSPATH.'wp-settings.php');
?>
Change line 4 from "username" to "robert_robert" Change line 5 from "password" to "1337" So that it looks like the below Code: <?php
// ** MySQL settings ** //
define('DB_NAME', 'robert_wordpress2'); // The name of the database
define('DB_USER', 'robert_robert'); // Your MySQL username
define('DB_PASSWORD', '1337'); // ...and password
define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value
// Change the prefix if you want to have multiple blogs in a single database.
$table_prefix = 'wp_'; // example: 'wp_' or 'b2' or 'mylogin_'
// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-includes/languages.
// For example, install de.mo to wp-includes/languages and set WPLANG to 'de'
// to enable German language support.
define ('WPLANG', '');
/* Stop editing */
define('ABSPATH', dirname(__FILE__).'/');
require_once(ABSPATH.'wp-settings.php');
?>
You only edit the rest if you need to go more advanced. The final thing you do is go to admin control panel and make the content for the website. Then you go to Wp_admin/install.php You will get an error on line 15, i tryed to fix it, and i had an error, so you will have to leave that for how. On step 2 of the install, enter your wordpress title and your e-mail. Then you have finished installing the script, and then you log in using "admin" and the password which is randomly generated.
__________________ Free .org domain - Click for details! Do not pm asking for things. My inbox is full. Add me to MSN! |
| | |
| Tags |
| auto, blog, installers, installing, software, wordpress |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| PR5 blog lifetime blog post link $3 | lushdigital | Buy and Sell Ad Space | 1 | 14-07-2007 07:37 |
| Adsense In Wordpress? | rustypaulin | Php and MySQL | 4 | 26-08-2005 12:18 |
| PR4 Car/Auto Domain | Wistow | Domain Names For Sale | 8 | 24-07-2005 12:09 |
| Moving wordpress | FrozenDice | Website Development Forum | 1 | 10-07-2005 08:19 |
| Cpanel/WHM Auto Form | KF1 | Php and MySQL | 15 | 07-07-2005 16:43 |