smarty Clear cache For Smarty version 2 [code lang=”php”] $smarty->clear_all_cache(); [/code] For Smarty version 3 [code lang=”php”] $smarty->clearAllCache(); [/code] Since ...
Simple steps to Add project on Github [code lang=”php”] //<strong>Step 1</strong> Initialize the local directory as a Git repository $ ...
Use following code for 404 redirect in .net website Add below code in your web.config file [code] <customErrors mode="RemoteOnly" defaultRedirect="your_redirect_url" redirectMode="ResponseRewrite"> ...