Like us on facebook to get more free pro tricks daily...!

Liked us?

Showing posts with label Tech Tricks. Show all posts
Showing posts with label Tech Tricks. Show all posts

Saturday, 10 November 2012

Top 10 HTACCESS Scripts

0 comments
For those of you getting into the “nuts and bolts” of website design, you will find that there are times where you will need to create and/or modify the .htaccess file. In this regard, I have provided some of the most important .htaccess scripts I have come across, many which I use and have found indispensable.
If you are unfamiliar with .htaccess creation, all you need is “notepad” (not msword) since you want to ensure that there is no default character formatting. You add the code you wish into it, and then upload the file titled .htaccess to your public folder where the html files are stored (typically called public_html, or www, etc). In some cases there will be unique .htaccess files for the different folders, especially useful if you wish to block access to some folders and their files, but not all. Ok, that being said, here they are:


2. Custom Error Page
By default your browser will serve up an error page in those cases where a page link is broken, or someone manually enters a link to a page that does not exist. The best solution is to create a custom page since this will allow you to track errors (if you wish), and you now have the opportunity to brand the page creatively, have it match your existing website, … and what most will do is provide a site-map, search engine, etc. to help someone find content on your site that you know does exist. You could create the page as a .html, but if you wish to track which pages are not being found (though Google Webmaster tools will do this for you as well), all you do is create an normal html page, and then save it as a .php page and add a bit of code into it.
< ?php
$ip = getenv (“REMOTE_ADDR”);
$requri = getenv (“REQUEST_URI”);
$servname = getenv (“SERVER_NAME”);
$combine = $ip . ” tried to load ” . $servname . $requri ;
$httpref = getenv (“HTTP_REFERER”);
$httpagent = getenv (“HTTP_USER_AGENT”);
$today = date(“D M j Y g:i:s a T”);
$message = “$today \n
$combine  \n
User Agent = $httpagent \n
$note \n
$httpref “;
$message2 = “$today \n
$combine \n
User Agent = $httpagent \n
$note \n
$httpref “;
$to = “name@youremail.com”;
$subject = “Email Title of Error Page”;
$from = “From: name@youremail.com\r\n”;
mail($to, $subject, $message2, $from);
echo $message;
?>
As you can see in the code above, it will send you an email when a page is not found (nice to find broken links on your site), and it will tell you the server name, IP address, referer, date it was accessed, page name of error, etc. I have noted that most of my page errors come from bots that have stored previous versions of site pages that have had the names changed, and hackers who are trying to break into directories (more on this next).
Here is an example of the email notice I received when a bot tried to access a page that no longer exists:
208.115.113.83 tried to load www.ecurtisdesigns.com/zencart/index.php?main_page=contact_us
User Agent = Mozilla/5.0 (compatible; Ezooms/1.0; ezooms.bot@gmail.com)
Ok, so now for the .htaccess file, you add “ErrorDocument 404 /404NameOfPage.php” to the file. “404″ is the name of the error handling, so it is a good idea to keep this in the file name for the sake of recognition. The actual code I use for my page is: ErrorDocument 404 /404NotFound.php

3. Selective Access Blocking

Ok, so I noted above that hackers will spend their nights trying to break into your directories. Mine are very secure, but just the same I will block an IP address of one that is seeking to access my configuration files. In this case you simply add the following to the .htaccess file.
order allow,deny
deny from 174.133.99.3
deny from 202.28.37.63
allow from all
As you can see, this is very simple. You have “order allow,deny” followed by the “deny from … with the IP address of the miscreants. Then you finish with “all from all”.

4. Force a Trailing Slash on URL

Some feel that it is best to always have a trailing slash on the primary URL since this encourages the search engines to explore deeper. It may, not sure. If this is important to you, yes, there is an .htaccess code snippet for this:
RewriteCond %{REQUEST_URI} /+[^\.]+$
RewriteRule ^(.+[^/])$ %{REQUEST_URI}/ [R=301,L]

5. Disable Hotlinking
Websites which have a gallery of images will often find their bandwith slowing down as a result of hotlinking. Hotlinking occurs when someone links directly to an image on your site, instead of a remote image on their own local server. The .htaccess code to prevent this is:
RewriteEngine On
#Replace ?mysite\.com/ with your blog url
RewriteCond %{HTTP_REFERER} !^http://(.+\.)?mysite\.com/ [NC]
RewriteCond %{HTTP_REFERER} !^$
#Replace /images/nohotlink.jpg with your “don’t hotlink” image url
RewriteRule .*\.(jpe?g|gif|bmp|png)$ /images/nohotlink.jpg [L]#1 year
<FilesMatch “\.(ico|pdf|flv)$”> Header set Cache-Control “max-age=29030400, public” </FilesMatch>
# 1 WEEK
<FilesMatch “\.(jpg|jpeg|png|gif|swf)$”> Header set Cache-Control “max-age=604800, public” </FilesMatch>
# 2 DAYS
<FilesMatch “\.(xml|txt|css|js)$”> Header set Cache-Control “max-age=172800, proxy-revalidate” </FilesMatch>
# 1 MIN
<FilesMatch “\.(html|htm|php)$”> Header set Cache-Control “max-age=60, private, proxy-revalidate” </FilesMatch>

6. HTACCESS Fast Caching

For websites that have lots of images, video, and flash, it is a good idea to speed up your site’s page load by caching images and other memory intensive files. This code will override one’s own cache settings, … the only potential downside is if you change your content often a visitor may not see your new content until they refresh the page a couple of times though as you can see, the cache time varies by type of file, so it should meet the needs of most.
#1 year
Header set Cache-Control “max-age=29030400, public”
# 1 WEEK
Header set Cache-Control “max-age=604800, public”
# 2 DAYS
Header set Cache-Control “max-age=172800, proxy-revalidate”
# 1 MIN
Header set Cache-Control “max-age=60, private, proxy-revalidate”

7. Stop Spammers on WordPress

For those of you who have blogs, yet don’t use askimet (I don’t since only the non-commercial version is free), here is some code that will help keep the spam to a minimum. What it does is prevent spam bots directly access to your wp-comments-post.php file (used to post comments on your blog). Of course some will simply visit your blog site and manually spam, … yeah!
RewriteEngine On
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .wp-comments-post\.php*
RewriteCond %{HTTP_REFERER} !.*yourdomainname.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) ^http://%{REMOTE_ADDR}/$ [R=301,L]

8. Logging PHP Errors

It is a good idea to hide PHP errors from visitors since hackers will often use the errors to perform a process of elimination when trying to access a vulnerability in dynamic php pages. this code will do that.
# display no errors to user
php_flag display_startup_errors off
php_flag display_errors off
php_flag html_errors off
# log to file
php_flag log_errors on
php_value error_log /location/to/php_error.log

9. Wp-config Added Protection

The wp-config file is the WordPress configuration file that links up to the server. As a general rule you will make the file non-writeable through CHMOD settings after installation (and delete the install directory which writes to this file), but it is also a good idea to secure it even more by adding the following code into your .htaccess file.
order allow,deny deny from all

10. Disable Directory Browsing

I often come across websites where the directory is accessible. This allows me to open up every folder, and browse for whatever I want. An easy way to prevent this is to the add the following to your .htaccess file.
# disable directory browsing Options All -Indexes
Well, that’s it for this one, will add more as time allows!
Read more >>

Tuesday, 26 June 2012

How to Make a Conference Call using Android phones

4 comments
I had already post article on How to Make a Conference Call with iPhone.
Now here is another article on How to Make a Conference Call using Android phones.

Follow below steps to make conference calls :

  • 1. Call the first person.
  • 2. Once the call is established, press the Menu button.
  • 3. Tap Add call.
Nexus One - Add call option



  • 4. The dialpad appears. Establish a call with the second person.
  • 5. Once the call is established, press Menu.
  • 6. Select Merge calls.
Nexus One - merge calls option



  • 7. Both parties should be on the line now. The Conference call screen will appear.
Nexus One in conference call



  • Repeat steps 2 through 7 to add more people to the call.
That's it....
Don't forget to comment below......
Read more >>

How to Make a Conference Call with iPhone

0 comments


How to Make a Conference Call with iPhone ? What is Conference call ? Conference call will help you to make calls upto 5 friends at same time each of them are speaking and hearing at same time There are more articles about Conference call but i am not discussing it here right now, Here i give you solution about How to Make a Conference Call with Your iPhone. In todays world many businessman people preferred conference calls to attend meetings through phone calls / Conference calls / Video Conference calls. Your iphone also have feature to make conference calls, here is simple tutorial to make conference calls using IPHONE.

Follow below steps to make conference calls :

  • Step 1 : Call one of the people with whom you want to make the conference call.

  • Step 2 : You can manually input the phone number or find the person in your list of contacts.


  • Step 3 : Place that call on hold. 


How you place a call on hold depends on the phone you're using. If you're on an iPhone 4, touch and hold the Mute button. On older devices, just tap Hold.



  • Step 4 : Tap Add Call.

  • Step 5 : The keypad will re-apper so you can enter another phone number.


  • Step 6 : Call the next person on the list. 


  • Step 7 : You can enter the number manually or choose from your Contacts list.



  • Step 8 : Tap Merge Calls so the people you have on the line can chitchat.

  • Step 9 : At first, the phone number of each caller will scroll at the top of your screen like a rolling ticker. A few seconds later, the ticker is replaced by the word Conference with a circled right-pointing arrow to its immediate right.

  • Step 10 : Repeat Steps 2 to 5 for each additional person whom you want in on the conference call. 



  • Step 11 : You can merge up to five calls at a time.



  • Step 12 : If you want to drop a call from a conference, tap Conference, tap the red circle, and tap End Call.

  • Step 13 : The red circle has a little picture of the phone in it and appears next to the call. 


  • Step 14 : To speak privately with one of the callers in a conference, tap Conference, and then tap Private next to the caller you want to go hush-hush with.

  • Step 15 : Tap Merge Calls to bring the caller back into the conference so that everyone can hear him or her.

That's all your done..... Enjoy Call Conferencing...

Read more >>

Thursday, 21 June 2012

How To Zoom Photos On Facebook

0 comments
How To Zoom Photos On Facebook..??
My many friends ask me that how to zoom facebook photo, so guys here is solution...
Facebook is the one of the popular social networking website in the world.
The Facebook posses many videos,photos, games and different applications.
Most of the people on the internet does have Facebook account as it is a popular social networking website. In facebook people upload images, videos and etc., Facebook helps you to organize the photos in to albums to share with your friends. In Facebook we can view the image but we cannot zoom the images to overcome the image problem there is a Google Chrome Extension naming FB Photo Zoom.


This extension helps you to zoom the photos in Chrome, by using this you can view the photos of other profiles with out clicking on it.

Download FB Photo Zoom
Read more >>

How To Hide Annoying Friends On Facebook

0 comments
How To Hide Annoying Friends On Facebook
Most of the people annoy me on Facebook, when the important work is going on. I cannot un friend a friend on Facebook and i cannot concentrate on my work too. Then i found a way to hide annoying people on Facebook.
There are different ways to hide annoying people on Facebook.

1. Go Offline To A Person Who Annoy



2. Hiding From Specific Annoying People

Go to Chat -> Advanced Settings

Now in a search box name your friends who annoy you.


3. Hiding All Others And Appearing Online To Certain People

In Advanced Settings -> Click on “Only some friends see you” and name your friend name.



Click on Save.
Thats all...
Read more >>

Export Email Addresses of your Facebook Contacts to Yahoo mail

0 comments
Now its time to Export Email Addresses of your Facebook Contacts to Yahoo mail. A simple steps which can help you to export Facebook contacts to your Yahoo mail. It is good way to store your Facebook friends contacts to your Yahoo mail, using these emails you can keep in touch with your friends even when they are not on facebook, it can also used to export contacts from Gmail, Windows Live/Hotmail, or from Others email providers to Yahoo mail, so follow following simple steps to Export Email Addresses of your Facebook Contacts to Yahoo mail.


Step 1 : Go to address.yahoo.com and click the Facebook icon


Step 2 : Click on Allow




Step 3 : Click on Continue

Step 4 : Click on the Facebook icon.



Step 5 : Authorize Yahoo in the Facebook pop up and then wait a few seconds. You’ll see a confirmation screen like this




Ok, you’ve now imported the names and email addresses of all your Facebook friends into Yahoo. Now just click “tools” in Yahoo mail and export. CSV format is a good format for uploading to Gmail or your desktop contact book. Save the file to your desktop, and you’re done.


Like this post then plz add comments below...
Read more >>

Trick To Hide Your Email From Facebook Apps

0 comments
In this post i m going to tell you something interesting about How/Trick To Hide Your Email From Facebook Apps.

Social Networking sites are day by day becoming popular as they come with different features, extensions and apps. If there are more apps on Social Networking sites, then that site is popular. The same thing goes well with Facebook too.
Millions of Facebook users interact with their friends through apps of Facebook by exposing their Email Address, as they are vulnerable to various security threats.
Unfortunately, these features of Facebook Apps are being used my millions of users, but it has also opened up for the opportunities for the hackers. Most of the Apps in Facebook asks for the email address when you open the Application, it poses high threat to the users.




CastleVille is the one of the popular game on Facebook. The user needs to visit the Application page on Facebook and click the CastleVille application. A window will appear immediately where the game developers will seek permission to access the basic information of the user like name, email address and other. Most of the users click “Allow”, which may not be a wise thing to do.
But, you can enjoy CastlevVlle game without exposing your Email ID. All you have to do is to click the “Change” option provided beside the “Send me email” and you will be offered options either to enter your authentic Email ID or any proxy Email ID that will be reported to the game developers by Facebook. The game developers will send emails to that proxy email ID, which will be redirected to your main inbox.
Read more >>

Wednesday, 20 June 2012

Trick To Track Gmail Account Login Activity

0 comments
This trick help you to Track Gmail Account Login Activity, which is more important to secure your Gmail Account. In today's world there is no privacy at all any one can view your details either by hacking or cracking, so it is our duty to protect our Gmail account details. Track Gmail Account Login Activity to check who is lastly opened your Gmail account and from that information you can block that route for future accidents.


Most of people doesn't know ho are logging and gaining the details of your email account. To know who is opening or hacking the account by their activity in the Gmail by the following steps.


Steps to track the Gmail:

1. Login in to the Gmail account.

2. After the authentication in to Gmail , now you go to the bottom right of the Gmail page click on the Details.

3. Now a pop up window opens, by showing the entire activity of the Gmail, who logged in.
There you can look at the activity of the Gmail.
 
Read more >>

Sunday, 17 June 2012

Change Gmail Theme To Newer Theme

1 comments
Get new exciting look to your Gmail account using this trick. If you bored with your old Gmail theme then change that them to newer grate look by making some setting in your account.


Gmail is the leading email providing service around. Most of the people uses gmail account for handling the e-mails around.
Most of the people want to customize the gmail normal theme. In this tutorial will show you how to change the gmail theme form older to newer theme.





Do some simple steps to change Gmail theme instantly...

1. Log on to gmail.com

2. In the top right of the gmail web page you will find the Settings button, select on it.



3. After clickin on it , you select the themes button.

4. Now select the theme you want.

5. Your done!!!!

If you like this post then plz add comment in comment box below.
Read more >>

Tuesday, 12 June 2012

How To Find Right Web hosting Provider

6 comments
To find right web hosting is quite difficult, because there are many good web hosting providers in today's world. Every web publisher are trying to find good service provider because we pay them to host our site. There are many things that are keep in mind before buying any web hosting service, such as how much big your organization, and how much space you required to host your site, and also check uptime of that site because it is important, if your site is not live then you loose many customers/visitors. So before buying/purchasing any web hosting keep following suggestion in mind. We already wrote article on How To Choose Best Hosting for Your Website 



Web hosting features requirement


This is probably the most important consideration to start finding a host for your site. You need to decide the technical requirements for your website, this including:
  • Server platform and hardware requirements
If you plan to set up a website that uses programming environments such as Active Server Pages (ASP), Visual Basic scripts, Cold Fusion or Microsoft Access or Microsoft SQL database, in this case, you will need to find a web hosting service that supports Windows platform such as Windows NT or Windows 2000 servers.

Likewise, if you plan to use programming languages such as Perl, CGI, SSI, PHP or mySQL database, then any web hosting plans that support Unix/Linux platform should be sufficient to meet your hosting requirements. Once you have these server platform and hardware requirements in mind, you can decide the best web hosting plans for your need. For more information, you can read "How to select a web server and server platform?"
  • Disk space & Bandwidth requirement
Here is another technical requirement that you need to consider before selecting a web hosting plan, i.e. disk space and bandwidth. If you intend to publish a website that does not have a lot of contents (meaning, web pages), then the disk space requirement may not be a big concern to you. In general, a disk space with 200MB to 500MB should be enough to meet your hosting requirement. In contrast, if you plan to host a website with enormous amount of graphic pictures, mp3 or video files, then you should consider a web hosting plan that provide huge disk space, for example, 500 MB to 1,000 MB.

Similarly, the bandwidth requirement will depend on your site traffic estimation. Obviously, a website that expect to attract high traffic will consume the monthly bandwidth allowance very fast. If so, you will need to find one web hosting service that offer huge bandwidth with 40 GB to 100 GB per month. Depending upon your website requirement, choosing a web hosting service that provide sufficient amount of disk space and bandwidth is crucial consideration to prevent paying extra costs in the future should you overuse the monthly disk space and bandwidth allowance.
  •  Other hosting features
While the above requirements are utmost important, there are other hosting features that you have to consider too. Can web hosting provider support video clips on your website, if you have? Is the web hosting service compatible with Dreamweaver or FrontPage web authoring tool? Do you plan to set up a virtual store online? Can the host support the e-commerce features without adding extra cost to your monthly payments? On top of that, you may also want to find out the number of email accounts provided, number of FTP accounts, web statistic software (analyze your web traffic), type of control panel supported (manage your web hosting account), database and scripting languages supported and etc.

Reliability and scalability


A first-class web hosting provider offers reliable server uptime and fast Internet connection. You should only choose a web hosting service that guarantee at least 99% server uptime with high-speed Internet backbones using at least OC3 (Optical Carrier) lines (155 Megabits per second) or above instead of T1 or T3 lines. A reliable web hosting provider usually invests heavily on their data center infrastructure with high performance servers, high speed multiple backbones providers with fail-over redundancy, backup power generators and firewall software protection in place to ensure they meet the uptime guarantee specified in the terms of service.

Similarly, you should choose a web hosting service with hardware facilities that designed for scalability, so that they can grow with your business. For example, if you need to increase more disk space, bandwidth or number of mySQL databases, you should be able to upgrade as needed without any problems.

Customer service and support


The last major consideration in choosing a web hosting service is to find a web hosting providers that offers excellent customer service and support. You should always search for a web hosting provider that offers 24 hours a day, 7 days a week technical support that fielded with highly experience technicians, so that any web hosting problems will be resolved within a reasonable amount of time. You may also want to consider to test how responsive is their customer support by sending few inquiry emails to the web hosting provider. In general, any response in less than 24 hours is considered acceptable. It is a sign of poor customer support if they take more than one day to response.

In addition, a web hosting provider with excellent support should also provide multiple support channels, such as toll-free phone support, 24/7 email support, live chat, online knowledgebase, Interactive flash tutorials and FAQ.

Also, good web hosting companies develop a community around their service. The community members help each other to solve a lot of regular issues. Does your web hosting solution provider have anything like that? Tips, if you are planning to get business via organic traffic (SEO), make sure that you have good neighbourhood (other websites in the same space) in the shared hosting space. Or it may hamper your ranking over time.

 If You want some Free Webhosting Service  Provider then check here Free Unlimited Web Hosting Services without Ads.

If you want any help then post comment in comment section..
Read more >>

Trick to add image/picture to mp3 files

0 comments
Many friends always asking me that how to add image/picture to mp3 files. If you are have mp3 download site then you need this trick to promote your website with mp3 image that showing download from ......com site. Adding a new image or changing the existing mp3 album image is really a fun! But many of our friends don’t know how doing that simple task. So here you will know how to add an image to mp3 files and show that image when you play the mp3 song by any media player. This image which is embedded with mp3 file is known as the album art, cover image or tagged image. When the mp3 will be played select the Album Art visualization mode if the image is not displayed.







Let me introduce the Mp3Tag which is compatible with Windows 7/Vista/XP. It’s a freeware software and you can download Mp3Tag from their official website.



Adding an image or picture to mp3 files:

The Mp3Tag contains a lot of features with it and lets you allow to add, remove or customize the album art image. You can edit or assign any details for your mp3 files. It also allows you to select all the mp3 files in a directory and perform its given task to all. It is the full compact utility for your mp3 songs.



Steps to embed an image to mp3:
Download Mp3Tag, install and run it.



Select the directory where the mp3 files are located.



After loading all mp3 files of the selected directory, you can choose one or all files to be changed.
If the selected mp3 file contains an album art then it will be shown bottom left.



To add an image first click on extended tags and a Tags window will come.



From the Tags window you can change any details from Metadata located on the left.
The cover section, located on the right side, will allow you to add a cover image.



To add or change the cover image, hit the Add cover and browse your desired image file.



Select your image file and press OK.


Wow! You've changed the mp3 Album Art. Play your song in PC or mobile, your embedded image will be displayed. It’s a cool trick, Isn't it?

Important: Your image file must be in JPG, JPEG or PNG format. Installing the software might need the administrator privilege.
Read more >>

Sunday, 10 June 2012

Microsoft Windows 9

0 comments
Microsoft Windows 9 is another version of Windows Operating System, As we know windows is worlds most popular operating which is used in today's life. Windows developer team is going to develop  its new version that is Windows 9 and launching date is 2013. Microsoft Windows 9 is of course the latest upcoming operating system. Recently Windows 8 has touched the feet of worldwide people and has satisfied whole world with its great features and graphics. Now after Win8 many netizens are in search for the release date of the new Microsoft Windows 9 nine. so here is the some specifications about windows 9.


windows 9 logo


The news and rumors coming from various sources says that Windows 9 is going to launch in the 2014 and some are saying we will experience Win9 in the late 2013. But its still a matter of concern that Microsoft has always followed the pattern of 3 years for its launching OS.

This time its too hoped that the latest upcoming OS will be launched in 2014 and we are bound to it..Windows 9 will contain new and unthinkable sensation system which will bring new revolution in the Operating System world.

Features Of Windows 9 :
  • New Look.
  • Sensation System.
  • New Taskbar.
  • Unseen Start Menu.
  • New Log-On Screen.
  • Advanced Level Technology.
  • Advance Graphics.
As usual Microsoft will put out its developer or beta version first in the market so that to get feedback and bugs information from people.
Sorry to say but its completely Unofficial information, so we do not take any responsibility about the information given above.

Any comments are welcome.
Read more >>

Thursday, 7 June 2012

Download Huge Collection of Java Apps Handler

0 comments
In this post i am providing you various and latest 2012 Handler Mod for Latest Browser and other useful softwares. Here a biggest ever collection of Handler UI mod for all browsers like UCBrowser (Ucweb), Opera Mini, Opera Mini Mod, Boltz etc and many other useful apps like Nimbuzz, Snaptu, YourTube, Skype, GMap, Gmail, eBuddy, RocketTalk and YahooMessenger 2.3.0 etc. Plz visit 7terabyte.blogspot.com regularly for updates.




What is Handler UI Mod ? : Handler Mod apps will help you to surf free internet using network cheats tricks or gain extra speed or better browsing experience, enable you to use custom proxy server and tricks for free internet browsing. It also benefit that your connection works fast, you can choose any server that helps in reducing traffic on servers. Your site opening also improves. And the proxy server provided by service provider cannot be changed directly from phone so thats why we use proxy mod apps. Handler Mod available in different UI like 150, 200, 202, all has different user interface and features. These Handler Mod supports all major and minor network provider such as Airtel, Aircel, Vodafone, Idea, Loop Mobile(BPL Mobile), Reliance GSM, Tata Docomo etc.
Free Recgarge !

Note: Some Latest Handler UI202 app may ask you activation code/key after 10 times use of app , the default activation key to use handler for unlimited times is www.nextwap.net.
How to Use of Queries In Handler UI Mod Editable Server:

In field Custom HTTP Server : put any customizable proxy server (example: http://wapx.amob.com) with main server of app (example: server4.operamini.com:80/). In this block to use it as proxy http server (example: http://wapx.amob.com.server4.operamini.com/) in any app,

In field Front Query : It mostly used for adding downloading server or downloading trick (exp: wapx.amob.com@) but works only with some service providers,

In fieldMiddle &amp;amp; Back Query : These are mostly useless for us so just leave it blank.

In field Remove String From URL/Remove Port From URL : Leave it blank for default.

In field HOST : You can provide host address or any server here to have a host server.
For example you can try following in Opera Mini 4.2 Handler mod:

1. For fast speed: HTTP Server: http://mini5beta.opera-mini.net:80/ ; Front Query(only if its working for you otherwise leave it blank): wapx.amob.com@ ; Host: http://10.0.0.172/ ; Leave other fields blank.

2. HTTP Server: http://wapx.amob.com.server4.operamini.com:80/ ; Front Query(only if its working for you otherwise leave it blank): wapx.amob.com@ ; Host: http://10.0.0.172/ ; Leave other fields blank.

You can also use this indiatimes server for free browsing: http://wap.indiatimes.com/usearch/, http://mini5beta.opera-mini.net:80/ or add another in place of http://mini5beta.opera-mini.net:80/
Or in UC Browser 8.2 with Airtel:

First initialize UC Browser with all field blanks. Now reopen it and fill in front query:

?m=0.facebook.com/zout=1

Proxy type: real host

Proxy server:

1. live.airtelworld.com

2. m.twitter.com

3. 0.facebook.com


Free Direct Download Links for Latest Handler UI Mod Apps Version:


Opera Mini Mod 4.21 Beta18 Build 22013 HUI203: Opmod421b18hui203.jar (21 April 2012)**

eBuddy 2.3.1 Handler UI202: eBuddy2.3.1HUI202.jar (15 April 2012)**

YMessenger 2.10 HUI202: YMessenger210hui202.jar (7 April 2012)**

YMessenger 2.10 HUI202: YMessenger210hui202.zip (7 April 2012)**

Opera Mini Mod 4.21 Beta18 Build 21881 HUI203: Opmod421b18hui203.jar (7 April 2012)**

Opera Mini Mod 4.21 Beta 18 Build 21881 HUI203: Opmod421b18hui203.zip (7 April 2012)**

Facebook v2.7.1 Handler UI202: Facebook_v2.7.1_HUI202.jar (5 April 2012)**

UC Browser 8.2.1.144 Official Handler UI202: UCB8.2.144_HUI202.jar (4 April 2012)**

UC Browser 8.2.1.144 Official Handler UI202: UCB8.2.144_HUI202.zip (4 April 2012)**

Opera Mini Mod 4.21 Beta17 Build 21820 HUI203: Opmod421b17hui203.jar (2 April 2012)**

ToGo TV 3.30 Handler UI202: ToGo-TV-3.30HUI202.jar (2 April 2012)**

FullOnSMS New Handler UI202: FullOnSMS HUI202.jar (28 March 2012)

Way2SMS New Handler UI202: Way2SMS HUI202.jar (28 March 2012)

YouTube 1.4.7 Handler UI202: YouTube 147HUI150.jar (28 March 2012)

YouTube 1.4.7 Handler UI202: YouTube 147HUI150.zip (28 March 2012)

Cricket 1.3 Handler UI202: Cricket 1.3 HUI202.jar (26 March 2012)**

Cricket 1.3 Handler UI202: Cricket 1.3 HUI202.zip (26 March 2012)**

Opera Mini Mod 4.21 Beta17 Build 21763 HUI203: Opmod421b17hui203.jar (26 March 2012)

Opera Mini Mod 4.21 Beta17 Build 21763 HUI203: Opmod421b17hui203.zip (26 March 2012)

Download Link for NewsHunt Latest Version for Java, Android & Symbian:


NewsHunt_1.50.03_HUI202.jar (Handler UI202 for Java, 334 KB)

NewsHunt_1.50.03.jar (Java Large Screen Phones, 323 KB)

NewsHunt_1.50.03.jar (Java Small Screen Phones, 302 KB)

NewsHunt_3.02.01.apk (For Android, Market Link, 323 KB)

NewsHunt_S60v2_Latest.sis (For all Symbian S60 v2 Phones, 417 KB)

NewsHunt_S60v3_Latest.sisx (For all Symbian S60 v3 Phones, 602 KB)

NewsHunt_S60v5_Latest.sisx (For all Symbian S60 v5, S^3 Phones, 648 KB)

Empire 8.0.0.39 Handler UI202: Empire 8.0.0.39 HUI202.jar (26 March 2012)

UC Browser 8.2 Official Handler UI203: UCB8.2_HUI202.jar (17 March 2012)

UC Browser 8.2 Official Handler UI203: UCB8.2_HUI202.zip (17 March 2012)

QQ Browser 2.5.02 Handler UI203: QQbrowser2.5hui203.jar (15 March 2012)

MobilGet 2.5.0 Handler UI203: MobilGet2.5.0hui203.jar (15 March 2012)

GTranslate Tool 1.5.6 Handler UI203: GTranslateTool1.5.6hui203.jar (15 March 2012)

Opera Mini Mod 4.21 Beta17 Build 21661 HUI203: Opmod421b17hui203.jar (13 March 2012)

Opera Mini Mod 4.21 Beta17 Build 21661 HUI203: Opmod421b17hui203.zip (13 March 2012)

Opera Mini 4.4 Alpha5 Handler UI203: Opmin44A5hui203.jar (4 March 2012)

AVACS 2.2.0 Handler UI 203: AVACS2.2.0-HUI203.jar (4 March 2012)

Opera Mini 7 Next Handler UI 150: Opnext7HUI150.jar (4 March 2012)

Opera Mini 7 Next Android Handler UI: Opnext7HUI.apk (28 Feb 2012)

Opera Mini 7 Next Handler UI203: Opnext7HUI203.jar (27 Feb 2012)

Opera Mini 7 Next Handler UI203: Opnext7HUI203.zip (27 Feb 2012)

Nimbuzz 1.9.5 Handler UI203: Nimbuzz195HUI203.jar (26 Feb 2012)

Mig33 4.62 Handler UI202 Rev 1: Mig33_4.62HUI202R1.jar (20 Feb 2012)

Opera Mini 6.5 Build 27424 Rev 1 HUI202: OM6-5-27424HUI202.jar

Opera Mini 4.4, 0 Key Handler UI203: Opmin44R2HUI203.jar

Opera Mini 6.5.2 Handler UI for Android: Opmin652hui.apk

Oupeng 6.5 Handler UI202 Firefox Skin: Oupeng65hui202-En-ff.zip

Oupeng 6.5 Handler UI202 Firefox -Indonesian: Oupeng65hui202-Id-ff.zip

YourTube v1.1.7 Handler UI203 Mod: YourTube117hui203.jar

Oupeng 4.4.27822 Handler UI202: Oupeng44.27822HUI202uchimadara08.jar

Opera Mini 4.4.28000 New Alpha3 Handler UI203: Opmin44a3hui203dzebb.jar

Opera Mini 4.4.28000 New Alpha 3 Handler UI203: Opmin44a3hui203dzebb.zip

Android Market Downloader with Handler UI: AndroidMarket_dl_HUI

QQ Browser 2.4.0.6 Handler UI202 Mod Fix 1: QQ2406hui202mfa1.jar

UC Browser 8.2.0.116 Handler UI202: UC8.2_HUI202.jar

Bolt Browser 2.52 Working Handler UI202: Boltv2.52_HUI202.jar

Bolt Browser 2.52 Lite Working Handler UI202: Boltv2.52_lite_HUI202.jar

Opera Mini 4.4.28000 Lab Handler UI202: OM4.4a1HUI202.jar

Opera Mini 4.4 Handler UI202-Fix: OM4.4HUI202-Fix.jar

RockeTalk 6.0.6 Handler UI202: RockeTalk 6.0.6HUI202.jar

ibibo iBrowser 2.2.05 Handler UI202: Ibrowser225hui202.jar


All UC Browser (UCWeb) Handler UI Mods:



UC Browser 8.0.3.107 Official Handler UI202: UCweb803_Off_HUI202.jar

UC Browser 8.0.3 Lite Handler UI202: UCweb803_Lite_HUI202.jar

UC Browser Mini 8 Lite Handler UI202: UCwebMini8_Lite_HUI202.jar

UC Browser 7.9 Official Handler UI202: UCBrowser7.9_O_HUI202.jar

UC Browser 8.0.3.99 Handler UI202: UCBrowser8.0_HUI202.jar

UC Browser 7.8 Indian Independence Day HUI 202: UC7.8IID_HUI202.jar

UC Browser 7.8 Indian Independence Day HUI 202: UC7.8IID_HUI202.zip

UC Browser 7.8 Mini Handler UI202: UCBrowser7.8LiteHUI202.jar

UC Browser 7.8 Mini Handler UI202: UCBrowser7.8LiteHUI202.zip

UC Browser 7.9 Private Beta Handler UI202: UCBrowser7.9_HU202.jar

UC Browser 7.8 Official Handler UI202: UCBrowser7.8OE_HU202.jar

UC Browser 7.8 Official Handler UI202: UCBrowser7.8OE_HU202.zip

UC Browser 7.8 Official Handler UI150: UCBrowser7.8OE_HUI50.jar

UC Browser 7.8 Official Handler UI150: UCBrowser7.8OE_HUI50.zip

UC Browser 7.8 Lite Handler UI150: UCBrowser7.8LiteHUI150.jar

UC Browser 7.8 Lite (for low memory) HUI 150: UCBrowser7.8LiteHUI150.zip

UC Browser 7.8 Patch Eng Handler UI150: UCweb7.8pHUI150.jar

UC Browser 7.8 Patch Eng Handler UI150: UCweb7.8pHUI150.zip

UC Browser 7.8 Eng Handler UI150: UCweb7.8HUI150.jar

UC Browser 7.8 Eng Handler UI150: UCweb7.8HUI150.zip

UC Browser 8.0 Alfa Eng Handler UI150-Fix1: UCweb8.0HUI150-F1.jar

UC Browser 8.0 Alfa Eng Handler UI150-Fix1: UCweb8.0HUI150-F1.zip

UC Browser 7.2 Handler UI 200b5: UCweb7.2HUI200b5.jar

UC Browser 7.7 Official Handler UI200b5: UCweb7.7OHUI200b4.jar

UC Browser 7.7 Official Handler UI 150-Fix1: UCweb7.7OHUI150-F1.jar

UC Browser 7.7 Official Handler UI 150-Fix1: UCweb7.7OHUI150-F1.zip

UC Browser 7.6 Official HUI123-Fix1: UC Browser-7.6 Off-HUI123.jar

UC Browser 7.6 Official HUI200b4-Fix1: UC-Browser-7.6 Off-HUI-200b4.jar

---

All Bolt Browser Handler UI Mods:



Bolt Browser 2.52 Indic Handler UI202: Bolt2.52FullHUI202.jar

Bolt Browser 2.52 Full Handler UI202: Bolt2.52FullHUI202.jar

Bolt Browser 2.52 Full Handler UI 202: Bolt2.52FullHUI202.zip

Bolt Browser 2.52 Full HUI150: Bolt2.52FullHUI150.jar

Bolt Browser 2.52 Lite HUI150: Bolt2.52HUI150.jar

Bolt Browser 2.52 Lite HUI150: Bolt2.52HUI150.zip

Bolt Browser 2.51 HUI150: Bolt2.51HUI150.jar

Bolt Browser 2.51 HUI150: Bolt2.51HUI150.zip

Bolt Browser 2.50 HUI200b4-Fix1: Bolt2.50HUI200b4-F1.jar

Bolt Browser 2.50 HUI200b4: BoltBrowser2.50HUI-200b4.jar

---

All Opera Mini and Opera Mini Mod Browser Handler UI Mods:


Opera Mini Mod 4.21 Beta16 Build 21563 HUI203: Opmod421b16hui203.jar

Opera Mini Mod 4.21 Beta16 Build 21563 HUI203: Opmod421b16hui203.zip

Opera Mini Mod 4.21 Beta16 HUI203: Opmod421b16hui203.jar

Opera Mini Mod 4.21 Beta16 HUI203: Opmod421b16hui203.zip

Opera Mini Mod 4.21 Beta15 HUI203: Opmod421b15hui203c.jar

Opera Mini 4.4.28000 New Alpha3 Fix3 HUI203: Opmin44a3hui203f3.jar

Opera Mini 6.5 Handler UI202: Opera Mini 6.5HUI202.jar

Opera Mini 4.2 Labs Handler UI150_New: OMM4.2LabsHUI150r2rh.jar

Opera Mini 5.1 HUI202 Rev1 With Night Mode: OM5.1HUI202R1.jar

Opera Mini Mod 4.21 Beta14 Handler UI203: OMM4.21B14HUI203-F1.jar

Opera Mini Mod 4.21 Beta13 Handler UI202: OMM4.21B13HUI202c.jar

Opera Mini Mod 4.21 Beta12 Handler UI202: OMM4.21B12HUI202c1.jar

Opera Mini Mod 4.21 Beta11 Handler UI202 Fix3: OMM4.21B11HUI202F3.jar

OM Mod 4.21 Beta11 Handler UI202 Fix2: OMM4.21B11HUI202F2.jar

OM Mod 4.21 Beta11 Handler UI202: OMM4.21B11HUI 202.jar

OMMod 4.21 B10 HUI202 Indonesia + Firefox Skin: OMM4.21B10HUI202In.jar

Opera Mini Mod 4.21 Beta10 Handler UI202: OMM4.21B10HUI 202.jar

Opera Mini Mod 4.21 Beta9 Handler UI202: OMM4.21B9HUI 202.jar

Opera Mini Mod 4.21 Beta9 Handler UI202: OMM4.21B9HUI 202.zip

Opera Mini Mod 4.21 Beta7 Handler UI202: OMM4.21B7HUI202.jar

Opera Mini 6.1 Handler UI202: Opera Mini 6.1HUI202.jar

Opera Mini 6.1 Handler UI150: Opera Mini 6.1HUI150.jar

Opera Mini 6.1 Handler UI150: Opera Mini 6.1HUI150.zip

Opera Mini 6.0 Handler UI200b4Fix1: OM 6.0 HUI200b4Fix1.jar

Opera Mini 6.0 Handler UI123Fix1: OM 6.0 HUI123Fix1.jar

Opera Mini Mod 4.21 Beta6 Handler UI202 Fix1: OMM4.21B6HUI202.jar

Opera Mini Mod 4.21 Beta6 Handler UI202 Fix1: OMM4.21B6HUI202.zip

Opera Mini Mod 4.21 Beta5 Handler UI150: OMM4.21B5HUI150.jar

Opera Mini Mod 4.21 Beta5 Handler UI150: OMM4.21B5HUI150.zip

Opera Mini Mod 4.21 Beta1 Handler UI200b5: OMM4.21B1HUI200b5.jar

Opera Mini Mod 4.20 Final Handler UI150: OperaMiniMod4.2HUI150.jar.zip

Opera Mini Mod 4.2 RC3 Rev1 Handler UI200b4: OMMod4.2RC3HUI200b4.jar

Opera Mini Mod 4.2 RC3 Rev1 Handler UI123: OMMod4.2RC3HUI123.jar

Opera Mini 5.1 Handler UI202 Optimized Low Memory: OM5.1HUI202.jar

Opera Mini 4.3 Rev3 Handler UI201: OM4.3R3HUI201.jar

Opera Mini 4.3 Handler UI200b4 Rev2: OM4.3HUI200b4R2.jar

Opera Mini4.3 Handler UI123 Rev2: OM4.3HUI123R2.jar

Opera Mini 4.3 Handler UI123: OM4.3HUI123.jar

Opera Mini 4.3 Handler UI200b4: OM4.3UI200b4.jar

---

All Other Browsers Handler UI Mods:


QQ Browser Mini 2.2.5 Handler UI202: Qqbrowser225hui202c.jar

QQ Browser 2.0.3.5 Handler UI200b5: QQBrowser2035HUI200b5.jar

Datou Browser 1.2 English Handler UI 200b5: Datou Browser1.2 HUI200b5.jar

Datou Browser 1.2 English Handler UI 200b5: Datou Browser1.2 HUI200b5.zip

OVI Browser 0.8.3 Handler Mod UI 200b4: Ovi-Browser083-HUI-200b4.jar

OVI Browser083 Handler UI 200b4: OVI Browser083HUI 200b4.jar

OVI Browser083 Handler UI 200b4: OVI Browser083HUI 200b4.zip

---

All Other Applications Handler UI Mods:


YourTube1.1.6 Handler UI202 Mod Fix 1: YourTube116hui202f1.jar

YourTube 1.1.6 Handler UI202 Mod Fix 1: YourTube116hui202f1.zip

Nimbuzz 1.9.3 HUI202: Nimbuzz193HUI202.jar

aeD 4.60 Download Manager Handler UI202: aeD4.60_HUI202.jar

Mozat 6.3.3 Handler UI202 Mod Fix 1: Mozat633hui202f1.jar

ShMessenger 3.3.2 Handler UI202: ShM332HUI202.jar

eBuddy 2.20 Handler Mod UI 200b4: eBuddy2.20b_HUI-200b4.jar

Snaptu 1.7.1 Handler Mod UI 202: Snaptu-1-7-1-HUI-202.jar

Snaptu 1.7.1 Handler Mod UI 202: Snaptu-1-7-1-HUI-202.zip

Empire 6.5.6 Online Game Handler UI202: Empire 6.5.6 HUI202.jar

MobTorrent 1.1 Handler UI202: MobTorrent1.1 HUI202.jar

160by2 v1.1 Free SMS App Handler UI202: 160by2 v1.1 HUI202.jar

Mozat 6.02 HUI150: Mozat6.02HUI150.jar

Nimbuzz 1.9.2 HUI150: Nimbuzz192HUI150.jar

Nimbuzz 1.9.2 HUI150: Nimbuzz192HUI150.zip

YourTube 1.10 Handler UI200b5-Rev1: YourTube110HUI200b5R1.jar

mig33 v4.60 Handler UI150: mig33v460HUI150.jar

TTPOD 1.10 Handler UI200b5: TTPOD110HUI200b5.jar

Snaptu1.71 Handler UI123: Snaptu1.71HUI123.jar

Snaptu1.71 Handler UI200b4: Snaptu1.71UI200b4.jar

World Of Dragon 1.1.8 S40 Handler UI 200b5: WOD118S40HUI200b5.zip

World Of Dragon 1.1.8 S60 DP3 Handler 200b5: WOD118S60HUI200b5.zip

Nimbuzz 1.90 Handler UI150R1: Nimbuzz 1.90 HUI150R1.jar

Nimbuzz 1.90 Handler UI150R1: Nimbuzz 1.90 HUI150R1.zip

ShMessenger-3-2-14 HUI200b4: ShMessenger-3214-HUI200b4-Fix1.jar


All UC Browser Handler UI Mods:



UC Browser 7.6 Final HUI200b4: UC-Browser-7-6-HUI-200b4.jar


UC Browser 7.2 Lite HUI200b4: UC-Browser-7-2-Lite-HUI-200b4.jar


UCBrowser7.5.1.77 Final HandlerUI 200b4: UCBrowser7.5 FinalHUI200b4.jar


UCBrowser7.5.1.77 Final HandlerUI 200b4: UCBrowser7.5 FinalHUI200b4.zip


UCBrowser7.5 Official Xmax Handler UI 200b4: UCBr7.5 Off HUI 200b4.jar


UCBrowser7.5 Official Xmax Handler UI 200b4: UCBr7.5 Off HUI 200b4.zip


UCBrowser7.4 Official Handler UI 200b3-Fix1: UCBr7.4 Offc HUI 200b3.jar


UCBrowser7.4 Official Handler UI 200b3-Fix1: UCBr7.4 Offc HUI 200b3.zip

UCBrowser7.4 Official HandlerUI 200b3: UCBrowser7.4 Official HUI 200b3.jar


UCBrowser7.4 Official HandlerUI 200b3: UCBrowser7.4 Official HUI 200b3.zip

UCBrowser7.2.2.51 HandlerUI 200b3: UCBrowser7.2.2.51-HUI200b3.jar

UCBrowser7.2.2.51-HandlerUI-200b1: UCBrowser7.2.2.51-HUI-200b1.jar


UCBrowser7.2.2.51-HandlerUI-200b1-(Signed): UCBrowserHUI200Beta1.jar

UCBrowser7.2.2.51-HandlerUI-200b1-(Signed): UCBrowserHUI200Beta1.jad

UC7.2 HandlerRMS Backup Mod: UC7.2 Handler_RMS BackUp.zip

UC7.2 Final Handler UI Mod: UC7.2 Final HandlerUI150.jar

UC7.2 Beta Handler UI Mod: UC7.2 Beta HandlerUI.jar

Ucweb 7.1 Handler UI Mod India: Ucweb 7.1 Final Handler Mod.jar

Ucweb 7.1 Handler UI Mod Indonesia: Ucweb 7.1 Final Handler Mod.jar
Ucweb 7.1 Handler UI Mod US: Ucweb 7.1 Final Handler Mod.jar
Ucweb 7- 7.0.0.41 English Handler UI: Ucweb 7 Final Handler Mod.jar

Ucweb 7- 7.0.2.37 Final Handler UI Mod: Ucweb 7 Final Handler Mod.jar

Ucweb 7.1 Handler UI Mod Ch Server: Ucweb 7.1 Final Handler Mod.jar

Ucweb 6.7 Handler UI Mod: Ucweb 6.7 Handler Mod.jar
Ucweb 6.3 Handler UI Mod: Ucweb 6.3 Handler Mod.jar
Ucweb 5.1 Handler UI Mod: Ucweb 5.1 Handler Mod.jar
---

All Bolt Browser Handler UI Mods:


Bolt2.31 Handler UI Mod 200b4: Bolt2.31-HandlerUI200b4.jar

Bolt2.31 Handler UI Mod 200b4: Bolt2.31-HandlerUI200b4.zip

Bolt2.31 Handler UI Mod 200b3: Bolt2.31-HandlerUI200b3.jar

Bolt2.31 Handler UI Mod 200b3: Bolt2.31-HandlerUI200b3.zip

Bolt2.3 Handler UI Mod 200b3-Fix1: Bolt2.3HandlerUI200b3-Fix1.jar

Bolt2.3 Handler UI Mod 200b3-Fix1: Bolt2.3HandlerUI200b3-Fix1.zip

Bolt2.1.1HandlerUi150_Signed: Bolt2.1.1HandlerUi150_Signed.jar

Bolt 2.10 Handler UI Rev2: Bolt2.1_Hui150_Rev2_New.jar

Bolt 2.10 HandlerUIRev1 antijoystick: Bolt2.10 HandlerUI150Rev1.jar

Bolt 2.10 Handler UI Mod: Bolt2.10 HandlerUI150.jar

Bolt 2.10 Lite Handler UI Mod: Bolt2.10Lite HandlerUI.jar

Bolt 2.02 Beta Handler UI Mod: Bolt2.02 HandlerUI143.jar

Bolt 2.02 Beta Lite Handler UI Mod: Bolt2.02Lite HandlerUI143.jar

Bolt 2.0 Beta Handler UI Mod: Bolt2.0 HandlerUI143.jar

Bolt 1.7 Handler UI Mod: Bolt 1.7 Handler Mod.jar
Bolt 1.7 Lite Handler UI Mod: Bolt 1.7 Lite Handler Mod.jar

Bolt 1.62 Handler UI Mod: Bolt 1.62 Handler Mod.jar

Bolt 1.6 Handler UI Mod: Bolt 1.6 Handler Mod.jar

Bolt 1.5 Handler UI Mod: Bolt 1.5 Final Handler Mod.jar

---

All Opera Mini and Opera Mini Mod Browser Handler UI Mods:


Opera Mini 4.3.24214 Editable HTTP Server B100(Alt Handler): OM4.3HTTPB100.jar

OperaMiniMod 4.2 RC3 Handler UI 123: OMMod4.2RC3HUI123.jar

OperaMiniMod 4.2 RC3 Handler UI 200b4: OMMod4.2RC3HUI200b4.jar

OperaMiniMod 4.2 RC2 Handler UI 200b4: OMMod4.2RC2HUI200b4.jar

OperaMiniMod 4.2 RC1 Handler UI 200b4: OMMod4.2RC1HUI200b4.jar

OperaMiniMod 4.2 RC1 Handler UI 200b4: OMMod4.2RC1HUI200b4.zip

OperaMiniMod 4.2 Test16 Handler UI 200b4: OMMod4.2T16HUI200b4.jar

OperaMiniMod4.2 Test15 Rev7 Handler UI 200b4: OMMod4.2T15HUI200b4.jar

OperaMiniMod4.2 Test15 Rev1 Handler UI 200b4: OMMod4.2T15HUI200b4.jar

OperaMiniMod4.2 Test14 Handler UI Mod 200b4: OMMod4.2T14HUI200b4.jar

OperaMini 5.1 Handler UI 100 for Android: Opera-Mini-5-1-HUI100.apk

Opera Mini 4.2-HUI Darkman Signed: OpMini4.2-HUI-Darkman Signed.jar

Opera Mini Mod 4.2-Test12-HUI 200b4: OMMod4.2-T12-HUI200b4.jar

Opera Mini Mod 4.2-Test11-HUI 200b4: OperaMiniMod4.2-Test11-HUI200b4.jar

Opera Mini Mod 4.2-Test11-HUI 200b4: OperaMiniMod4.2-Test11-HUI200b4.zip

Opera Mini Mod 4.2-Test10-HUI 200b4: OperaMiniMod4.2-Test10-HUI200b4.jar

Opera Mini Mod 4.2-Test10-HUI 200b4: OperaMiniMod4.2-Test10-HUI200b4.zip

Opera Mini Mod 4.2-Test9-HUI 200b4-Fix1: OMMod4.2-Test9-HUI200b4-Fix1.jar

Opera Mini Mod 4.2-Test9-HUI 200b4-Fix1: OMMod4.2-Test9-HUI200b4-Fix1.zip

Opera Mini Mod 4.2-Test9-HUI 200b4: OMMod4.2-Test9-HUI200b4.jar

Opera Mini Mod 4.2-Test9-HUI 200b4: OMMod4.2-Test9-HUI200b4.zip

Opera Mini Mod 4.2-Test8-HUI 200b4--Fix1: OperaMiniMod4.2-Test8-HUI200b4.jar

Opera Mini Mod 4.2-Test8-HUI 200b4-Fix1: OperaMiniMod4.2-Test8-HUI200b4.zip

Opera Mini Mod 4.2-Test8-HUI 200b4: OperaMiniMod4.2-Test8-HUI200b4.jar

Opera Mini Mod 4.2-Test8-HUI 200b4: OperaMiniMod4.2-Test8-HUI200b4.zip

Opera Mini Mod 4.2-Test7-HUI200b3: OperaMiniMod4.2-Test7-HUI200b3.jar

Opera Mini Mod 4.2-Test7-HUI200b3: OperaMiniMod4.2-Test7-HUI200b3.zip

Opera Mini Mod 4.2-Test5-HUI200b3: OperaMiniMod4.2-Test5-HUI200b3.jar

Opera Mini-4.2.20663-hui143+backlight: opera mini-4.2.20663-hui143+backlight.jar

Opera Mini 5.1.21051 Handler: opera-mini-5.1.21051 handler143.jar

OM4.2 Labs Handler Rev2_New: OM4.2 Labs Handler150Rev2.jar

OperaMiniMod4.2-Test3-English Handler: OpMod42Test3-HandlerUI150.zip

OperaMiniMod4.2Test1_Handler: OperaMiniMod4.2Test1_Handler.jar

OperaMini5HandlerUI150 antijoystick: opmin50hui150_antijoystick.jar

OperaMini5.0.19693 Handler UI Mod: OperaMini5.0.19693 Handler.jar

Opera Mini 5 Final Handler UI Mod: OperaMini5 Final Handler142.jar

Opera Mini 4.2 Lab Rev3 HandlerUI: Opmin 4.2 Labs Handler Mod.jar
 
Opera Mini 4.2 Lab HandlerUI Mod: Opmin 4.2 Labs Handler Mod.jar

Opera Mini 5 Beta 2 HandlerUI Mod: Opera Mini 5 Beta 2 Handler.jar
 
Opera Mini 5 Beta 1 Handler UI Mod: Opera Mini 5 Beta Handler.jar
 
Opera Mini 4.2 Handler UI Mod: Opera Mini 4.2 Handler Mod.jar

---

All Other Applications and Browsers Handler UI Mods:


eBuddy 2.20 Handler UI 200b4 Mod: eBuddy220HUI200b4Mod.jar

WorldOfDragon116S60DP2 HUI200b4: WOD116S60DP2 HUI200b4.jar

MGMaps13921Handler UI Mod200b4: MGMaps13921HUI200b4.jar

Google Maps 302 Handler UI Mod200b4(for TouchScreen): GMaps302HUI200b4.jar

Google Maps 302 Handler UI Mod200b4(for TouchScreen): GMaps302HUI200b4.zip

eBuddy 2.20 Handler UI 150 Mod: eBuddy220HUI150Mod.jar

RockeTalk 5.3.2 Handler UI Mod: RockeTalk532HandlerUI132.jar

Solve My Math 1.0 Handler UI Mod: SolveMyMath10Handler.jar

Snaptu1.30 Handler UI Mod: Snaptu 1.30 Handler.jar

Nimbuzz1.7.2-Touch-HUI 200b1: Nimbuzz1.7.2-Touch-HUI200b1.jar

Nimbuzz1.70 Handler UI Mod: Nimbuzz170 HandlerUIMod.jar

Baidu Browser 1.09 Handler UI Mod: Baidu 1.09 HandlerUI142.jar

DM Mobile 0.2.2 Handler UI Mod: DM Mobile 0.2.2 Handlerui142.jar

Mobile File Loader121 Handler UI Mod: MFL0121HandlerUI142.zip

Google Maps 2.3.2 Handler UI Mod: Google Maps2.3.2 Handler.jar

GTranslateTool 141Handler UI Mod: GTranslate v141 Handler142.jar

Mozat 5.2.1 Handler UI Mod: Mozat521HandlerUI142.jar

Morange 5.13 Handler UI Mod: Morange 5.13 Handler Mod.jar

Gmail 2.0.6 Handler UI Mod: Gmail 2.0.6 HandlerUI142.jar

Snaptu1.28 Handler UI Mod: Snaptu1.28 Handler Mod.jar

Snaptu1.26 Handler UI Mod: Snaptu1.26 Handler Mod.jar

Mig33 v4.20 Handler UI Mod: Mig33 v4.20 Handler Mod.jar

eBuddy 1.5.0 Handler UI 200b3: eBuddy150HUI200b3.jar

WorldOfDragon115S60DP2HPHUI200b4: WOD115S60DP2HPHUI200b4.jar

WorldOfDragon115S60DP3HUI200b4: WOD115S60DP3HUI200b4.jar

World Of Dragon 111 Handler: WorldOfDragon111Handlerui150.jar

iWidsets 2.2.0 Handler Ui: iWidsets220HandlerUi150.jar

YourTube1.03 Handler UI Mod: YourTube103handlerui150.jar

Shmessenger 3.1.9 Beta Handler UI Mod: Shm319bHandlerUI142.zip

Shmessenger 3.1.10 Beta Handler UI Mod: Shm3110bHandlerUI143.zip

Skype1.21 Handler UI Mod: Skype1.21 Handler Mod.jar
Twittai 1.3 Handler UI Mod: Twittai 1.3 Handler Mod.jar

How to Use of Queries In Handler UI Mod Editable Server:


In field Custom HTTP Server : put any customizable proxy server (example: http://wapx.amob.com) with main server of app (example: server4.operamini.com:80/). In this block to use it as proxy http server (example: http://wapx.amob.com.server4.operamini.com/) in any app,

In field Front Query : It mostly used for adding downloading server or downloading trick (exp: wapx.amob.com@) but works only with some service providers,
In field Middle & Back Query : These are mostly useless for us so just leave it blank.
In field Remove String From URL/Remove Port From URL : Leave it blank for default.
In field HOST : You can provide host address or any server here to have a host server.

For example you can try following in Opera Mini 4.2 handler mod:
1. For fast speed: HTTP Server: http://mini5beta.opera-mini.net:80/ ; Front Query(only if its working for you otherwise leave it blank): wapx.amob.com@ ; Host: http://10.0.0.172/ ; Leave other fields blank.
2. HTTP Server: http://wapx.amob.com.server4.operamini.com:80/ ; Front Query(only if its working for you otherwise leave it blank): wapx.amob.com@ ; Host: http://10.0.0.172/ ; Leave other fields blank.

You can also use this indiatimes server for free browsing: http://wap.indiatimes.com/usearch/http://mini5beta.opera-mini.net:80/ or add another in place of http://mini5beta.opera-mini.net:80/
Read more >>
 

Total Pageviews

Translate

7TeraByte © 2012. All Rights Reserved | DMCA Protected | Back To Top