-
Call to undefined function get_magic_quotes_gpc()
get_magic_quotes_gpc function gets the current configuration setting of magic_quotes_gpc magic_quotes_gpc function is used to set the magic_quotes state for GPC (Get/Post/Cookie) operations. When magic_quotes are on, all ‘ (single-quote), ” (double quote), \ (backslash), and NULL’s are escaped with a backslash automatically. This feature(magic_quotes_gpc) has been DEPRECATED as of PHP 5.3.0 and REMOVED as of…
-
How to disable direct access to joomla’s xml and ini files
To disable the direct access to xml and ini files, just add the following codes to your server root htaccess file: <FilesMatch “.(ini|xml)$”> order allow,deny deny from all </FilesMatch>
-
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>’;