Wednesday, June 10, 2009

Send Free SMS using PHP

Hi Friends,
Yesterday i read one article for sending free sms using php(http://www.aswinanand.com/2008/07/send-free-sms-web-service/). Using SOAP method they are sending sms using WAY2SMS.COM

You just need to have the following requirements
1) Need to register your mobile number to WAY2SMS.COM
2) Other person's(whom you want to send sms) mobile number
3) A message which you need to send

You need to pass your values to this link:
http://www.aswinanand.com/sendsms.php?uid=9933445566&pwd=password&phone=9003180179;9933445566&msg=mycodings

In UID = "Your way2sms userid(only mobile number)"
In PWD = "Your way2sms password"
In PHONE = "Friends phone number(Note for the last number there should not be any semicolon';' for more numbers you need to seperate using comma ',')"
In Msg = "Your Msg"

Thats it. Now you can also send sms from your website. If you're not novice in PHP make a Form to submit the values and send it

For downloading sms package: Click Here

For Deployment in your own server : Click Here

Thursday, May 7, 2009

Remove malware,iframe.inf virus from your website

Hi Developers,
For the past few months you would be plucking your hair for removing some of the malwares from your site. I too suffered a lot with these and now i learnt the lesson from them how to safeguard our website from these hackers.


The iframe virus are redirecting to chinese domain which was severely affected by malwares which will lead to theft of secured datas from your system. If you dint care for these virus then the virus will eat your whole site.

How to Remove Iframe virus?
Iframe tags will be written just below the body tag. Follow the steps to remove virus.
1. Login to your FTP & edit the file which you've got iframe tag.

2. Look for the iframe tag just below the Body or Head tag.

3. Remove the coding & overwrite the file.

4. Now right click the file and click properties/File attributes and make it to "444". So that no hackers have privilege to write the file with iframe code.

5. Once you've cleaned this, the other type of virus will slowly raise, that is it will search the files that are included on the index.php file (ie dbconnect.php, general.php, configure.php, common.php, functions.php, classes.php etc) and it will write a php coding at the top of the page where it will dynamically write the javascript code at the time of execution of the file in the web - browser. The script will redirect the page to gumblar.cn/rss?id=2

6. To remove these type of error carefully look into the above mentioned filename, you can easily find out the php coding at the top of the page. Just remove the coding and make sure it is write protected, so that the php coding wont be written.

7. Still you cant find the solution, just comment to this section. I'll reply ASAP.