<?php require(‘wp-blog-header.php’); ?> <?php get_header(); ?> <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1- transitional.dtd”> <html xmlns=”http://www.w3.org/1999/xhtml”> <head profile=”http://gmpg.org/xfn/11″> <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo (‘charset’); ?>” /> <title><?php bloginfo(‘name’); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title> <?php wp_head(); ?> </head> <body> It works! </body> </html> <?php get_footer(); ?>Read More →

RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !^/(file|member|photo) [NC] RewriteRule . /index.php [L] RewriteRule ^member/([0-9]+)/ /member_profile.php?m=$1 RewriteRule ^file/([0-9]+)/(.+)? /file.php?f=$1 RewriteRule ^photo/([^/]+)/([^/]+)/(.+)? /file.php?type=$1&ref_id=$2&photo=1Read More →

Due to the number of spammers using port 25 to send emails, many large ISPs has blocked this port from their network. This means if your client is behind their network and try to connect to your company mail server on port 25 to send email, it will be blocked. We can’t ask the ISP to unblock it, so our solution is to create an additional port on our server so that our client can connect to that port instead of 25 to send email. If you are using WHM, it’s very easy, follow these steps below: Login into your server’s WHM (https://[main server IPRead More →

A user came to me with this laptop, he said his powerpoint is not working, when he open an existing powerpoint, it’s very slow to load that powerpoint. I tried all my troubleshootings, clear MS office Temp files, remove add-ins , repair , re-install MS Office, but it still didn’t work. My last try was to create a new windows profile for him, and it worked perfectly. So, my thought is: if user is having problem with Office, creating a new profile for him/her is the best way. It might take more time, but it should work.Read More →

If you are looking for a good software to recover files, this is a good software: DMDE – DM Disk Editor and Data Recovery Software http://dmde.com/ I have successfully recover many disks having problem with its file system. I can recover NTFS , EXT3/4 on linux.Read More →

I need to run some PHP scripts in the background, this script should still run while i log off my SSH session. I first try php myscript.php & It run in the background, but then when my SSH ends, the job will be also suspended. After some research, finally, i found that i can use nohup command to do this job, it’s very simple nohup php myscripts.php & Remember to add & at the end of the script. If you want to check if it’s actually runnning, use this commmand jobs -lRead More →

Today i tried to update a driver for my USB Storage, the installation seems OK, but after it finished, i couldn’t use keyboard/mouse any longer. I know that my new driver has caused the problem. I rebooted the machine, try to login to safe mode with the hope to uninstall this bad driver. Unfortunately, the safe mode boot ok, but i still can’t use keyboard/mouse when i saw the login screen. I rebooted the machine as normal again, the windows booted fine. My thought: i can’t use keyboard/mouse physically, but the machine boots normally, so might be i can connect it from a different machineRead More →

It’s because they use 2 different SSL certificates , there are 3 common certificates that we are now using now DV ( Domain Validation ) is the most common one, it’s very cheap, easy to order. The CA will verify your domain, make sure that you are the owner of that domain by sending a verification email to your admin email contact on whois record or some other method. OV (Organization Validation) – is mostly for corporate , the CA will not only verify you are the owner of the domain, they also ask you some paper to verify your business address. EV (Extended validation)Read More →