HI-TRANSFER

HIGH LEVEL TRANSFER

Tampilkan postingan dengan label wordpress. Tampilkan semua postingan

Minggu, 25 Oktober 2009

How To Install WordPress Locally Under Windows XP

Tidak ada komentar :
1.Get XAMPP lite for Windows and install it. ( C:\Program Files\xampp )

2.Browse to C:\Program Files\xampp and double click setup_xampp.bat.

Now you can see the screen like this:



3.After that, double click xampp-control.exe.

xampp-control panel will open:


4.Now start the Apache and Mysql services.


5.Open your internet browser and type http://localhost/ and press enter.From the menu on the left column, choose your preferred language.

6.Now click on phpMyAdmin.


6.Enter "wordpress" (without quotes) in the "Create New Database" Field, and select utf8_unicode_ci in the drop down box in the next field.


Click on Create. The Xampp setup is now complete.


7.Download Wordpress and unzip it under C:\Program Files\xampp\htdocs.


8.Now go to C:\Program Files\xampp\htdocs\wordpress.you can see a file named wp-config-sample.php. Open it in notepad or other text editor and replace the default values as below. Save the file as wp-config.php (under the same folder).


// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wordpress');

/** MySQL database username */
define('DB_USER', 'root');

/** MySQL database password */
define('DB_PASSWORD', '');

/** MySQL hostname */
define('DB_HOST', 'localhost');


9.Open your browser and go to http://localhost/wordpress/wp-admin/install.php , follow the instructions and you are done.

To Stay Updated With Our Site Subscribe To RSS Feed !!!

Kamis, 24 September 2009

How To Change Wordpress Permalink Structure For Better SEO

Tidak ada komentar :
By default WordPress uses URLs containg a question mark and numbers for your permalinks and archives such as �http://yoursite.com?p=123". In order to increase keyword density of your site for better SEO, You must change that setting to a custom permalink structure.

In your WordPress admin area, click �Options� and then click �Permalinks�.

Select �custom� in the Customize Permalink Structure area and in the box next to �custom� enter this:

/%category%/%postname%

This will create URLs for your permalinks and archives that would look like this:

http://yoursite.com/yourcategory/title-of-your-post

Click �Update Permalink Structure� to save above setting.

Now you are done.

Selasa, 25 Agustus 2009

How To Add "Share On Twitter" Button to Wordpress

Tidak ada komentar :
It is very simple.Copy below code and paste it on your single.php file, within the loop:

<a href="http://twitter.com/home?status=Currently reading <?php the_permalink(); ?>" title="Click to send this page to Twitter!" target="_blank">Share on Twitter</a>


Now you are done.It will look this: