IGOS Nusantara dan Wordpress: Perbedaan revisi
Dari IGNwiki
(→Konfigurasi /etc/wordpress/wp-config.php) |
|||
(9 revisi antara oleh pengguna yang sama tidak ditampilkan) | |||
Baris 1: | Baris 1: | ||
Wordpress adalah salah satu content | Wordpress adalah salah satu content | ||
− | Pasang | + | == Pasang == |
# yum install wordpress | # yum install wordpress | ||
+ | == Ubah alias == | ||
+ | Secara default akan diakses melalui URL http://localhost/wordpress/ | ||
+ | Jika ingin diakses melalui URL http://localhost/blog/ lakukan perubahan pada berkas /etc/httpd/conf.d/wordpress.conf | ||
− | Jalankan ulang httpd | + | '''SEMULA''' |
+ | # Berkas: /etc/httpd/conf.d/wordpress.conf | ||
+ | Alias /'''wordpress''' /usr/share/wordpress | ||
+ | |||
+ | '''MENJADI''' | ||
+ | # Berkas: /etc/httpd/conf.d/wordpress.conf | ||
+ | Alias /'''blog''' /usr/share/wordpress | ||
+ | |||
+ | == Buat database == | ||
+ | Gunakan phpMyAdmin, klik tab SQL atau http://localhost/phpmyadmin/server_sql.php Laku copy paste tiga baris perintah di bawah ini: | ||
+ | create database blogSaya; | ||
+ | grant all privileges on blogSaya.* to blogSaya@"localhost" identified by 'rhsDongY4'; | ||
+ | flush privileges; | ||
+ | |||
+ | == Konfigurasi /etc/wordpress/wp-config.php == | ||
+ | '''LAMA''' | ||
+ | define('DB_NAME', 'putyourdbnamehere'); // The name of the database | ||
+ | define('DB_USER', 'usernamehere'); // Your MySQL username | ||
+ | define('DB_PASSWORD', 'yourpasswordhere'); // …and password | ||
+ | |||
+ | '''BARU''' | ||
+ | define('DB_NAME', 'blogSaya'); | ||
+ | define('DB_USER', 'blogSaya'); | ||
+ | define('DB_PASSWORD', 'rhsDongY4'); | ||
+ | |||
+ | == Jalankan ulang httpd == | ||
# service httpd restart | # service httpd restart | ||
+ | |||
+ | == Setup Blog == | ||
+ | Jalankan Firefox lalu akses http://localhost/blog/ atau langsung http://localhost/blog/wp-admin/install.php | ||
+ | |||
+ | Isi: | ||
+ | * Blog Title: Jasmine Rhaya Blog | ||
+ | * Your E-mail: jr@suryana.or.id | ||
+ | |||
+ | Setelah sukses, akan dibuatkan: | ||
+ | * Username: admin | ||
+ | * Password: catat_password_acak_yg_dibuat_instaler | ||
+ | |||
+ | Lanjutkan konfigurasi sampai muncul Dashboard Wordpress. Sebaiknya password acak yang dibuat installer langsung diganti | ||
+ | |||
+ | == Akses Blog == | ||
+ | Dari Firefox akses http://localhost/blog/ |
Revisi terkini pada 30 Mei 2010 08.15
Wordpress adalah salah satu content
Daftar isi
Pasang
# yum install wordpress
Ubah alias
Secara default akan diakses melalui URL http://localhost/wordpress/ Jika ingin diakses melalui URL http://localhost/blog/ lakukan perubahan pada berkas /etc/httpd/conf.d/wordpress.conf
SEMULA
# Berkas: /etc/httpd/conf.d/wordpress.conf Alias /wordpress /usr/share/wordpress
MENJADI
# Berkas: /etc/httpd/conf.d/wordpress.conf Alias /blog /usr/share/wordpress
Buat database
Gunakan phpMyAdmin, klik tab SQL atau http://localhost/phpmyadmin/server_sql.php Laku copy paste tiga baris perintah di bawah ini:
create database blogSaya; grant all privileges on blogSaya.* to blogSaya@"localhost" identified by 'rhsDongY4'; flush privileges;
Konfigurasi /etc/wordpress/wp-config.php
LAMA
define('DB_NAME', 'putyourdbnamehere'); // The name of the database define('DB_USER', 'usernamehere'); // Your MySQL username define('DB_PASSWORD', 'yourpasswordhere'); // …and password
BARU
define('DB_NAME', 'blogSaya'); define('DB_USER', 'blogSaya'); define('DB_PASSWORD', 'rhsDongY4');
Jalankan ulang httpd
# service httpd restart
Setup Blog
Jalankan Firefox lalu akses http://localhost/blog/ atau langsung http://localhost/blog/wp-admin/install.php
Isi:
- Blog Title: Jasmine Rhaya Blog
- Your E-mail: jr@suryana.or.id
Setelah sukses, akan dibuatkan:
- Username: admin
- Password: catat_password_acak_yg_dibuat_instaler
Lanjutkan konfigurasi sampai muncul Dashboard Wordpress. Sebaiknya password acak yang dibuat installer langsung diganti
Akses Blog
Dari Firefox akses http://localhost/blog/