UK Webmaster Talk - Online Marketing - SEO


 

Installing wordpress blog software (with no auto installers)

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 ...


Go Back   UK Webmaster Talk - Online Marketing - SEO > Webmaster Articles > Webmaster Articles/Tutorials > Programming Articles

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Notices

Reply

 

LinkBack Thread Tools Display Modes
Old 26-06-2005, 17:46   #1 (permalink)
Moderator
 
Join Date: Jan 2005
Location: post is there >>
Posts: 1,586
iTrader: 0 / 0%
robertall is just really nice
Send a message via AIM to robertall Send a message via MSN to robertall
Default Installing wordpress blog software (with no auto installers)

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 3 from "wordpress" to "robert_wordpress2"
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');
?>
On line 6 you will not need to change, you only change this if you are using a remotly hosted mySQL database, in that 1% chance, just change it to the host that is hosting the database.

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!
robertall is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Tags
auto, blog, installers, installing, software, wordpress

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

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


All times are GMT +1. The time now is 17:24.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
UK Webmaster Forum © WebmasterTalk.co.uk | Design by Forbairt

Ad Management by RedTyger

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41