Install Joomla 1.5.x di Slackware 12.1

To the point aja yach :P

  • Download joomla terbaru di http://www.joomla.org/download.html
    Anda akan menemukan 1.5.8 Full Package.

    Oke, ekstrak file format zip. Sudah tahu caranya ? Anda dapat menggunakan fasilitas ekstrak pada konqueror untuk mudahnya.
    Atau $unzip Joomla_1.5.8-Stable-*.zip
    Kemudian buat folder (misal /var/www/joomlax )dan kopikan semua file hasil ekstrak tersebut.

  • Database.
    Jadi root, kemudian install pertama kali master database
      #mysql_install_db --user=mysql

    Oke, ubah ijin rc.mysqld jadi 755. Biar bisa dieksekusi saat start.

      #chmod 755 /etc/rc.d/rc.mysqld

    Start MySQL :)

      #/etc/rc.d/rc.mysqld start

    Beri password root nya mysql

      #mysqladmin -u root password 'passAnda'

    Buat database joomlax (nama database Anda. Boleh yg lain)

      # mysqladmin -u root -p create joomlax

    Masuk ke mysql buat atur privileges :

      # mysql -u root -p
      mysql> GRANT ALL PRIVILEGES ON joomlax.* TO apache@localhost IDENTIFIED BY 'passAnda';
      Query OK, 0 rows affected (0.00 sec)

    Flush dulu supaya konfigurasi baru diterima.

      mysql> flush privileges;
      Query OK, 0 rows affected (0.01 sec)

    Oke, bisa quit dengan mengetikkan quit

  • Apache Web Server (Edit file /etc/httpd/httpd.conf)
      ServerName localhost:80 #Nama server ANda

    Edit nama folder Anda di dokumentroot :

      DocumentRoot "/var/www/joomlax" #Folder joomla Anda.
      < Directory "/var/www/joomlax">
      Options Indexes FollowSymLinks
      AllowOverride None
      Order allow,deny
      Allow from all
      < /Directory>

    Tambahkan index.php.

      < IfModule dir_module> #Tentu Anda menjalankan index.php :P
      DirectoryIndex index.html index.php
      < /IfModule>

    Hilangkan tanda # dibagian ini :

      Include /etc/httpd/mod_php.conf #Jangan lupa hilangkan tanda # agar php dapat jalan. Jangan lupa save yach !

    Oke, chmod dulu ya rc.httpd

      #chmod 755 /etc/rc.d/rc.httpd

    Jalankan httpd Apache

      # apachectl -k start

  • Persiapan :)
      Buat file configuration di folder web joomla Anda.
      #touch /var/www/joomlax/configuration.php
      #chmod 777 /var/www/joomlax/configuration.php
  • Ujicoba :
  • Setelah semua proses selesai...(semoga lancar klik mouse Anda hehe), jangan lupa untuk meremove direktory installation di folder web Anda. Jangan lupa pula, ubah kembali ijin file configuration.php menjadi 644.

  • Beberapa gambar :P
  • joom1joom1
    joom2joom2
    joom3joom3
    joom4joom4
    joom5joom5
    joom6joom6
    joom7joom7

    Catatan: Instalasi dilakukan di komputer lokal dengan ASUMSI untuk belajar dan bersenang2 :) Benar2 perhatikan faktor keamanan jika joomla Anda dipublis untuk publik. Atau... Anda akan jadi Joomblo hehe.

    Oke, semoga sukses :)

    Salam.