Here I'll share my knowledge, discovery and experience related to my hobby and work. Most articles on this site are related to online business, short reviews, computers & internet, tips, and make money online. More about me ...
No, This is not the end business of virtual credit card and bank account seller. This is just a small change on paypal website that allowed Indonesian paypal account getting verified using local bank account. Absolutely because of this small changes it will kill all virtual credit card seller for Indonesian costumer.
I got this news from email my friend sent to me, he claimed he can get verified on paypal using bank account only (without credit cards or debit cards). This is a good news, I live in Indonesia and I fell happy if paypal allowed we used bank account to get verified because it’s to expensive in here if you need credit cards, plus there is some security issue with Indonesian bank. No need to use virtual credit card anymore
Virtual credit cards business die? Nope! There lot country out there still need this service. My virtual virtual credit card and bank account store will not closed by this small changes. I just lost Indonesian costumer….. *LOL*
Here is the steps for Indonesian people who need to get their paypal account verified using local bank account only:
Enter your Bank Name, Bank Code, and Account Number. Then click Continue.
Wait for 1-3 days to see micro deposit from paypal.
Once you have this micro deposit amount, login back into paypal again then write the amount.
Congratulation your paypal account verified.
Here is bank code:
When you need to withdrawn funds from your paypal account into your bank account you can read bank kliring code from my blog. The problem is I don’t know if paypal allowed we add fund paypal account using local bank account in here.
Actually I have been searching the way for doing this trick long time ago. How to show ads inside wordpress post (like a picture) but no lucky on the result. Usually information I got is only showing ads inside the article but with standard size 480×60 or just a simple plugin to show ads in the first,middle or the end article. I want a beauty position, this position will be a good spot for ads inside wordpress article.
I fell really stupid when I found the tricks is really simple *lol* Tested it on my technology reviews blog…
The result will be like this sample:
When I tested it with another modern browser, firefox and opera the result is same beauty:
How to doing this tricks? Just follow this 5 simple steps
1. Login into your wordpress admin panel.
2. Click on Appearance, then click editor.
3. Click on your single.php files (it’s actually single post for wordpress).
4. Find the text “php the_content(‘Read the rest of this entry »’);” before this text add this code:
<div style=”float:left; padding-right:10px;”>
Your Ads Code Here
</div>
5. It’s done! You can customize it to make it looking good.
Hahaha this is my shortest article, enjoy it people! have a nice day
This is a new stupid virus/trojan that will redirected all your traffic to google.com (209.85.225.99) infected my client on 01-01-2010, This virus was made using visual basic with size around 212-233KB. If active it has another supported files with random size.
How to know if you’re infected?
It’s very easy, if you browsing on internet or opening antivirus website then your page always redirected to google website that mean you’re infected by this virus.
Master Files
When this virus active it will created some master files and downloading some another supported files from internet. It will spreading files in different location to make it hard to cleaned. This virus also hiding as windows service and windows drivers.
This is a list of virus master files:
%systemroot%\windows\system32
wmispqd.exe
Wmisrwt.exe
qxzv85.exe
qxzv47.exe
secupdat.dat
%systemroot%\Documents and Settings\%user%\%xx%.exe, Where xx is random character with size 6KB (example: rclxuio.exe).
%systemroot%\windows\system32\drivers
Kernelx86.sys
xx%.sys, where xx is random character with size 40KB (example: cvxqkopsd.sys)
Ndisvvan.sys
krndrv32.sys
%systemroot%\Documents and Settings\%user%\secupdat.dat
%systemroot%\Windows\inf
Netsf.inf
Netsf_m.inf
Spreading Technique and Virus Affect
This virus will spreading in your network or using any removable disk using a autorun technique. If we look in the back mostly all virus using this same technique to spreading, Maybe a good option to modify your windows to disable autorun.
Virus will blocking some windows function like: System Restore, Windows Firewall, RPC DCOM, etc. Virus will also redirected mostly antivirus or security website into google.com using hosts file.
How to Remove W32/SmallTroj.VPCG
1. Deactivated “System Restore” when in cleaning progress.
2. Disconnected your computer from Network/LAN.
3. Rename msvbvm60.dll (%systemroot%\Windows\system32\msvbvm60.dll) to backup.dll This step to prevent virus active because this virus was made using visual basic, virus will need msvbvm60.dll to run, when you rename it virus can’t active. After you cleaned this virus I recommended you to rename backup.dll back to msvbvm60.dll.
4. Deleted virus master files using Mini PE2XT, Because some rootkit hidden as windows service and driver you need to boot your computers using Mini PE2XT then follow the step:
Menu -> Programs -> File Management -> Windows Explorer
Then deleted files “Virus Master Files” (check in this article).
5. Deleted registry made by virus using Mini PE2XT
Menu -> Programs -> Registry Tools -> Avast! Registry Tools
9. To make sure your system totally clean and to prevent virus from coming back please scan full your system using Norman Malware Cleaner, If you don’t like Norman I would recommended you to use AVIRA.
In this article we will learn how to secure our wordpress blog using some .htaccess technique. Of course there is no system perfect in this world. Everything should have bug, no matter it’s high or low risk. When last time you have seen blog with wordpress got hacked? Well, This happen to me 3 times on one of my crazyporn blog. The hackers always controlling my admin panel and it’s happen 3 times until I playing with my new toys to stop this guy.
What is .htaccess? In several web servers (most commonly Apache), .htaccess (hypertext access) is the default name of a directory-level configuration file that allows for decentralized management of web server configuration. Read full in wikipedia. Back to the topic what should we do to stop hackers controlling our admin area?
There is lots of technique, what I write in here just some technique using .htaccess files:
Protected your wp-login.php files.
<Files wp-login.php>
Order deny,allow
Deny from All
Allow from xxx.xxx.xxx.xxx
</Files>
Where xxx.xxx.xxx.xxx is your IP, if you meet problem to know your IP just look on IPchicken.com
Protected your wp-config.php
Wp-config is vital configuration files for wordpress, it should secured to stop people viewing it’s content.
<files wp-config.php>
order allow,deny
deny from all
</files>
Protected your wp-comment-post.php
Even if you’re using Akismet plugins, to reduce spambot post via remote access you can use this code. (Change yourblog.com with your own domain name)
RewriteEngine On
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .wp-comments-post\.php*
RewriteCond %{HTTP_REFERER} !.*yourblog.com.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) ^http://%{REMOTE_ADDR}/$ [R=301,L]
Protected .htaccess file.
This code will protect all files with “.hta” string on it.
<Files ~ “^.*\.([Hh][Tt][Aa])”>
order allow,deny
deny from all
satisfy all
</Files>
After using this tips the hackers can’t controlling my wordpress admin panel again hahaha! he try to inject using wordpress bug but when I limited IP to access admin panel he’s cry *lol* yay, I win! finally I beat this noob *lol*
I got this information when I doing blog walking to my friends blog, Paypal promote their self to country around ASIA. I got information from some source that Paypal will get some big competitor, said AMEX , etc. That’s maybe the valid reason they promote and giving free gift to people around ASIA. This free gift only valid to specific country: India, Thailand, Malaysia, Korea, Vietnam, Philippines, Indonesia, and Singapore. If you out from this country then sorry you can’t join this offer.
How to get $100 free from paypal? follow this step:
You should have facebook account. If you don’t have created one or you can’t join this offer.
Enter your email paypal verified account, you can’t join this offer if you don’t have paypal verified account. Problem with credit cards or debit cards? get virtual credit card from my store!
Created your wishlist item, You can share it with your friends.
Invite some friends then sit back and relax.
That’s it just follow all step, but before you joined please read this Terms and Condition first:
You should have registered on paypal wishlist program in date around 16 November 2009 – 31 December 2009.
Created new paypal account or using existing account (should a verified account!)
At least 18 years old and resident in this country: India, Thailand, Malaysia, Korea, Vietnam, Philippines, Indonesia, and Singapore.
You paypal account must be in good standing, not in suspend or unverified.
Created paypal wishlist and promote it.
This free $100 is maximum, It’s mean you can’t go higher than $100 per account. This $100 will be paid to your paypal account around 28 February 2010. You should login into your paypal account in february 2010 to eligible for this free $100.
Hello Everyone, After more than a years I used this method to sell virtual credit card to you without any problem on it. Today, I decide to sell this secret “how to make money with virtual credit card“. This ebook is limited edition written by myself! it’s available only for 25 serious buyer. You will got all information you needed about virtual credit cards how to create your own virtual credit card store, where to get/created/generate your own virtual credit card. All information on this ebook included all requirements, procedure, tips and tricks for what you need to created your own virtual credit card and sell it to the worlds.
Everyone around this worlds can follow this simple step, I guarantee. Even if you don’t have important requirements, you can follow my tips and trick on this ebook. You can make every Virtual Credit Card! example: ebay virtual credit cards, paypal virtual credit cards, google adwords virtual credit cards, yahoo virtual credit cards and all other service need virtual credit cards on it. With personal guarantee from me all VCC will working! Not enough? I will give bonus for you the secret on how to make VCC with special amount on it. This is rare because some people will not making this and selling, You decide!
Order today! it’s limited for only 25 serious buyer! Price is only $55.19 USD it’s very very cheap if you compared with my result after success on sale this VCC, that’s why I only giving limited edition to only 25 buyer. Local buyer? transfer via klikbca or pay by cash in my home.
In the past article, I write about how to monetize your images website using britepic. Yesterday my friend email me and share this good information, now we can monetize our images on blog/website using “ImageSpaceMedia” technology.
I would say ImageSpaceMedia ads better in looks and earnings, in BritePic cost per click around $0.01 to $0.10 in ImageSpaceMedia cost per click is fix $0.10 per click, it’s also has good look on ads viewed, look at this sample…
I Like this ads, it’s look almost same with youtube video ads, I’m sure your CTR through this image ads will be very high. It wont affect your blog/website, just register on ImageSpaceMedia once approved you can login and copy a small javascript code and put it into your blog/website, relax and see how it performance. I recommended to use ImageSpaceMedia on wallpapers/photo website for high CTR, but you can use in your blog also.
The key to get ads on your images is description some people usually to lazy write about images description even it sometimes important for search engine. In wordpress and 4images you can write this description using a forms. If you need help on costumize this scripts on 4images you can contact me, I would install this ads on my wallpapers site.
Minimum payout is $25, payment can be done through mail, paypal or wire transfer. Good luck on your money making journey
This is happen 3 days ago when my friend asking for converting him .htaccess into lighttpd rewrite rules format. After conversion done he wanted to share this script to everyone. If you’re professional Fotographer or just blogger, you may wanted to copyright all your photos/images. Even we know, sometimes people like to share for having fun…. but some people need a copyright to protected his original works before someone copy it. If you’re doing this manually it will take a long time and of course you will bored before this done. In short time we can make a simple watermark to protected our images.
Requirements:
Apache with mod_rewrite / lighttpd (just convert rewrite rules, it should work)
PHP with GD library (check in your phpconfig or asking your webhosting)
Step one.
Prepare one images that you should used as watermark. This images should be in .PNG format, you can created one using photoshop software to make transparant effect.
Step two.
Make new or open your .htaccess files and write down this code inside it:
Good day, after a few months I was looking for best script to make my online store. I found some useful and free script but of course their SEO are worst, The premium one has better looks but they not guarantee on SEO result. Lucky, I was found one plugins can integrated wordpress become online store in just minutes. Take a look on this beauty wp store…
Why I choose wordpress? as we all know wordpress are simple CMS in management but powerful after we added some SEO plugins and other plugins it will become great CMS, in other option almost all paid hosting allowed wordpress to used.
To build your online store using WP e-Commerce plugins follow this step :
Extract it and upload it into yours plugins directory.
Activate WP e-commerce plugins.
Customize it including your theme and other module you need.
Done.
Simple right? fast and effective. The problem you will faced is maybe on the customized theme and module, it’s not easy to make a good theme for online store to take people attention on it.
Of course you can add optimize your wordpress SEO, said permalinks, title tag, keyword, sitemap, and other SEO technique you know.
Meet any problem? Discuss it! leave a comment and I will response back, have a nice day
This is mightthe AMAZING tools I have ever seen, WP-MIXER is worpress plugins used to mixing all available resource such as article directory, images, youtube video, yahoo answer and more coming soon.
Wp-mixer will combined all of this resource to become one post on your blog, This is the best autoblogging tools and efective for people looking for targetting keyword into their blog. Installation and configuration very simple just upload this plugin, activated it, setting it, and click GO! your money machine works for you. Combined with all wordpress SEO plugins can make your blog become the next super blog!
This plugin categorized as blackhat SEO because it’s actually grab content, anyway it mixing all available source so make your posts looks like natural post. This important element make your blog also can get pagerank very easy. Articles, images illustration, Video, and question for discussion.
REQUIREMENTS:
WordPress 2.5+
PHP 5
CURL
The effect on shared hosting? Not all hosting will allowed this plugins, you know some hosting company are suck but not all, others are really give great service said hostmonster, hostgator, dreamhost, bluehost and other you can prove it as good hosting company. I try this plugins on dreamhost shared hosting and it has no issue at all, the new wp-mixer version has fixed the bug if this plugins not work in other hosting.
I never reading people reporting the effect after using wp-mixer with google adsense, personally I think it to much risky because you all know google adsense have strict rules to their publisher. You might get problem on duplicate content if you’re using wp-mixer with adsense. But there one share how he earn good money using this plugins, in 2 weeks he can earn his money back used to purchase wp-mixer and then he continues profitable.
I recommended to you this plugins to used when you need autoblogging tools, I’m using it also but in other hosting and other domain (just for experiment) You might interesting with this tool? go Click here to visit WPMixer website!.