Difference between revisions of "Wordpress Instalasi Smashing Multimedi Theme"

From OnnoWiki
Jump to navigation Jump to search
(New page: ==Pranala Menarik== * Instalasi Wordpress * Instalasi WP e-Commerce * Melihat Statistik Wordpress * Linux Howto * Aktifasi Wordpress Multisite * [[Wordpress Theme untu...)
 
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
==Aktifkan Mod Rewrite di Apache==
 +
 +
* Enable mod_rewrite di apache
 +
 +
sudo a2enmod rewrite
 +
 +
* Alternatif lain untuk enable mod_rewrite
 +
 +
vi /etc/apache2/sites-enabled/000-default
 +
 +
DocumentRoot /var/www
 +
<Directory />
 +
      Options FollowSymLinks
 +
      AllowOverride '''all'''
 +
</Directory>
 +
<Directory /var/www/>
 +
      Options Indexes FollowSymLinks MultiViews
 +
      AllowOverride '''all'''
 +
      Order allow,deny
 +
      allow from all
 +
</Directory>
 +
 +
* Restart Apache
 +
 +
/etc/init.d/apache2 restart
 +
 +
 +
==Download==
 +
 +
Download theme dari
 +
 +
http://www.smashingmagazine.com/2009/08/22/free-podcasting-video-and-photography-wordpress-theme/
 +
http://media.smashingmagazine.com/wp-content/uploads/images/multimedia-podcasting-photography-video-wordpress/multimedia-wordpress-theme.zip
 +
http://media.smashingmagazine.com/wp-content/uploads/images/multimedia-podcasting-photography-video-wordpress/multimedia-psd.zip
 +
 +
 +
 +
==Instalasi Smashing Multimedia==
 +
 +
Instalasi melalui perintah
 +
 +
apt-get install unzip
 +
cp multimedia-wordpress-theme.zip /var/www/wordpress/wp-content/themes
 +
cp multimedia-psd.zip /var/www/wordpress/wp-content/themes
 +
cd /var/www/wordpress/wp-content/themes
 +
unzip multimedia-wordpress-theme.zip
 +
unzip multimedia-psd.zip
 +
 +
 +
Akses melalui Web Wordpress, klik
 +
 +
Appearence > Managed Themes
 +
 +
Activate pada Theme yang di inginkan.
 +
 +
 +
 
==Pranala Menarik==
 
==Pranala Menarik==
  
 
* [[Instalasi Wordpress]]
 
* [[Instalasi Wordpress]]
 +
* [[Wordpress php.ini untuk VideoBlogging]]
 
* [[Instalasi WP e-Commerce]]
 
* [[Instalasi WP e-Commerce]]
 
* [[Melihat Statistik Wordpress]]
 
* [[Melihat Statistik Wordpress]]

Latest revision as of 10:43, 18 April 2012

Aktifkan Mod Rewrite di Apache

  • Enable mod_rewrite di apache
sudo a2enmod rewrite
  • Alternatif lain untuk enable mod_rewrite
vi /etc/apache2/sites-enabled/000-default
DocumentRoot /var/www
<Directory />
     Options FollowSymLinks
     AllowOverride all
</Directory>
<Directory /var/www/>
     Options Indexes FollowSymLinks MultiViews
     AllowOverride all
     Order allow,deny
     allow from all
</Directory>

  • Restart Apache
/etc/init.d/apache2 restart


Download

Download theme dari

http://www.smashingmagazine.com/2009/08/22/free-podcasting-video-and-photography-wordpress-theme/
http://media.smashingmagazine.com/wp-content/uploads/images/multimedia-podcasting-photography-video-wordpress/multimedia-wordpress-theme.zip
http://media.smashingmagazine.com/wp-content/uploads/images/multimedia-podcasting-photography-video-wordpress/multimedia-psd.zip


Instalasi Smashing Multimedia

Instalasi melalui perintah

apt-get install unzip
cp multimedia-wordpress-theme.zip /var/www/wordpress/wp-content/themes
cp multimedia-psd.zip /var/www/wordpress/wp-content/themes
cd /var/www/wordpress/wp-content/themes
unzip multimedia-wordpress-theme.zip
unzip multimedia-psd.zip


Akses melalui Web Wordpress, klik

Appearence > Managed Themes

Activate pada Theme yang di inginkan.


Pranala Menarik