-
Move Magento from one server to another
1. First of all take Back up your files. ( Go to your test site admin backend and refresh Cache by System > Cache Management. Then download and save the whole Magento shop root directory via File Manager or FTP tools ) 2. Export the Magento Database ( Enter your control panel “phpmyadmin” database area…
-
Remove index.php from Magento urls
Remove index.php from Magento In this article, we are going to see how to remove the index.php from the magneto URL on both frontend and backend. For example: http://example.com/index.php/admin/ to http://example.com/admin/ Before you start make sure that the Apache rewrite module is enabled on your server or contact your hosting provider to enable this feature,…
-
How to solve tinymce virus scanner issue: PUA.HTML.Infected.WebPage-1
Some virus programs detect js/tiny_mce/plugins/paste/js/pasteword.js as Infected file, to solve this issue, open the file and replace this line (8 th line) el.innerHTML = ‘<iframe id=”iframe” src=”javascript:\’\’;” frameBorder=”0″ style=”border: 1px solid gray”></iframe>’; With the following one: el.innerHTML = ‘<‘ + ‘iframe id=”iframe” src=”javascript:\’\’;” frameBorder=”0″ style=”border: 1px solid gray”></iframe>’;