Category : PHP Website Peformance Wordpress
Category : PHP Website Peformance Wordpress
For increase website page load time and maximum throughput. I have listed following techniques to implement. Those will really help to get fast page load time of webpage. I have also mentioned some reference links for implement those techniques. Minify CSS Minify CSS – Always minify CSS code, it remove comments and white space. This Read More
It is very simple to configure wordpress multisite with sub-domain and sub directory. Do as follows. define(‘t2vhyu85e1_ALLOW_MULTISITE’, true); define( ‘MULTISITE’, true ); if($_SERVER[‘HTTP_HOST’]== ‘www.newsite.com’) { define( ‘SUBDOMAIN_INSTALL’, false ); } else{ define( ‘SUBDOMAIN_INSTALL’, true ); } $base = ‘/’; define( ‘DOMAIN_CURRENT_SITE’, ‘www.ask4solution.org’ ); define( ‘PATH_CURRENT_SITE’, ‘/’ ); define( ‘SITE_ID_CURRENT_SITE’, 1 ); define( ‘BLOG_ID_CURRENT_SITE’, 1 ); Read More
After installation of core wordpress if you want to setup wordpress multisite on same installation then do as follow. /* Multisite */ define(‘t2vhyu85e1_ALLOW_MULTISITE’, true); Wordpress will ask you setup multisite of two type… Sub – Domain Sub Dir Select Sub-Domain type as it required for setup different domain. After wordpress network setup correctly logout and Read More