Webmaster Forum
Go Back   Webmaster Forums UK SEO SEM Webmaster Community Forum - UKWW > Web Design and Website Development > Help and Tutorials for new Webmasters
Register FAQ Members List Downloads Calendar Today's Posts Webmaster Resources Webmaster Blogs

UK Web Hosting
UK Web Hosting
Website Hosting
Website Hosting
UK One Way
UK One Way
Free Website Thumbnail Creator
 
Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 04-12-2007, 02:28 PM
Senior Member
 
Join Date: Apr 2007
Posts: 120
iTrader: 0 / 0%
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
funkypilchard is on a distinguished road
Default How to install a blog?

Hello I thought it best to post here due to my severe lack of programming skills.

Hopefully this will be really useful to other beginners too.

I wish to install Wordpress blog. I have some basic questions if anyone has the time to help.

1. should my blog look like this once it is installed www. mywebsite.com/blog

2. where it says "fill in your database connection details." in the blog readme, I have the following 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

// You can have multiple installations in one database if you give each a unique prefix
$table_prefix = 'wp_'; // Only numbers, letters, and underscores please!

// 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', '');

/* That's all, stop editing! Happy blogging. */

define('ABSPATH', dirname(__FILE__).'/');
require_once(ABSPATH.'wp-settings.php');
?>


What would my database connection details be and where would I place them in the above code? do I need to create a mysql database from my control panel first?

3. It then tells me to "upload everything" should I create a new directory on my webspace like /new (blog) folder/ and just drag all of the contents out of the unzipped wordpress folder into the folder on my webspace called /blog/ via ftp.

Thanks in advance. (sorry for being so basic)
Digg this Post!Add Post to del.icio.usStumble this Post!Wong this Post!
Reply With Quote
  #2 (permalink)  
Old 04-12-2007, 03:41 PM
dhscott's Avatar
Senior Member
 
Join Date: Mar 2007
Posts: 138
iTrader: 0 / 0%
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
dhscott is a jewel in the roughdhscott is a jewel in the roughdhscott is a jewel in the roughdhscott is a jewel in the rough
Post Installing Wordpress

If you have a host which uses cPanel, you can use Fantastico to install Wordpress quickly and easily.

If you don't have cPanel with Fantastico, follow this guide: Installing Wordpress
__________________
X-8 Link Bidders, Ad Auctions & Bid for Position - Add your sites for as little as Ł1!
Digg this Post!Add Post to del.icio.usStumble this Post!Wong this Post!
Reply With Quote
  #3 (permalink)  
Old 04-12-2007, 04:23 PM
Member
 
Join Date: Mar 2007
Posts: 61
iTrader: 0 / 0%
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Nonactiveuser8999 is on a distinguished road
Send a message via Yahoo to Nonactiveuser8999
Default

If you can't install using the Codex Tutorial I will be happy to install it for you
Digg this Post!Add Post to del.icio.usStumble this Post!Wong this Post!
Reply With Quote
  #4 (permalink)  
Old 04-12-2007, 04:36 PM
Senior Member
 
Join Date: Apr 2007
Posts: 120
iTrader: 0 / 0%
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
funkypilchard is on a distinguished road
Default

hey thanks guys.. I do have cpanel, I will have a look at fantistico and if I get stuck I may come back to you
Digg this Post!Add Post to del.icio.usStumble this Post!Wong this Post!
Reply With Quote
  #5 (permalink)  
Old 04-12-2007, 05:57 PM
Senior Member
 
Join Date: Apr 2007
Posts: 120
iTrader: 0 / 0%
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
funkypilchard is on a distinguished road
Default

ok I looked at Fantastico and although very comprehensive it is also quite costly so I will try myself first using codex, one question I am using ZipDeploy to upload the files to my web space.

My computer runs windows xp but the cpanel on the web space is linux, should I download the windows version or linux version? thanks
Digg this Post!Add Post to del.icio.usStumble this Post!Wong this Post!
Reply With Quote
  #6 (permalink)  
Old 04-12-2007, 07:53 PM
Bagi Zoltán's Avatar
Boss Cart consultant
 
Join Date: Feb 2007
Location: Veszprém, Hungary
Posts: 1,554
iTrader: 9 / 100%
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Bagi Zoltán has much to be proud ofBagi Zoltán has much to be proud ofBagi Zoltán has much to be proud ofBagi Zoltán has much to be proud ofBagi Zoltán has much to be proud ofBagi Zoltán has much to be proud ofBagi Zoltán has much to be proud ofBagi Zoltán has much to be proud of
Default

All you need in order to succesfully install a word press is 4 data:
database name, database username, db password and the database host. In general the hosting providers send this information when they set up the user's account. If you don't have the you should request again. I don't really know cp but it's possible that you will find those info there as well. If you have them you should open the wp-config-sample.php file for editing. Set the data

('DB_NAME', 'yourdatabasenamecomeshere'); // The name of the database
define('DB_USER', 'yourdatabaseusernamecomeshere'); // Your MySQL username
define('DB_PASSWORD', 'yourdatabasepasswordcomeshere'); // ...and password
define('DB_HOST', 'yourdatabasehostcomeshere') /it's usually localhost.

As the next step you should save this file as wp-config.php. After finishing with it copy the content of the packaging directory via ftp to your server. Copy only the contant without the directory.

The last step will be installing by running the yourdomain.com/wp-admin/install.php file in your browser. Follow the steps and you will be happy
Digg this Post!Add Post to del.icio.usStumble this Post!Wong this Post!
Reply With Quote
  #7 (permalink)  
Old 04-12-2007, 08:57 PM
Senior Member
 
Join Date: Apr 2007
Posts: 120
iTrader: 0 / 0%
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
funkypilchard is on a distinguished road
Default

thanks both, this place is extremely useful
Digg this Post!Add Post to del.icio.usStumble this Post!Wong this Post!
Reply With Quote
  #8 (permalink)  
Old 04-13-2007, 06:36 PM
Senior Member
 
Join Date: Apr 2007
Posts: 120
iTrader: 0 / 0%
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
funkypilchard is on a distinguished road
Default

Quote:
Originally Posted by Bagi Zoltán View Post
All you need in order to succesfully install a word press is 4 data:
database name, database username, db password and the database host. In general the hosting providers send this information when they set up the user's account. If you don't have the you should request again. I don't really know cp but it's possible that you will find those info there as well. If you have them you should open the wp-config-sample.php file for editing. Set the data

('DB_NAME', 'yourdatabasenamecomeshere'); // The name of the database
define('DB_USER', 'yourdatabaseusernamecomeshere'); // Your MySQL username
define('DB_PASSWORD', 'yourdatabasepasswordcomeshere'); // ...and password
define('DB_HOST', 'yourdatabasehostcomeshere') /it's usually localhost.

As the next step you should save this file as wp-config.php. After finishing with it copy the content of the packaging directory via ftp to your server. Copy only the contant without the directory.

The last step will be installing by running the yourdomain.com/wp-admin/install.php file in your browser. Follow the steps and you will be happy
ok.. so, I already have one database with my website which is to do with it being e-commerce, should I use these existing details or.. should I create a new database specifically for the blog and if I do should I create an Access Host: (localhost) along with password etc?

I'm not sure what an access host is actually?

thanks
Digg this Post!Add Post to del.icio.usStumble this Post!Wong this Post!
Reply With Quote
  #9 (permalink)  
Old 04-13-2007, 06:53 PM
temi's Avatar
Facilitator
 
Join Date: Jun 2003
Location: London, England.
Posts: 11,423
iTrader: 16 / 100%
Thanks: 2
Thanked 8 Times in 1 Post
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
temi is just really nicetemi is just really nicetemi is just really nicetemi is just really nicetemi is just really nice
Send a message via ICQ to temi
Default

Nick,
Whenever you are installing and application that needs database, you MUST create a new database for that application, so you need to create a new database for Word Press and should you install another application that needs database you need to create yet another database for that application.

Thanks
__________________

* Build a shopping cart for your business with eCommerce software UK
* BossCart.com can build you a
Bespoke shopping cart
::
Add Eco sites to The Green Directory free of charge.
Digg this Post!Add Post to del.icio.usStumble this Post!Wong this Post!
Reply With Quote
  #10 (permalink)  
Old 04-13-2007, 07:10 PM
Senior Member
 
Join Date: Apr 2007
Posts: 120
iTrader: 0 / 0%
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
funkypilchard is on a distinguished road
Default

brilliant thanks.
Digg this Post!Add Post to del.icio.usStumble this Post!Wong this Post!
Reply With Quote
Reply

Bookmarks

Webmaster Resources
UK Web Hosting
UK WW SEO Tools
Free site submission
Web Directory
 
Advertisement
Get top 10 exposure
 
Site Of the Month
BizzFace
Nominate site of the month
 
Tag Cloud
2 columns admins wanted advice article submistion bbpress best site bid bidding directory blog post british telecom broadband butterflies community concentration digg directories submission directory directory network domain name dzone ecommerce ecommerce poll fibre optic forum forum posting free free download free hosting free web hosting generate revenue google google serps icq instant messenger intel internet spending james in london jokes link exchange linux and windows server microsoft mod modeling moderators wanted msn music online newbie not possible online retail online spending owg in london paid forum posting photography php reddit review review website scripts search engine seo site promotion social bookmarking special discount speed cameras submission thank you theme web hosting website of the month win a network

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
Forum Jump


Similar Threads
Thread Thread Starter Forum Replies Last Post
PR4 Real Estate - blog posts for sale - one year old blog stock_post Other Advertisements (Ads spaces such as banner, blogs and articles) 1 08-23-2007 09:44 AM
Free blog install on web hosting package temi Web Hosting 0 09-10-2006 09:17 PM
How to install jacky820 iG Shop 0 08-23-2004 11:04 AM
Install help (: mark73777 iG Shop 0 06-18-2004 03:25 AM
INSTALL :( Baykus iG Shop 0 10-04-2003 03:34 PM


All times are GMT. The time now is 12:04 PM.