Tuesday, October 20, 2009

Adf.ly Review - How to Make Money with adf.ly?




New advertiser in town adf.ly offer link shorten or shrinkage witch pay us money for the publisher.It similar like Tinyurl, easy and only need a few click before it done. Then, just put it as a link at our article and generate traffic to that article.

I believe you can earn money using that way. So, what is that website? It was called adf.ly. How to make money with Adf.ly? I’m still not get money from Adf.ly yet. But i believe i can reach it soon if my promotion method go well. Hope it go just like i want. If not, i need to try others traffic tips in order to get more traffic into my articles. Hope many people will click my Adf.ly link and make money for me. So, the only way to earn money from this program is traffic!

Referral Program - 20% Earnings FOR LIFE

The adf.ly referral program is a great way to spread the word of this great service and to earn even more money with your short links! Refer friends and receive

20% of their earnings for life!

If you guy notice it was widely used in twitter for now and also some blogger are using it.You can start to promote any link in facebook also if you like.

Kaspersky 2010 Free activation with regedit. (No keys required!)

1. Download Kaspersky Internet Security  KAV or KIS 2010
NOTE: If you already installed with backlisted keys / trial activation then: Remove any existing keys / trial license, by going to License -> Merge/Delete -> Delete Key.

2. Once installed, it will ask you to register, skip through this section.

3. On a new installation, your PC reboots. After the computer has rebooted load up Kaspersky, click on "Settings" and go down to "Options" and un-check "Enable Self-Defence". Click OK.

4. Exit Kaspersky from the taskbar icon

5. Launch Registry Editor
Type REGEDIT.exe in the Search box (Start Search box). Press Enter.

6. Navigate to the following key,
HKEY_LOCAL_MACHINE\SOFTWARE\KasperskyLab\protected\AVP9\environment

7. Scroll down to Product Status , Right Click on “Product Status”, Select MODIFY

8. Change the data from “Release” to “Beta” (without quotes)
9. Exit Registry Editor (regedit)... and reload Kaspersky, you'll notice that when you go to the area where you
normally input your key you now have an option to "Activate Beta Version".

Or, Kaspersky will automatically pop-up the activation screen, saying:
Activate using KEY file, Online, or Activate Beta Version.


10. Click “Activate Beta Version” and you'll get a 30 day BETA trial, the great thing is you can just redo this process again and again when beta expires or so...

NOTE: Make sure you ENABLE Self-Defense again after activating beta version, by going to “Settings”-> “Options” to ensure total security.

Voila! You’re done... You should see a screen, similar to the one shown below:

11. After 30 days, when it expires, pick "Activate Beta Version" again! and again and again...
Isn't it a lifetime license! :D ? Enjoy!

Basically what you've done here is fool the Kaspersky server into thinking your using the BETA version of the product when in fact you are actually using the Release version that will give you all the updates etc like a full release.

Update Oct 23 2009 :
If you are using win64 bit
you need to search for file name regedt32 in C:\Windows\SysWOW64 and follow the same instruction above. Good luck and feel free to leave comments.

No need for any keys for now! if this don't worked for you click link below:


Wednesday, September 23, 2009

How To Enable register_globals in PHP

Many web applications developed using PHP were created requiring that a certain php setting called register_globals be turned on, as PHP installed on servers came with this on by default.


PHP developers and web hosts quickly realized that having this setting on by default has several major security implications and started changing their settings to have register_globals off. The immediate effect was increased security, but a ton of broken php web applications. If your site ran one of these applications, you were now the proud owner of a web site that no longer worked.


In addition, you could no longer use any application that required that register_globals be on.



Luckily there is a simple solution to the problem in most cases, at least until an alternate web application or a patch for your site to run with register_globals off can be installed.


First check to see if you have what is called a .htaccess file in your web sites main directory (usually public_html or httpdocs). Either check for this file with your web host provided file manager or use your FTP client to login to your account and check.

Note: Some servers hide files with a period in front of them, so you may need to configure your FTP client to see these hidden files. See your FTP client help file for instructions on how to view hidden files.


If you locate the .htaccess file, edit it and add this to the very top of the file:

Code:
php_value register_globals 1 





If you do not already have a .htaccess file in your public_html or httpdocs directory follow these simple instructions:
  1. Create a text file on your computer called htaccess.txt
  2. Edit this text file and add the following line to it:

    Code:
    php_value register_globals 1 
  3. Save the text file
  4. Upload this text file via FTP to your web
  5. Rename htaccess.txt to .htaccess (note the period in front of the file name)
Now attempt to re-load your web page that requires register_globals to be on. It will now load without any issues.