Archive for December, 2010

Unable to access VMware on port 8333

Thursday, December 30th, 2010

For Windows Xp Solution : Please make sure vmware host agent service is running. Please check the picture.

Linux:How to compile php with mysqli support

Thursday, December 23rd, 2010

While installing php from source with mysqli support could be big trouble , Most of the time it through bellow errors configure: error: Cannot find libmysqlclient under /usr. if you see this kind of error, try to find out where is libmysqlclient into your server, by typing locate libmysqlclient you might see output like this [...]

Linux: How to configure sendmail to receive email (Basic Steps)

Monday, December 13th, 2010

Ref:http://www.sendmail.org/tips/virtualHosting (a) Edit /etc/mail/sendmail.mc and modify bellow lines , It will allow sendmail to received email from outside of localhost. DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA’)dnl to   DAEMON_OPTIONS(`Port=smtp, Name=MTA’)dnl (b) Edit /etc/mail/virtualtable type , this will map virtual addresses into real addresses joe@yourdomain.com jschmoe Here, sendmail will receive email , and any email comming with address joe@yourdomain.com will [...]