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

Wednesday, November 8, 2017

Save 30% on HostGator Hosting: December 2016 Discount Code|stock rom go to rompure.com

hostgator-2016-maximum-discount-coupon-october
Planning to buy a hosting for your WordPress blog or a website? Here is an exclusive discount coupon to save extra money on your Hosting bill.
Shopping for best web-hosting is always a tough job and to make it easier for you, I have suggested some of the best hosting for your blog here.
Hostgator is one of those hosting companies, which is there for long, and loved by millions of webmasters. It offers affordable shared hosting, and the unlimited resources help every entry level & mid-level blogger to get perfect hosting for their WordPress blog.
One thing which in particular I like about Hostgator is their excellent server quality. They also offer multiple ways to connect with support. Apart from support ticket & chat, you can always get in touch with them via phone. I prefer contacting them via Telephonic support, as it makes it faster to get hold of them. Moreover, when it comes to handling the load of a WordPress blog, Hostgator does the job pretty well.
Even in our Webhosting comparison, Hostgator stood out in many parameters. Along with usual shared hosting features, Hostgator offers free blog migration service, which indeed very helpful for those who are planning to shift from free hosting or cheap shared hosting to reliable shared hosting.
Hostagtor 60 off
Like every month, I’m sharing Hostgator discount coupon which will help you to save money when you buy hosting from Hostgator. Before I share this exclusive Hostgator maximum discount coupon for the month for November 2016, here are some of the notable features of Hostgator Baby plan:
  • Unlimited hosting
  • Unlimited bandwidth
  • Unlimited storage
  • Free primary domain renewal
  • 24*7 tech support (Chat, Email, Phone, Twitter)
  • Free Adwords Credit
  • One clicks WordPress installation
Hostgator is compatible with the hosting requirement of the latest version of WordPress, so if you planning to host a WordPress blog, Hostgator is an idle choice. Hostgator offers 3 shared hosting plan, and I suggest you to opt for Baby plan where you can host multiple websites, but if you are planning to host only one WordPress blog, hatchling plan is ideal. Whenever I purchase Hostgator hosting, I opt for Baby plan as it allows unlimited domain hosting.

Hostgator monthly 30% discount coupon: SHOUTMELOUD30

Hostgator best discount
You can use coupon code “SHOUTMELOUD30” to get a maximum hosting discount of 30% off on your total bill. This is very useful if you are shopping hosting for 1 or more years. Here is a screenshot of discount on hosting, when I applied coupon code: FREEUPGRADE3
Sign up for 30% discount ( COUPON: SHOUTMELOUD30)

Hostgator almost free hosting discount coupon: ShoutMeLoud

Here is another coupon code “ShoutMeLoud” which you can use to grab the first month hosting for only 1 cent. This is useful if you wish to try your hands on Web hosting before paying in full. Though if you planning to use hosting for long, I would suggest buy hosting for one year and use above coupon.
Here is a screenshot of hosting discount using coupon: ShoutMeLoud
hosting-1-cent-hostgator
Sign up for 1 cent hosting (Coupon: ShoutMeLoud)
Hostgator also started domain service, but I would recommend you to buy the domain from somewhere else like Godaddy or Namecheap, as domains on Hostgator is costlier. Though Hostgator hosting is top class, and they will surprise you with their hardware quality.
I have created this post to help you understand; how to use the above coupon
Do let us know which  HostGator coupon code you used and if you are an existing customer of Hostgator, do let us know your views and feedback about their hosting quality.

Monday, November 6, 2017

Friendly Facebook Popup Like Box Widget for Blogger|stock rom go to rompure.com

Facebook that is also known as fb is best of one leading social media site having millions of daily active users on it from all over the world with Page Rank 9 on Google. If your blog has lots of FB Likes and shares then it is 100% true that your site will get surely get huge traffic and value on the internet world. Because the value of more fans will help you to improve presence of your site on search engines. So for increasing the fb fans of your website you should add a Facebook like widget to your blogger blog, but if that widget has rich with popup facility that popup first to your user whenever visitor visit your website then more chances to get more likes.

Facebook Popup Like Box

This is the best Facebook Popup Like Box for Blogger ever i have seen, because it has friendly looking structure that covers with smoothly light gray colored border with appropriate size. It is build using light weight coding that does not harm your site's performance and SEO ranking, because if you site loads slowly then Google will surely rank down your blog for this, So you need not worry about that. Okay come to the topic, now we will learn about inserting gadget code in your blogspot log.

How to add Facebook Popup Like Box to Blogger


1. Go to your Blogger Dashboard >> Layout, click on Add a Gadget and the scroll down and select "HTML/JavaScript"
2. Now copy the below piece of code and paste it into HTML/JavaScript blank box<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js' type='text/javascript'></script>

HTML CODE :
 
<style>
#fbox-background {
display: none;
background: rgba(0,0,0,0.8);
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 99999;
}
#fbox-close {
width: 100%;
height: 100%;
}
#fbox-display {
background: #eaeaea;
border: 5px solid #828282;
width: 340px;
height: 230px;
position: absolute;
top: 32%;
left: 37%;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
#fbox-button {
float: right;
cursor: pointer;
position: absolute;
right: 0px;
top: 0px;
}
#fbox-button:before {
content: "CLOSE";
padding: 5px 8px;
background: #828282;
color: #eaeaea;
font-weight: bold;
font-size: 10px;
font-family: Tahoma;
}
#fbox-link,#fbox-link a.visited,#fbox-link a,#fbox-link a:hover {
color: #aaaaaa;
font-size: 9px;
text-decoration: none;
text-align: center;
padding: 5px;
}
</style>
<script type='text/javascript'>
//<![CDATA[
jQuery.cookie = function (key, value, options) {
// key and at least value given, set cookie...
if (arguments.length > 1 && String(value) !== "[object Object]") {
options = jQuery.extend({}, options);
if (value === null || value === undefined) {
options.expires = -1;
}
if (typeof options.expires === 'number') {
var days = options.expires, t = options.expires = new Date();
t.setDate(t.getDate() + days);
}
value = String(value);
return (document.cookie = [
encodeURIComponent(key), '=',
options.raw ? value : encodeURIComponent(value),
options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
options.path ? '; path=' + options.path : '',
options.domain ? '; domain=' + options.domain : '',
options.secure ? '; secure' : ''
].join(''));
}
// key and possibly options given, get cookie...
options = value || {};
var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent;
return (result = new RegExp('(?:^|; )' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null;
};
//]]>
</script>
<script type='text/javascript'>
jQuery(document).ready(function($){
if($.cookie('popup_facebook_box') != 'yes'){
$('#fbox-background').delay(5000).fadeIn('medium');
$('#fbox-button, #fbox-close').click(function(){
$('#fbox-background').stop().fadeOut('medium');
});
}
$.cookie('popup_facebook_box', 'yes', { path: '/', expires: 7 });
});
</script>
<div id='fbox-background'>
<div id='fbox-close'>
</div>
<div id='fbox-display'>
<div id='fbox-button'>
</div>
<iframe allowtransparency='true' frameborder='0' scrolling='no' src='//www.facebook.com/plugins/likebox.php?
href=https://www.facebook.com/your-page-username&width=330&height=220&colorscheme=light&show_faces=true&show_border=false&stream=false&header=false'
style='border: none; overflow: hidden; background: #fff; width: 330px; height: 220px;'></iframe>
<div id="fbox-link">Powered by <a style="padding-left: 0px;" href="http://solvelogger.blogspot.com" rel="nofollow">Solvelogger</a></div>
</div>
</div>
3. Save it.

Now its time to customize the gadget according to your desire

✼ Replace https://www.facebook.com/solvelogger with your own Facebook page URL
✼ By default the gadget appears after the page finishes loading. But if you want to change the default delay then simply change the 5000 to any desire number. you can search find it by searching the below code.
Note: 5000 means 5 seconds, if you want this gadget to load in 3 seconds then simply change it to 3000.
delay(5000)
✼ This fb like box only shows up the first time the user visits your web page. If you want the Facebook widget box to pop-up every time the page loads, then simply remove the below line of code:
$.cookie('popup_facebook_box', 'yes', { path: '/', expires: 7 });
✼ If you would like to display the gadget only whenever user visits your homepage, then follow the below instructions:
1. Go to Template >> Edit HTML, now search for </body>
2. Now paste the Facebook popup widget box right above the body tag and kindly make sure that you have included the conditional tags below:
1&lt;b:if cond='data:page.type == "index"'&gt;Kindly Add The Facebook Widget Code Here &lt;/b:if&gt;
3. After completing the required task, just click on save button to save your settings
Now you have successfully added Facebook Popup Like Box Widget to Blogger
So this was our guide on Friendly Facebook Popup Like Box Widget for Blogger , I hope the methods given above helped you.

BEST WORDPRESS PLUGIN FOR CHAT AND SUPPORT|stock rom go to rompure.com


Live chat has become common on most of the websites today that not only helps the customers to clear all the confusion about products and services of any website but also to increase the value and trust of your brand.

The success of any business depends on the satisfaction level of its clients. Live chat and support plugin enables you to directly interact with your customers, clients or readers and help them to solve the problem they are facing.

WORD PRESS PLUGIN FOR CHAT AND SUPPORT

There are various live chat and support plugins that can be integrated on WordPress website without any hassle and gives you an easy and professional way to manage and organize your chat. These live chat plugins will appear on your website wherever you want to in order to provide support, feedback online or offline in much easier and flexible.

Now you don’t have to wait for days or hours to resolve query, ask your favorite blogger or website owner about any query regarding their website or product and get reply instantly. As a website owner, it is a must have service that you need in order to increase your sales and saves employee task time and phone expenses. I have shared some best WordPress live chat and support plugins that you must integrate with your website, let’s have a look.

10 Best WordPress Plugins for live chat and support


1. WordPress Live Chat Plugin
WordPress Live Chat Plugin is a premium plugin with high-quality features that connect your support staff to resolve the problem of visitors or any inconvenience. It provides an easy and convenient way to chat with your visitors simply and beautifully.

WordPress Live Chat Plugin

WordPress Live Chat Plugin provides amazing features which includes email notification, availability to install to unlimited websites.

2. WP Live Chat Support
WP Live Chat Support is one of the most cost effective live chat plugins that enables you to chat with your visitors in just no time. If you have small business, it is just the perfect live chat plugin for your WordPress website.

WP Live Chat Support

WP Live Chat Support comes with easy to use interface for admin and visitors, unlimited simultaneously live chats. It is compatible with all caching pluginS.

3. ClickDesk Live Support
ClickDesk Live Support is one of the best WordPress live chats, help desks, voice chats and social toolbar for your website. ClickDesk allows your visitors to have voice and video chat from your website directly without the need of additional hardware or software.

ClickDesk Live Support

The plugin works seamlessly across all major websites and advanced chat queuing.

4. Formilla Live Chat
Formilla Live Chat is an excellent live chat and support solution that offers your visitors to chat with you live for any question or support. The plugin has an easy to use interface and online live chat begins immediately.

Formilla Live Chat

Formilla Live Chat comes with real-time visitor monitoring and tracking that lets you see number of active visitors and initiate live chat with them.

5. Casengo Live Chat Support
Casengo Live Chat Support is all-in-one mail, chat and social media tool comes with easy to use interface and great design. The plugin allows you to add live chat on your website quickly and easily to handle visitor’s questions via live chat and emails.

Casengo Live Chat Support

Casengo also supports WhatsApp to help you to communicate with your customers quickly and efficiently. With Casengo, you can handle queries from anywhere.

6. Wise Chat
Wise Chat provides an effective way to build social network and to increase visitors’ engagement on your website by providing real time message exchange service. Wise Chat comes with growing list of features and constant support.

Wise Chat

You can attach files directly to your messages with automatic bans if any visitor exceeds the limit of bad words.

7. Zopim Live Chat
Zopim lets you monitor and chat with visitor surfing in real time. It enables you to manage multiple conversations easily through online dashboard.

Zopim Live Chat

Zopim includes advanced analytics that monitors visitor flow, usage pattern and increases the changes of high value engagement.

8. Pure Chat
Pure Chat is leading live chat software that allows you to have chat with your visitors or clients in real-time just from anywhere. Pure Chat is simple and intuitive that it takes less than 3 minutes for the installation process.

Pure Chat

Pure Chat includes features lie canned responses, chat box assignment, hosted chat boxes, multi-chat management and more.

9. LiveSupporti
LiveSupporti is one of the most cost-effective plugins that provides forever free plan of around 150 chats per month.

LiveSupporti

You can have support for unlimited concurrent chats for unlimited websites absolutely free.

10. Tidio Live Chat
Tidio Live Chat is fast live chat service that allows you to easily communicate with your visitors and customers. Tidio Live Chat takes less than 20 seconds to integrate with your website.

Tidio Live Chat

It allows you to get offline messages from your visitors to send an email when you are not online

Sunday, November 5, 2017

Online Marketing Strategies, Tools and Tips|stock rom go to rompure.com


The internet has proven to be one of the best means of marketing. There are numerous methods by which you can market your products online. The advantage of internet or online marketing is that the cost involved is lower as compared to other methods of marketing.

Online Marketing
Effective Online Marketing can help you earn big!

Other major advantages include its wider reach in the global market, increasing number of internet users, greater flexibility and better chances of building a healthy customer relationship. Here are a few methods by which you can market your online products easily.

Blogging


Blogging is one of the most prolific methods of online marketing and everyone is inclining to this method as it is easier in comparison to other methods. You can start a blog for any kind of business, no matter big or small. Here, you are required to write about your products and services in a way that the reader easily comprehends. This is highly beneficial as there are many readers who prefer to read blogs. All you need to do is to promote your blog in a manner that drives readers to your blog.

Social Media Marketing


This kind of marketing is on the rise these days due to the increasing number of people using the social media to keep in touch with their loved ones. There are different social media sites like Facebook, Twitter, MySpace, etc where you can build a relationship with customers and hopefully, sell your products. The communication done through social media is friendlier than the one in other kinds of marketing methods.

Email Newsletters


Email marketing involves sending emails to targeted customers. These emails contain newsletters that talk about your products in a way that lures customers into buying them. Most successful email marketing packages comprise of colorful backgrounds, professionally designed graphics and brilliantly written description. To make a success out of an email marketing strategy, you need to prepare the email newsletter in such a way that it arouses interest in a customer and not annoy him.

Article Marketing


This is more or less like writing blogs, the only difference being the fact that articles are written and submitted to top article directories whereas blogs are written on CMS’s like WordPress and Blogger. When you describe your product in the article, you need to make sure that there is some extra information that the reader might find interesting. This may induce an interest in the customer about buying your products or services. At the conclusion of the article, you provide a link that leads the readers to your website which helps in bringing more traffic to your website, thus making your business an imposing success.

How To Disable YouTube Pre-Video Advertisements|stock rom go to rompure.com

How To Disable YouTube Pre-Video Advertisements

Disable YouTube Pre-Video Advertisements

There are a lot of ways to block ads, but with a simple command, you can disable all ads on YouTube by following the below given steps:

#1 Open up a YouTube video (any will work).

#2 Open up the developer console (Ctrl+Shift+J for Chrome, Ctrl+Shift+K for Firefox)

#3 Enter the following code:

12document.cookie="VISITOR_INFO1_LIVE=oKckVSqvaGw; path=/; 
domain=.youtube.com";window.location.reload();


#4 Boom, you just disabled YouTube Pre-Video Advertisements.


P.S When you close the window and reopen it, you need to add the command again for disabling the ads.

How to Add Sitelinks Search Box on Search Results|stock rom go to rompure.com

How to Add Sitelinks Search Box on Search Results

To make content searches easier for your users, add just one markup declaration on your home page, telling the Google crawlers that users can search your site directly from Search results. Once we scan your home page and after users perform relevant navigational queries for your property, the search box appears in results. If you also have an app that corresponds to your website, add another line of markup so that your app users can search their apps directly from a mobile device following a navigational query.

The following illustration shows a navigational query for pinterest from the desktop, which then displays a Sitelinks search box above the sitelinks for Pinterest. The user can search "pizza" directly in Search results to open content in the Pinterest site.

Sitelinks Search Box

How do you set it up?

The Sitelinks search box setup involves the following general steps:

1. Install a working search engine on your web site.
Sitelinks search queries send the user to the search results page for your site, so you need a functioning search engine to power this feature.

2. Put the schema.org markup on your homepage.
Your home page is the only page that requires markup to specify a Sitelinks search box. The JSON-LD examples below show all the elements you need for a site-only search box.

3. Wait for Google Search algorithms to identify your site or app as a candidate for the new Sitelinks search box.

123456789101112<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "https://www.example.com/",
"potentialAction": {
"@type": "SearchAction",
"target": "https://query.example.com/search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>

4. Copy and paste the following code into a plain text document:
5. Add your website to the “url” section of the script.
6. Add your website search links to the ”target” section of the script.
7. Copy and paste your edited script into the head or body of your webpages.
8. Troubleshoot your script with Google’s Structured Data Testing Tool.

How to add your organization's logo in search results|stock rom go to rompure.com

How to add your organization's logo in search results

Specifying Your Organization's Logo

You can specify which image Google should use as your organization's logo in search results and the Knowledge Graph.

To do this, add schema.org Organization markup to your official website that identifies the location of your preferred logo.

organization's logo

For example, a business whose homepage is www.example.com might add the following markup using visible on-page elements on their homepage:

12345678    <script type="application/ld+json">
    {
      "@context": "http://schema.org",
      "@type": "Organization",
      "url": "http://www.example.com",
      "logo": "http://www.example.com/images/logo.png"
    }
    </script>

This example indicates to Google that this image is designated as the organization’s logo and, where possible, may be used in Google search results. Markup like this is a strong signal to our algorithms to show this image in Knowledge Graph displays.

To add your organization's logo to your website’s, follow these simple steps:

1. Make sure you have the ability to add script to your website’s backend. If you don’t, send these instructions to your website developer.
2. Copy and paste the following code into a plain text document:
3. Add your website to the “url” section of the script.
4. Add your organization's logo links to the ”logo” section of the script.
5. Copy and paste your edited script into the head or body of your webpages.
6. Troubleshoot your script with Google’s Structured Data Testing Tool.

How To Delete Facebook Account Permanently|stock rom go to rompure.com

How To Delete Facebook Account Permanently

Facebook is world largest social media platform where we make account, pages groups to connect with people around the world. As we create account which works like our identity, its really easy to find someone with their name and information to connect with them through Facebook. We can use various method to connect with friends, family and other people. As we add people in our personal account and even you can create pages to connect with fans at large extend just because Facebook account are limited. Sometimes we have crossed our maximum friend limit in account then its really become problem for us to connect with more people. I know Facebook introduce following features but Facebook pages are more flexible to reach more audience than account.

Today i am going to explain one more important features which ever user need to know is deleting Facebook account permanently. As their is not option available in account to delete any account permanently. As you can deactivate but which you can activate again in future whenever you want. In some condition we have more Facebook account or even some reason we want to delete account permanently then we want to delete permanently but we are unable to find option. If you also want to delete Facebook account permanently then i will explain you a method to delete account. This process takes around 14 days for permanent deletion. So follow method steps by steps carefully to complete deletion.

Steps To Delete Facebook Account Permanently


* First of all Open you Facebook account which you want to delete permanently.

* Then open the page to delete account From Here.

* After that click on Delete My Account Button.

facebook delete account request

* Now Security check box will appear and enter your password and captcha text to continue.

* Then Message Will appear about Account Deactivation for 14 days and after that account will be permanently deleted.

facebook account permanently deleted

* After completing 14 days your will be deleted permanently and make that you will not have to log in again after submit a request for deletion because if you continue to log in then account be activated again.

* If you login again then you will see this message in your account. Then you have 14 days to continue and cancel account deletion process.

facebook account deletion scheduled

I hope this will help you a lot and you have learn how to deleted Facebook account permanently.

How to automatically redirect Blogger blog to another blog or website|stock rom go to rompure.com

How to automatically redirect Blogger blog to another blog or website

That is you can redirect your specific post URL to another post or page, all 301 or 302 redirection within your blog. That will be useful for redirecting 404 error pages and broken links; however with that you cannot redirect homepage to any particular URL. Here we will show you how to automatically redirect Blogger blog to another blog or website or any URL. So with this technique you can redirect your Blogger Homepage or any particular page to external websites.

redirect Blogger blog to another blog

When to use this?

This one will be useful if you have just migrated to new domain with new blogging platform. You are always limited in Blogger that’s why people moving to self-hosted wordpress blogs. Usually you won’t get much traffic to your new blog when you just shifted. Also your old blog will have some decent traffic flow from organic search results as well as from backlinks. So by using this method you can drive traffic from your old blog to your new blog and also it passes all the ranking factors.

How to redirect Blogger blog to another blog / URL / Website

Here we will share three different codes that automatically redirect Blogger blog to another blog or URL and each code does different tasks.

Let’s say you want to redirect your complete Blogger blog to another page or URL. That is redirecting your homepage, posts page, archives page and all other URL in your blog to another specified external website. You have to use this if you just moved to new domain. To do this you are going to make changes to your template file. So before you mess up with the codes it’s recommended that you backup your template first.

1. Login to your Blogger dashboard

2. Go to template and click edit HTML

3. Now you can see template codes. Press CTRL + f and then find <head>

4. Now add the following code below head tag

12345<script type='text/javascript'>
  var d='<data:blog.url/>';
  d=d.replace(/.*\/\/[^\/]*/, '');
  location.href = 'http://yourdomain.com';
</script>

In the above code change http://yourdomain.com which is the destination URL. Now all your pages from the blog will be redirected to destination URL.

Now we will see another piece of code that redirects particular blog URL to another blog or website. If you wish not to redirect the whole blog then you have to make use of this code. Also you can use this for redirecting user from a particular page to another external website for promotional purpose.

To do this just paste the following code below head tag and change the from URL that is http://yourblog.blogspot.com and destination URL that is http://yourdomain.com

123456<script>
if(window.location.href == 'http://yourblog.blogspot.com ')
{
window.location="http://yourdomain.com";
}
</script>

The above code just redirects user from the specified BlogSpot URL to another website or URL.

Here comes another code; with this you can redirect all your blog pages including home page to another blog or website with specific set time. So users who lands in your blog will be automatically redirected to anther blog after a specific time period.

1<meta content='5;url=http://yourdomain.com' http-equiv='refresh'/>

This is the code, just copy and paste below the head tag in your template file. In the above code 5 is the set time where users will redirected to http://yourdomain.com in 5 seconds after landing.

Hope this article guided you on how to automatically redirect Blogger blog to another blog / website or URL. Share this and if you found it useful then please leave your comments.

How to Download Youtube Video Without Any Software|stock rom go to rompure.com

How to Download Youtube Video Without Any Software

youtube downloader

There are many ways you can download Youtube videos without any software. I'll discuss two of them in this tutorial, the ways are given below:

1) Open Youtube and select the video you want to download.
When the video is playing click on the address bar and replace the word 'youtube' with 'voobys' and press enter. You will be redirected to another site, there you can see DOWNLOAD button, Click on it.

NOTE= For this method you should have Java installed on your computer once.


2) When the video is playing click on the address bar (URL)
Then replace www and the period (Dot) with 'ss' just before 'youtube' and press ENTER.
You will be redirected to another site, there you can download this video in any format you want.

How To Open/Show Hidden Files & Folders In Windows 7, 8, 10|stock rom go to rompure.com

How To Open/Show Hidden Files & Folders In Windows 7, 8, 10

If you do not know how to open or show hidden files and folder then don’t worry because in this article we explain about different methods to open or show hidden files and folder with inbuilt windows feature.

Open or Show Hidden Files & Folders Windows Option


1. Double click on My computer icon. Now you see my computer Window.
2. In My computer Window, look for organize button.
3. Click the Organize button. Now you see a dialog box.
4. In the dialog box windows click on Folder and Search option.

Folder and Search option

5. Now you see another dialog box. In the next dialog box click on view button.
6. In the Next windows you see hidden files and folder option.
7. In the hidden files and folder option select the show hidden files and folder radio button.
8. Click on Apply button and then click OK.

show hidden files and folder

This is Modified article for How To Hide Files & Folder In Windows 7, 8, 10

How To Use Pendrive As Ram In Windows xp 7 8 10|stock rom go to rompure.com

How To Use Pendrive As Ram In Windows xp 7 8 10

RAM is random access memory the main memory of our device which execute each and every process perform. More our device ram more the speed of run time means Ram is only memory which took load of all the processes occur just like we run any application, music file, game all these things are run in temporary memory. RAM if you run number things at same time then you may face not responding problem just because RAM , Paging and cache memory is lesser that your current apps requirements. But not any easy part to upgrade your ram its also costly.
Don’t worry here is concept if Virtual memory means You can increase your RAM just by using any device as virtual Ram. This virtual not have same performance as compare to your actual device ram but this concept increase Paging memory and some other functioning which means your overall performance become good and Some application also easily smart running without any not responding issue.

How To Use Pendrive As Ram

Method 1st:- Virtual Ram Concept For Windows XP, 7 and 8

  1. First of all Insert Your Pen Drive.
  2. Then open “My computer” and Right click >> Then open “Properties”.
  3. Now Properties window will appear, then click on “Advanced system settings” from left side.
  4. Then in “Advanced” Tab click on “Settings” Button appear in “Performance tab”.
  5. Again new window will appear then click on “Advanced” Tab.
  6. In Advanced Tab there is an option of “Virtual Memory box”, Then click on “Change Button”.

Advanced system settings
Virtual Memory

Process of Increasing Virtual Ram
  • After click Change Button “Virtual settings” will appear.
  • Now unchecked the box of “Automatically Manage Page size feature”.
  • Then in Custom size Add Your Pen Drive current same in below format.

Virtual Ram

Note:- If Your Pen Drive is of Size 4Gb then always add 10Mb less from current available size. As i am using pen drive of size 4Gb and current space available is 3700 Mb then use 3690 minimum approx or remove more as you can because it better of device safety.

  • Now Add same “Value” in both boxes and click on Apply button.
  • Restart Your PC or Laptop and Now pen drive work as “Virtual Ram”.
Important:- If you face problem in above method then can also follow below method which is easy to perform and work on Window 7, 8

Method 2nd:- Increase Ram Using ReadyBoost In Windows 7, 8, 10

  • Firstly Insert your “Pen Drive” >> Now Right click on your pen drive.
  • Open “Properties” >> Then “ReadyBoost” Tab.

Pendrive As Ram

  • Then switch to “Use this device” and reduce your current memory space. If your current device place is 3700MB then reduce it with approx 200-300MB.

ReadyBoost pendrive

  • Then click on Apply button and all Done.
  • In case if you want to change back your pen drive to normal then switch it back Don’t use device in Readyboost tab.

Important Recommendations:-

  • Always Safely Eject Your Pen Drive. Direct remove removal may leads to device damage.
  • In Virtual Memory method If you want to convert back your Pen into Normal Then Again open Virtual Settings And Remove custom memory value and choose Default settings by checking “Automatically Manage Paging Size”.
  • In ReadyBoost method don’t forget to revert back to normal or otherwise open your pen drive and delete Readyboost file from your pen drive.
I Hope You enjoy both method Virtual Ram method and Readyboost method and find them helpful and knowledgeable.

If you know any better method for Increasing ram must share your ideas in below comments.

How to Confirm or Accept all Facebook Friend Requests at Once|stock rom go to rompure.com

How to Confirm or Accept all Facebook Friend Requests at Once

Today i am going to discuss about how to accept all pending friend request at once. Normally if our only motive is to increase friends on Facebook. Even we start getting more request as compare to normal user. So the problem we Facebook to accept them one by one which consume a lot of precious time. So don’t here is method to accept all Facebook friend request by single click.

Method To Accept All Pending Friend Requests

  • First of all click below given link and open it into the browser in which you have open your Facebook account.
  • After opening above given link in browser. All Pending request will visible there.
  • Now Click F12 to open console box or even you can open it by doing right through Inspect Element.
  • Copy below given code and paste it in console box. It will look like as shown below.

accept confirm all facebook friend request script
1javascript:for( i = 1;i<document.getElementsByName("actions[accept]").length;i++){document.getElementsByName("actions[accept]")[i].click();}void(0);
  • After pasting above given code. Press Enter and wait for sometime until all pending request will not get confirmed.
  • Now Scroll down and make sure all request are accepted. In case their is a See more option then click on it.

accept all facebook friend request at once

  • Again run the same script in console to accept request of pending request.
  • Follow the same process until all the request will not get accepted.

confirm all facebook friend request at single click

I hope you like this trick to accept all pending friend requests. If you face any suggest regarding this topic must leave your precious comment.

How To Convert Facebook Profile Into Page|stock rom go to rompure.com

How To Convert Facebook Profile Into Page

Facebook is great place for meeting peoples, joining them or also for making fans all around world. Facebook respect their users and they want to introduce everything what their user want.

Now here i am going to introduce another amazing Facebook topic about converting Personal Facebook account into fans page. I have already written an article on this topic but due some circumstances and confusions on readers side, I decided to elaborate this migration feature again.

Many users have doubt that is it possible to do.?

Absolutely yes, Facebook introduce migration feature because Facebook account have limitation of 5000 friends. So is you are using Facebook for business purpose or if you are big star or famous personality….:D And you have lots of fans following then you personal account will reduce your business to grow fast. So the only possible way is if convert your account into a fans or business page

What will happen if you use this feature for your account ?

I know every want to make it’s on name page with lots of fans but is it option helpful for you.?

Firstly you have to understand all thing about how it’s work and what will be it’s results.

If your personal account have lots of friends and also too much subscribers / followers. Then by migrating account into page converts your all friend list and followers list into fans list of your new page.

Lets take example if have 5,000 friends and 15,000 followers on account when you convert it. Your page will be of 20,000 fans. Yeah! it’s might looking good but it has many impacts after migration.

Before migration, you have to know very well about these listed results.

Migration only converts your friends and followers into page fans. So all the other information will be deleted. Which includes your personal information, messages, apps, groups you owner and also joined, status, personal photos, tagged photos, shared videos etc. All thing which are relates or required account will become unavailable. The only thing will left in your account is page which you made.

If you feel that you are at right place for conversion of account. Then before converting account you have to download your account information.

Steps to convert your Account into Fans Page.


Now here come to the main part of this article for which you are waiting, If you read all above results and after you really thing about converting you account.

Then follow all steps very carefully

  • Firstly you have to log in into your account which you want to convert. Then setup name of your account because name of your will be name of your page of if want change, then change it before migrate.
  • When you are ready to convert then go to Facebook help center and search about migrate account or visit here

convert

  • In help center you will find full clarification about migrate and they also provide link of migration. If you are not able find then visit here
This will open migrate page, it look like same making new page form.

migrate page

  • Then select your page category like business, brand or community etc. After selecting category they get required your password as you want convert or not.
Sometime its also show this error that log in into your account from previous device you used for log in. So don’t worry it take 24-48 hours because of account security after this time period your are able to migrate
After providing password your page will refresh and start converting your account into page and wait for few min to complete conversion of all members.

Convert Facebook Profile Into Page

After complete conversion your page is ready to use. you can also enjoy your page from existing account of also you can make your another account as admin by email adding at admin panel.

Is this migration is reversible ?

No, This migration is not reversible so if you migrate your account accidentally with wrong name or other reason by mistake.Then sorry my friends your account is now come in great problem. Facebook is now providing a application form to appeal to reverse your page back into account. But Chances are 10% only for helpful result because this form required your ID proof which matches your account name also. So if you are able to provide then you can appeal here

After appealing, if your application is approved by Facebook then you are able to get back your account.

How To Drive Traffic Top 10 Ways To Ping Your Blog In Minutes|stock rom go to rompure.com

How To Drive Traffic Top 10 Ways To Ping Your Blog In Minutes

As soon as you have published your blog or made a change to your website, you need to let the worlds search engines and blog registries know that there is an update. If you wait for them to find your site, you could be waiting for weeks or months, but there’s a much quicker way to do it. Ping sites send notifications to the search engines and directories that your website has been updated. By using the Ping sites below, you will ensure that your site is not missing out on much needed traffic.

Ping Your Blog

We’ve compiled the Top 10 Sites that Ping Your Website to all the notable search engines and Blog Directories, making your blog more visible and accessible to your readers.

How To Ping A Website:


1. Google Ping – This is one of the highest ranking and easy to use ping websites out there for your site.

2. Pingler – One of the most popular pinging sites, Pingler is an old favorite.

3. Ping-O-MaticPing-O-Matic is a service to update different search engines that your website has been updated.

4. IM.org Backlink Supercharger – Im.org is an indexer which notifies your domain name to web analytic websites like Alexa, Woorank, Quarkbase, and many more including most search engines.

5. Bulk Ping Bulk Ping is Unique Auto Mass Ping Service to promote your Websites and Blogs. A great website and blog ping tool.

6. Ping FarmPingFarm is a service which notifies Search Engines that your blog or website has been updated.

7. Feed SharkFeed Shark is a free online tool that easily promotes your blog or website by sending a ping to its partner sites.

8. Ping My Blog – They notify all the major blog directories in one go so that everyone knows about your latest blog post and website update.

9. Pingsitemap – Submit Your Sitemap to the Major Search Engines.

10. Ping That Blog – This site has been created to perform a qualitative pinging on every new page or post created on your blog or site and not to generate unnecessary traffic toward to not working hosts.

Use the sites to ping your blog but only use one service and only send the ping when you have updated a page on your site. Too many pings are penalized by Google and it will have the opposite affect on your site. Good luck and happy Pinging.

How to Boost and Increase your Internet Speed|stock rom go to rompure.com

How to Boost and Increase your Internet Speed

This article we will be looking at some important tweaks which help us in optimizing the Internet speed.

Increase Internet Speed

Tweak: Un-reserving bandwidth:

By Default, Windows reserves 20% of bandwidth for it’s own use.This should be undone immediately to optimize your net speed.To do so you need not install any extra program,you can do this with a simple setting given below.
  • Press “Windows key + R“(shortcut key for RUN).
  • Now type gpedit.msc.This will give access to Group Policy Editor.

Group Policy Editor

  • Then Navigate to Computer Configuration/Administrative Templates/Network/QOS Packet Scheduler using the pane on the left side.
  • Now in the right panel you will notice a option called “Limit Reservable Bandwitdth“.Right click on it and choose “Edit” option.
  • A new window will pop out where you find Bandwidth Limit is set to 20% by default.Now click enabled and change Bandwidth Limit to 0 then apply the changes.

Bandwidth Limit

  • Hit ok the close the group policy editor.

So this was our guide on How to Boost and Increase your Internet Speed , I hope the methods given above helped you.