Posts

SEF Url pada web Joomla yang di instal pada direktori

Seperti posting saya pada forum sebelah untuk membuat SEF Url pada Joomla 1.5, 2.5, 3.0 yang di instal pada direktori, berikut tulisan saya: https://forum.sigsiu.net/sefseo-(sobisef-plugin)/(solved)-how-to-remove-index-php-from-urls/msg179483/#msg179483 Re: [SOLVED] How to remove '/index.php/' from URLs « Reply #7 on: Today at 04:26:27 » QuoteModify Hi Bro / Sist Sylvia Just open your .htaccess file Make sure that: .. .. # Options +FollowSymLinks  .. .. # RewriteEngine On  .. .. commented (#) Then edit: # RewriteBase /  to: RewriteBase /directorynameyouhavemade/  save your .htaccess file and refresh your browser. Done...

Export Product Prestashop 1.4 SQL Script

Use this sql query to get almost everything you could need (or be able to import back into PrestaShop.) The things this query lacks is: multiple categories for multiple products, tags, image urls, discount amount, discount percent, discount from and discount to. SELECT p.id_product AS 'ID', p.active AS 'Active (0/1)', pl.name AS 'Name', p.id_category_default AS 'Default Category', p.price AS 'Price tax excl.', p.id_tax_rules_group AS 'Tax rules ID', p.wholesale_price AS 'Wholesale price', p.on_sale AS 'On sale (0/1)', p.reference AS 'Reference #', p.supplier_reference AS 'Supplier reference #', sl.description AS 'Supplier', ml.description AS 'Manufacturer', p.ean13 AS 'EAN13', p.upc AS 'UPC', p.ecotax AS 'Ecotax', p.weight AS 'Weight', p.quantity AS 'Quantity', pl.description_short AS 'Short description', pl.description ...

Pencarian Sub Stings Prestashop 1.5.x

Fungsi Search pada prestashop 1.5.x tidak memungkinkan kita melakukan pencarian untuk phrase yang berada di tengah kata. Jadi jika ada produk bernama "Indonesia" maka kita bisa mencarinya hanya jika kita mengetikkan kata "indonesia", "indo", "indone" atau yang lainnya dan harus dari karakter pertama kata. Tetapi jika kita mencari dengan mengetikkan "ndone", "nesia", "esia" maka produk "Indonesia" tidak akan muncul. Hal tersebut biasa disebut Sub String . Nah saya akan membagikan cara agar kita bisa mencari kata-kata potongan dari tengah pada produk kita yang ada pada CMS prestashop kita. Berikut caranya... Mohon maaf saya pertahankan seperti artikel aslinya supaya tidak hilang sense nya hehehe... /************************** Then, you can modify the file (.../classes/search.php) to substring all the searches with (%) variable or whatever you want. From line 190 to 197 AND sw.word LIKE      ...

Tidak bisa tambah foto dan element html pada konten Joomla 3

SOLVE PROBLEMS WITH MAGIC QUOTES IN JOOMLA 3 CMS  Have you tried to install Joomla 3 and then having problems inserting images in articles and pages? One reason for such a mistake, is if magic quotes is set to On in the PHP settings. In this article I will try to explain the problem and how to solve it.  Description of the problem  The problem is that when you upload images and insert them into Joomla 3 articles (or pages), the code \" is added to the HTML code of the images. Actually \" is added every time you insert a HTML code containing the character “, which almost all HTML contains.  Reason for the problem  The reason why this happens is that the PHP setting magic quotes is turned On. It is a setting for PHP, that was originally developed to prevent beginners of entering bad code.  So some characters (“, ‘, \ and NULL) was replaced with a \.  However this setting caused more problems for users of PHP, than it solv...

Joomla Admin Pop Up / Image Button not Work

Saya mendapatkan informasi ini langsung dari forum Joomla karena saya pusing habis upgrade koq malah halaman adminnya tombol-tombol Pop Up nya tidak ada yang berfungsi. Ga usah pake lama-lama, silakan di baca dan di pahami dengan seksama dan dalam tempoh yang sesingkat-singkatnja... :) Ini adalah rekaman singkat percakapan antara joomla user: http://forum.joomla.org/memberlist.php?mode=viewprofile&u=678654 dengan joomla master volunteer: http://forum.joomla.org/memberlist.php?mode=viewprofile&u=37 ==== After automatic upgrade from 2.5.6 to 2.5.7 I have popups in admin area not working - link "parameters" in article manager, in Phoca Download manager. Instead of popup they link to no-style page from where nothing can be done - neither save nor close. Thanks for help in advance. ==== Make sure the database has been updated to reflect the changes from the update(s) Go to the Extensions=>Extension Manager->Database tab CLICK the Fix button (top right toolbar)...

Membuat Multistore dengan Prestashop

Image
Salah satu fitur Prestashop 1.5 adalah multistore yang memungkingkan kita untuk membuat beberapa jenis toko sekaligus yang ada pada sebuah website.. Penasaran dengan fitur tersebut, silakan baca tutorialnya melalui link: http://doc.prestashop.com/display/PS15/Managing+multiple+shops atau baca bisa juga membacanya melalui artikel di bawah ini. Managing multiple shops One of the main features PrestaShop 1.5 is called "multistore", meaning the ability to manage multiple shops from the same back-office. Thanks to this feature, you can manage many customized shops, which share many common elements. For more efficiency, you can even create groups of shops. How to decide if you need the multistore feature You can find yourself wanting to use the multistore feature, where in fact it is not necessary. For instance, if you want a multilingual shop, or if you need to use more than one currency, or if you would like to have a different graphic template for each category. H...