what is use of “@” in php

@ is error controller operator in php.if we add this operator before any expression or function then any error generated by that expression or function will be ignored. eg : (1)include(‘a.php’); Warning: include(a.php) [function.include]: failed to open stream: No such file or directory (2)@include(‘a.php’); no error or warning

Read More
 
 
 
 
 

How to rewrite url in Phpfox

(1)find htaccess.txt file in root directory (2)rename it .htaccess (3)now open server.sett.php file (includesettingserver.sett.php) (4)find $_CONF[‘core.url_rewrite’] = ‘2’; (5)replace it with $_CONF[‘core.url_rewrite’] = ‘1’; (6)save file and clear cache from admin    

Read More