Author: Pixel Insert / Pixert
Windows XP : Internet Connected but Can’t Browse Any Sites
Do the following step when Internet connected to your computer , but it can’t browse any site Resetting IP in Windows XP In Windows XP, use the following steps to reset the Internet Protocol: 1. Click Start 2. Click Run 3. Type cmd 4. Click Ok 5. In the Black Command Box Type: netsh int…
Fatal Error : Out of Memory in WordPress
WP_MEMORY_LIMIT option allows you to specify the maximum amount of memory that can be consumed by PHP. This setting may be necessary in the event you receive a message such as “Allowed memory size of xxxxxx bytes exhausted”. This setting increases PHP Memory only for WordPress, not other applications WordPress will automatically check if PHP has…
Install Favicon into a WordPress website
1. Upload favicon.ico to the theme directory, e.g wp-content/themes/twentyeleven 2. Open file header.php, add the following code between <head> and </head>
WordPress: Sorry, this file type is not permitted for security reasons.
Add the following code snippet to functions.php. Change ‘filetype’ to the file type that is not permitted for security reasons
Git Lesson : branch is ahead by x commits
If Git suddenly popup a warning, “branch is ahead by x commits”. You can do the following Switch to the branch, e.g it’s the Master branch Then, use Git Fetch to update the local copy of a remote branch Git fetch is similar to pull, except it won’t do any merging