close

Archive for the ‘CMS’ Category

instalasi virtuemart secara manual

Perlu di ketahui bahwa VirtueMart adalah Open Source aplikasi e-commerce, yang dikembangkan untuk CMS Joomla. Dibuat dalam format PHP, sehingga dapat terintegrasi ke dalam setiap website E-commerce Joomla.

Artikel ini akan memandu Anda melakukan proses instalasi VirtueMart secara manual melalui account hosting. Virtuemart sendiri hadir dalam 2 versi Complete Package untuk joomla 1.5.x dan 1.0.x dan pembahasan akan diawali dulu dengan cara men-download ekstension tersebut hingga ke cara meng-instalnya.

Langkah pertama :

Pertama anda perlu men-download lengkap manual instalasi paket VirtueMart yang tersedia di sini. Dan menyimpan paket-download ke hard drive anda.

Langkah kedua :

Mengekstrak arsip file “VirtueMart_Manual-Instalasi-Package_1.x.tar.gz” menggunakan WinRAR atau WinZip pada hard drive,  dan akan terlihat isi dari file tersebut seperti di bawah ini

* / Administrator
* / Komponen
* / Modul
* / Plugins   >> komponen virtuemart 1.5
* / Mambots >> komponen virtuemart 1.0
Terlihat merupakan bagian dalam struktur direktori pada instalasi Joomla.

Langkah Ketiga :

Mengupload file tersebut kedalam direktori joomla di account hosting Anda yang bisa dilihat panduan kami pada artikel mengenai cara upload file yang kami buat sebelumnya.

Secara detail bisa dilihat seperti dibawah ini

*/ Administrator
di upload ke file manager  / public_html/administrator /

*/ Komponen
di upload ke   / public_html/components /

*/ Modules
di upload ke   / public_html /modules /

Untuk  versi  Joomla! 1.5.x :
*/ Plugins
di upload ke    / public_html /plugins /

Untuk  versi Joomla! 1.0.x
*/ Mambots
di upload ke   / public_html /mambots /

Setelah semuanya terupload kemudian lanjut ke langkah berikutnya,

Langkah Keempat :

Login ke halaman backend administrator Joomla “”Http://www.namadomain.com/administrator/”" setelah login anda akan melihat url pada browser anda seperti dibawah ini

http://www.namadomain.com/administrator/index2.php    (pada  joomla 1.0.x)
http://www.namadomain.com/administrator/index.php      (pada  joomla 1.5.x )

yang perlu anda lakukan melakukan instalasi komponen secara manual dengan  menambahkan  “?option=com_virtuemart” setelah index2.php / index.php pada browser,

Contoh :
http://www.namadomain.com/administrator/index2.php?option=com_virtuemart atau,

http://www.namadomain.com/administrator/index.php?option=com_virtuemart

(Tekan enter)  Dan tunggulah beberapa saat sampai Anda melihat tampilan konfirmasi keberhasilan proses instalasi , bisa dilihat seperti di bawah ini

Di tampilan browser anda akan terlihat 2 pilihan
GO DIRECTLY TO THE SHOP“   jika ingin menuju masuk ke halaman toko/virtuemart
Atau
INSTALL SAMPLE DATA” jika Anda ingin memiliki beberapa contoh produk dan kategori

Langkah Kelima :

Masuk kehalaman phpmyadmin pada account hosting Anda dan pilih database untuk instalasi joomla tersebut. Pilih “SQL” pada toolbar di bagian tengah atas. Kemudian jalankan approriate SQL kode berikut :

Perlu diperhatikan !!!!

Untuk versi Joomla 1.0.x tambahkan/insert  pada table modules dan mambots ( dbprefix  jos_ )

PHP:

  1. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Module’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 1, ‘mod_virtuemart’, 0, 0, 1, , 0, 0);
  2. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Login’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_login’, 0, 0, 1, , 0, 0);
  3. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart TopTen Products’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_topten’, 0, 0, 1, , 0, 0);
  4. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Product Scroller’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_productscroller’, 0, 0, 1, , 0, 0);
  5. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Product Categories’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_product_categories’, 0, 0, 1, , 0, 0);
  6. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart All-In-One’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_allinone’, 0, 0, 1, , 0, 0);
  7. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Cart’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_cart’, 0, 0, 1, , 0, 0);
  8. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Featured Products’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_featureprod’, 0, 0, 1, , 0, 0);
  9. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Latest Products’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_latestprod’, 0, 0, 1, , 0, 0);
  10. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( The List ipod ‘VirtueMart Manufacturers’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_manufacturers’, 0, 0, 1, , 0, 0);
  11. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Random Products’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_randomprod’, 0, 0, 1, , 0, 0);
  12. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Search’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_search’, 0, 0, 1, , 0, 0);
  13. INSERT IGNORE INTO `jos_mambots` (`name`, `element`, `folder`, `access`, `ordering`, `published`, `iscore`, `client_id`, `checked_out`, `checked_out_time`, `params`) VALUES (‘VirtueMart Product Snapshot’, ‘vmproductsnapshots’, ‘content’, 0, 0, 0, 0, 0, 0, ’0000-00-00 00:00:00′, );
  14. INSERT IGNORE INTO `jos_mambots` (`name`, `element`, `folder`, `access`, `ordering`, `published`, `iscore`, `client_id`, `checked_out`, `checked_out_time`, `params`) VALUES (‘VirtueMart Search’, ‘virtuemart.searchbot’, ‘search’, 0, 0, 0, 0, 0, 0, ’0000-00-00 00:00:00′, );
  15. INSERT IGNORE INTO `jos_mambots` (`name`, `element`, `folder`, `access`, `ordering`, `published`, `iscore`, `client_id`, `checked_out`, `checked_out_time`, `params`) VALUES (‘VirtueMart Xtd Search’, ‘vmxsearch.searchbot’, ‘search’, 0, 0, 0, 0, 0, 0, ’0000-00-00 00:00:00′, );

Untuk versi Joomla! 1.5.x tambahkan pada table modules dan plugins ( dbprefix  jos_ )

PHP:

  1. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Module’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 1, ‘mod_virtuemart’, 0, 0, 1, , 0, 0);
  2. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Login’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_login’, 0, 0, 1, , 0, 0);
  3. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart TopTen Products’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_topten’, 0, 0, 1, , 0, 0);
  4. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Product Scroller’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_productscroller’, 0, 0, 1, , 0, 0);
  5. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Product Categories’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_product_categories’, 0, 0, 1, , 0, 0) Baja Beach Bums divx ;
    The Ruins movie
  6. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart All-In-One’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_allinone’, 0, 0, 1, , 0, 0);
  7. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Cart’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_cart’, 0, 0, 1, , 0, 0);
  8. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Featured Products’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_featureprod’, 0, 0, 1, , 0, 0);
  9. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Latest Products’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_latestprod’, 0, 0, 1, , 0, 0);
  10. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Manufacturers’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_manufacturers’, 0, 0, 1, , 0, 0);
  11. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Random Products’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_randomprod’, 0, 0, 1, , 0, 0);
  12. INSERT IGNORE INTO `jos_modules` (`title`, `content`, `ordering`, `position`, `checked_out`, `checked_out_time`, `published`, `module`, `numnews`, `access`, `showtitle`, `params`, `iscore`, `client_id`) VALUES ( ‘VirtueMart Search’, , 99, ‘left’, 0, ’0000-00-00 00:00:00′, 0, ‘mod_virtuemart_search’, 0, 0, 1, , 0, 0);
  13. INSERT IGNORE INTO `jos_plugins` (`name`, `element`, `folder`, `access`, `ordering`, `published`, `iscore`, `client_id`, `checked_out`, `checked_out_time`, `params`) VALUES (‘VirtueMart Product Snapshot’, ‘vmproductsnapshots’, ‘content’, 0, 0, 0, 0, 0, 0, ’0000-00-00 00:00:00′, );
  14. INSERT IGNORE INTO `jos_plugins` (`name`, `element`, `folder`, `access`, `ordering`, `published`, `iscore`, `client_id`, `checked_out`, `checked_out_time`, `params`) VALUES (‘VirtueMart Product Search’, ‘vmxsearch.plugin’, ‘search’, 0, 0, 0, 0, 0, 0, ’0000-00-00 00:00:00′, );

SEMOGA BERHASIL !!!!  : )

Upload WordPress (wp) ke hosting

Setelah Anda sudah lancar menggunakan Dashbor WordPress Anda dan puas dengan tampilan situs WordPress di PC lokal Anda, yang sudah Anda kostumisasi dan Anda tambahkan beberapa konten dan personalisasi, lalu apa yang akan kita lakukan? Memandangi situs Anda dengan penuh decak kagum, atau malah geleng-geleng kepala, lalu selesai dan menutup browser Anda? Tentu saja tidak kan? Kita perlu membuatnya bisa diakses oleh semua orang di Internet. Nah, di sini kita akan mengupload (memindahkan) website Anda dari server lokal ke online. Tentunya Anda sudah mempunyai pilihan server yang terbaik. Pastikan server Anda mempunyai fasilitas database MySQL dan mendukung script PHP. Pilihan server web dapat dibaca di “WordPress : Membuat Website dengan WordPress” bagian “Web Hosting”.

Sekarang kita mulai inti uploadnya. Upload ini maksudnya adalah memindahkan WordPress di server PC Anda (server lokal) ke server online (server sebenarnya). Jadi kita perlu mengubah beberapa konfigurasi, yaitu :

  1. mengedit file wp-config.php,
    King Arthur dvd
  2. mengekspor database dari server lokal,
  3. mengimpor database ke server online,
  4. upload file-file WordPress,
  5. mengedit tabel database untuk alamat URL.

The Changeling full movie

  1. Membuat Database di server Web Online

    Membuat database ini sama dengan cara membuat database yang sudah dibahas di “WordPress : Membuat Situs di Server Online” bagian “Membuat Database”. Pastikan Anda membuat database baru atau menggunakan database lama yang sudah kosong (sudah diapus isi databasenya). Lihat kembali artikel tersebut karena saya malas menulisnya lagi, hehe, maaf ya, bukan tanpa alasan hanya demi efektifitas waktu.

  2. Mengedit File wp-config.php di Server PC Lokal Anda

    Masih ingatkah Anda dengan file wp-config.php? Yang aslinya adalah wp-config-sample.php kemudian kita rename dan edit untuk menginstall WordPress di PC? Buka kembali file tersebut. Karena servernya akan dipindahkan berarti settingannya juga harus diedit dengan mengedit : ‘namadatabase’, ‘namapengguna’, ‘katasandi’, dan ‘localhost’ (nama localhost diganti dengan nama MySQL host yang diberikan server online Anda, atau biarkan default bila tidak ada. Jika dibiarkan default dan saat penginstallan wordpress tidak berhasil, kemungkinan Anda harus mengganti “localhost’ dengan nama host Anda).

  3. Ekspor Database dari Server Offline

    1. XAMPP Control Panel dijalankan
    2. Browser dijalankan, ketikkan http://localhost/phpmyadmin
    3. Dipilih database yang Anda gunakan untuk WordPress Anda. Dalam pelajaran sebelumnya kita membuat database dengan nama ‘dbwordpress’. klik nama database.
    4. Klik [Export]
    5. Tanpa banyak ba-bi-bu lagi, beri tanda pada [save as file] pada bagian bawah. Pastikan jenis file SQL terseleksi. Klik [Go]
    6. Browser akan mendownload file dbwordpress.sql yang Anda buat tadi. Simpan file sql tersebut untuk langkah selanjutnya.
    7. Eksport database selesai.
  4. Godsend video Import Database

    Blood and Bone film

    1. Masuklah ke Control Panel server online Anda.
    2. Klik phpMyAdmin
    3. Cari database yang sudah Anda buat sebelumnya. misalkan nama databasenya ‘username_namadb’.
    4. Terlihat bahwa database masih kosong. [Klik Import]
    5. Pada bagian “File to Import” Klik “Browse”, cari file dbwordpress.sql tadi, setelah itu klik [Go].
    6. Tunggu sampai proses upload sukses.
    7. Setelah import database sukses, kita siap mengupload file-file WordPress kita ke server online.
    8. Import database selesai.

    The Sentinel download

  5. Upload File-File WordPress

    Membuat folder khusus di server web online. Di bawah folder public_html atau htdocs buatlah folder misalnya “blog”. Untuk upload file-file ke server online Anda dapat menggunakan cPanel atau program FTP seperti FileZilla. cPanel seharusnya sudah disediakan server online Anda. Kalau FileZilla, Anda bisa mengunduhnya di http://filezilla-project.org.

    Install FilleZilla tersebut di PC. Cara menggunakannya cukup mudah seperti Anda menggunakan program Explorer yang lain. Untuk menyetelnya Anda tinggal mengisi Nama Host[Mesin:] dengan nama host Anda atau nama situs Anda (misalnya: www.domainAnda.com), Nama Pengguna[Username:] dengan username di server Anda, dan [Password:] dengan password untuk login ke cPanel. Untuk [Port:] biarkan tidak diisi.

    The Hurt Locker release

    Pindahkan (baca: upload) file-file WordPress (pastikan sudah mengandung file wp-config.php yang sudah diedit dengan benar) ke direktori public_html atau htdocs. Caranya sama seperti yang telah dibahas sebelumnya. File-file WordPress ini adalah yang terdapat pada server Offline Anda di direktori xampp\htdocs\wordpress. Dengan ‘wordpress’ dalam contoh ini adalah folder yang berisi file-file wordpress Anda, Anda bisa saja menggunakan nama yang berbeda kan? Jangan menggunakan file-file WordPress lain atau baru diunduh karena tidak akan klop dengan databasenya.

    The Fisher King movie

    Kalau memakai FileZilla, caranya lebih mudah tinggal copy/paste atau drag&drop. Kalau ukuran filenya cukup besar dan terdiri atas banyak file sebaiknya file-file itu dikompres dulu baru diupload dan dimekarkan di server. Cara itu dapat dipakai jika kita menggunakan File Manager cPanel.

    Upload file-file WordPress selesai.

  6. Mengedit Database MySQL di Server Online

    Inilah langkah terakhir yang paling penting. Kita harus mengedit database, yang dalam contoh tadi adalah database “username_namadb” supaya dapat terhubung dengan file-file WordPress kita. Kita hanya perlu mengubah URL, yang dalam contoh ini dari ‘http://localhost/wordpress’ menjadi ‘http://www.namawebsite.com/blog’. Jika langkah ini tidak dilakukan maka situs Anda tidak akan ditampilkan karena file-file WordPress dengan databasenya adalah ibarat dua sedjoli yang sudah tidak bisa dipisahkan. Langkah-langkah mengedit database :
    Jalankan phpMyAdmin di Control Panel. Klik nama database Anda, dalam contoh ini “username_namadb”. Pilih dan klik pada wp_options. Pada tampilan yang muncul klik [Browse]. Pada tabel yang ada editlah 2 hal :

    1. Editlah entri “siteurl” pada kolom “option_name”. Klik edit atau gambar pena untuk mengedit. Gantilah ‘option_value’-nya dengan “http://www.namawebsite.com/blog”. Info : Laws of Attraction movie download “www.namawebsite.com” adalah URL website Anda dan “blog” adalah folder tempat file-file WordPress berada.
    2. Editlah entri “Home” pada kolom yang sama. Jika Anda tidak menemukannya, klik tanda panah di bawah tabel. Cara mengeditnya sama dengan entri siteurl di atas.

Mynxx – April 2009 Joomla Template

* Virtuemart Integration
* Source Ordered Layout

The Sentinel

* RokBox Powered Position
* Mootools Dropdown Panels
* Assortment of Custom Extensions
* Multi-column Menu
* RokMoomenu, Suckerfish, Splitmenu menus
* 8 Preset Styles
* 15 Module Variations
* 30 Versatile Module Positions
* Stylish, Professional Typography
* FF3, Opera 9.6, Safari 3, IE6,7,8 Compatible
* W3C XHTML 1.0 Transitional. W3C CSS Valid

Virtuemart has never looked so good!

Mynxx is the first ever RocketTheme template to incorporate the popular Joomla ecommerce / shopping component, Virtuemart. This release incorporates the shopping extension in a variety of manners. Firstly, we provide a separate and specific Virtuemart theme that is installed straight into Virtuemart, and this theme overrides the core theming files of Virtuemart to allow for maximum control, perfect for creating a template. Secondly, we provide a series of modified virtuemart modules, such as the product scroller seen above, to diversify your shopping site. More Details…
video
Watch Virtuemart in Action!
A brief but insightful preview of the integrated Virtuemart features in this theme, from adding items to the cart through to the checkout procedure, plus more…
Watch Now!

Bleach: Memories of Nobody movie full

Source Ordered Layout

Month on month, we construct the templates to be optimised for SEO purposes. Mynxx introduces a source ordering layout, which, even the visual aspect of the template is left column, main column, right column, the actual code itself places the main column first. What does this mean for your site? Effectively, the search engine crawler will come across your main content first and process that. This is in contrast to the side columns, of which its content is not generally of the same calibre and focus as your main content. This is a major step forward and will improve your search engine results for your pages. More Details…

Javascript Effects

This release is filled with many javascript effects to give life to your site. Incorporated not just in modules, but in the Mynxx template itself and also the Mynxx Virtuemart theme. Notable examples are the Virtuemart Product Scroller seen above which scrolls through your items, either manually or automatically; and the dropdown boxes for Cart, Login and Font Style in the top tool bar (as part of the template); and also the quantity wheel in the Virtuemart theme‘s input boxes. A plethora of extra subtle, intuitive and interactive features to extend your site. More Details…

Mynxx Documentation

Get started using Mynxx with a wide variety of written and video tutorials explaining installation, configuration, custom modules, and much more More Details…

http://rapidshare.com/files/218714099/rt_mynxx_v1.52_full.rar