by Shashi Dhar Kumar | Jun 9, 2014 | Magento, MySQL, Open-Source, PhpMyAdmin, Programming
Moving magento site from subdomain to main domain (and vice-versa) is quite easy. And you can do it by two different way and you will feel it is more easy when you go through how to do it. Process I: You need to do as per following steps to achieve this: STEP 1: Go to...
by Shashi Dhar Kumar | May 18, 2014 | HTACCESS, JavaScript, MySQL, Open-Source, PHP, Ubuntu, Unix OS, Windows
What is Security? Fundamentally, security is not about perfectly secure systems. Such a thing might well be impractical, or impossible to find and/or maintain. A secure server protects the privacy, integrity, and availability of the resources under the server...
by Shashi Dhar Kumar | Aug 22, 2013 | HTACCESS, Open-Source, PHP, Unix OS
Execute Cron Job in Cpanel using PHP script. In cpanel the following will also work: Execute code every minute(Server Time) using following code: * * * * * php -q /home/serverpath/file.php Execute code every five minute(Server Time) using following code: */5 * * * *...
by Shashi Dhar Kumar | Mar 11, 2012 | Open-Source, Programming, WordPress
Open “function.php” add the following code to add new custom post type : <?php add_action(‘init’, ‘featured_post_register’); function featured_post_register() { $labels = array( ‘name’ => _x(‘Featured...
by Shashi Dhar Kumar | Mar 7, 2011 | Open-Source, PHP, Programming
How to change the XAMPP server port number Why do we need to change the port number? It is very common that a web developer needs to have multiple web servers running, all at the same time. For example, an XAMPP server can be used to run the local wordpress, while a...
by Shashi Dhar Kumar | Mar 2, 2011 | Open-Source, PHP, Programming, SQL Server
How to create new user in PhpMyAdmin at localhost? Go to phpmyadmin at your localhost if you are using xampp server than go with http://localhost/phpmyadmin or if you are using easyphp than go with http://127.0.0.1/phpmyadmin Now you can see different links related to...