Author: Pixel Insert / Pixert

Change MAMP MySQL password
MAMP creates a local server environment on Mac OS X by installing Apache, PHP and MySQL right out of the box. The default username/password for MySQL install is root/root. That’s not safe. For security purposes, in our case we want sync between our WAMP and MAMP , it’s best to change that. Open the Mac…

Install Magento at localhost Windows with WAMP
Magento is one of the most popular ecommerce platforms available today. Many developer like to build websites, templates and applications on localhost. In this case, we are using WAMP as a server in WINDOWS OS. Magento requires itself to be installed on a host name at least one period ‘.’ in it, therefore installing to…

Add Facebook Like to WordPress
Facebook released Social Plugin in their recent F8 conference. It lets you see what friends have liked, commented on or shared on sites across the web. The Facebook button enables users to post pages from that site back to your Facebook profile with one click I added Facebook button manually to a client WordPress site.…

SSL Login for WordPress
It’s easy to secure WordPress with SSL. Add define(‘FORCE_SSL_LOGIN’,true); to wp-config.php after the SSL key installed in the server. You must add after /* That’s all, stop editing! Happy blogging. */ and before in wp-config.php the lock image courtesy of freecoloringpagefun.com

How to transfer cPanel accounts from one server to another cPanel server
The server we are transferring the accounts from : OLD SERVER The server to are transferring the accounts to : NEW SERVER PROCESS ON NEW SERVER 1. Log into WHM. If your server is a new server, create a main account. The main account is also your new server’s name servers (NS1 and NS2) .…
Compress files with Gzip and Zip in CentOS
Gzip Type the following command to compress a file at a shell prompt -> The file will be compressed and saved as filename.ext.gz Type the following command to expand a compressed file -> The filename.ext.gz is deleted and replaced with filename.ext Type the following command to compress multiple files at a shell prompt -> this…