Call us!(ID:95689)+1-855-211-0932
HomeBrowser Cache vs Server Cache

WordPress Hosting Plan

  • Unlimited Disk Space
  • Unlimited Traffic
  • FREE Domain Name
  • 5 Domains Hosted
  • 30-Day Free Trial
$4.99
per month

WordPress Hosting Plan

Check your Domain Availability...

Free Domain Manager

Live Demo - lock option, edit Whois, edit name servers, custom DNS records, URL redirection, etc.

Website Performance • Caching

Browser Cache vs Server Cache: What’s the Difference and Which One Do You Need?

“Caching” isn’t one thing. It’s a set of layers that reduce work and shorten load times. Browser cache speeds up repeat visits for the same user, while server cache reduces backend processing and improves performance for everyone. In this guide, you’ll learn how each cache works, where it belongs, what can go wrong, and how to combine them for maximum speed.

1) Why “Browser Cache vs Server Cache” Matters

Website speed directly impacts user experience, conversions, and search performance. But caching isn’t a single feature—it’s a set of layers. Two of the most important are browser cache and server cache. Browser caching mainly improves repeat visits for the same user, while server caching improves the first request and overall scalability by reducing backend work like PHP execution and database queries.

2) What Is Browser Cache?

Browser cache (client-side caching) stores website files on a user’s local device—typically in the browser’s cache storage. It’s most commonly used for static assets such as images, CSS, JavaScript, and fonts. The main benefit is faster repeat visits because the browser can reuse files without downloading them again.

Simple summary: Browser cache improves individual user experience on repeat visits by reducing browser-to-server requests.

3) What Is Server Cache?

Server cache (server-side caching) stores pre-generated content on the origin server or on a CDN/edge network. Instead of rebuilding a page for every request—running application code and database queries—the server can serve a cached response like pre-rendered HTML, or reuse cached database query results. This reduces CPU and memory usage and helps your site handle higher traffic with more stability.

Simple summary: Server cache improves site-wide performance by reducing backend workload and response time.

4) How Browser Cache Works

On a first visit, the browser downloads assets from your server and stores them locally based on caching rules (often provided via HTTP caching headers). On subsequent visits, the browser can reuse these assets instantly. In many cases, it will “revalidate” files (quickly checking if they changed) rather than downloading them again—saving bandwidth and improving load speed.

Why updates sometimes don’t show

Because browser cache lives on the user’s device, you can’t force every user to refresh instantly. That’s why modern sites use file versioning/fingerprinting (for example: app.abc123.js) so updates load immediately when filenames change.

5) How Server Cache Works

Server caching happens before content reaches the user. When a request comes in, the server checks for a cached response. If it exists, the server returns it immediately, skipping expensive work. This can include page caching (cached HTML), object caching (cached database query results), and CDN/edge caching (cached content stored geographically closer to users).

Why server cache is powerful for dynamic sites

Dynamic, database-heavy sites can benefit significantly because caching reduces repeated database queries and backend processing. That’s why server-side caching is commonly recommended for CMS platforms, membership sites, and eCommerce—when configured with the right exclusions.

6) Key Differences: Location, Control, Scope, and Freshness

  • Location: Browser cache is stored on the user’s device. Server cache is stored on your infrastructure (origin or CDN).
  • Control: Browser cache is ultimately controlled by the user. Server cache is controlled by the developer/hosting/CDN.
  • Scope: Browser cache helps repeat visits for one user. Server cache helps all visitors and improves scalability.
  • Freshness: Browser cache may show outdated assets until expiration/revalidation. Server cache may show outdated pages to everyone until purged.
  • Network impact: Browser cache can avoid network downloads entirely on repeat visits; server cache still must deliver content over the network.

7) What to Cache Where

A good strategy is to cache different content in different layers. Browser cache is best for static assets (images, CSS, JS, fonts). Server cache is best for public HTML pages and reusable database results—especially when the site generates pages dynamically.

Rule of thumb

  • Browser cache: static assets (long TTL + versioned filenames).
  • Server cache: public pages and computed results (HTML/page cache) + database query results (object cache).
  • Avoid page caching: personalized pages like carts, checkout, account dashboards.

8) Browser Cache Pros & Cons

Pros

  • Very low latency on repeat visits (local load).
  • Reduces bandwidth usage and repeated downloads.
  • Can improve Lighthouse scores on returning visits.

Cons

  • Less control for developers (users can clear cache anytime).
  • Updates may not appear instantly without versioning.
  • Doesn’t help first-time visitors as much as server cache.

9) Server Cache Pros & Cons

Pros

  • Reduces CPU and database load by skipping repeated work.
  • Improves performance for all users, including first-time visitors.
  • Highly controllable: you can purge/refresh centrally.

Cons

  • Still requires network transmission to the client.
  • Misconfiguration can cache dynamic/personalized content incorrectly.
  • Stale pages may be served to everyone until purged.

10) Best Use Cases

Use server caching for dynamic, database-driven sites to reduce load and speed up server response times. Use browser caching for static assets so returning visitors load pages faster without repeated downloads. Most high-performing sites use both.

Practical examples

  • Blogs/marketing sites: server page cache + browser cache for assets.
  • eCommerce: server cache with exclusions (cart/checkout/account) + object cache for DB + browser cache for assets.
  • Global audiences: add CDN/edge caching to reduce latency by serving content closer to users.

11) Hybrid Strategy: Using Both Together

Modern performance setups combine caching layers: server caching speeds up the first request and reduces backend work, while browser caching speeds up repeat visits. Add a CDN for global delivery and you get faster load times, fewer server resources used, and better scalability.

Best practice: Use server cache for initial HTML delivery and browser cache for static assets and subsequent interactions.

12) Common Issues & Fixes

Issue: Users see outdated CSS/JS

This is usually a browser-cache problem. Fix it by using versioned filenames (fingerprinting) and appropriate cache headers. When the filename changes, the browser downloads the new file immediately.

Issue: Everyone sees an old version of a page

This is usually a server-cache/CDN-cache problem. Fix it by purging page cache and CDN cache when content updates, and by setting proper cache invalidation rules.

Issue: Dynamic pages (cart/checkout/account) behave incorrectly

Exclude dynamic, personalized pages from page caching. Use server-side object caching (like Redis) to speed up database calls without caching personalized HTML.

Issue: Cache conflicts

Avoid stacking multiple full page caching systems at once (for example: multiple caching plugins plus server-level cache). Keep one primary page cache layer and ensure other layers (CDN, browser cache) complement it.

13) How to Measure Results

Don’t rely on “it feels faster.” Measure it. Track cache-hit vs cache-miss where available (CDN/server), and monitor performance metrics like TTFB (server response), LCP (largest content load), and bandwidth usage. For dynamic sites, also track database query count and DB CPU load.

What good looks like

  • Lower TTFB after enabling server/page cache.
  • Fewer repeated downloads after enabling browser caching for assets.
  • Lower database load after enabling object caching.
  • More consistent results across repeated tests (cache hits).

14) Quick Checklist

  • Enable long browser caching for static assets (CSS/JS/images/fonts) and use versioned filenames.
  • Enable server page caching for public pages (blog posts, landing pages).
  • Enable object caching (Redis/Memcached) for database-heavy sites.
  • Exclude cart/checkout/account pages from page caching.
  • Use a CDN for global delivery and set clear purge rules on publish/update.
  • Validate improvements using TTFB, LCP, and cache-hit signals.

15) Frequently Asked Questions

Is browser cache or server cache “better”?

Neither is universally better. Browser cache is best for repeat visits and static assets. Server cache is best for reducing backend load and speeding up responses for everyone. Most sites benefit from using both.

Can caching cause outdated content?

Yes. Browser cache can keep old assets until expiration unless you use versioning. Server cache can serve stale pages to everyone until purged. The fix is proper invalidation: versioned assets + purge rules + exclusions for dynamic pages.

Does server caching help SEO?

Indirectly, yes. Faster server response time and better real-user performance can support stronger engagement and Core Web Vitals outcomes.

What should I cache on a WooCommerce site?

Cache static assets in the browser, cache public content and category pages on the server when safe, and exclude cart/checkout/account pages from page caching. Add object caching to reduce database load.

Final Thoughts

Browser cache and server cache solve different problems—one speeds up repeat visits, the other reduces backend work for everyone. The best approach is layered caching: browser caching for assets, server caching for public HTML and reusable computations, and smart exclusions for dynamic pages. With the right configuration, you’ll get faster pages, lower server load, and more reliable performance at scale.

100% WordPress-Compatible Hosting Servers

HostGate guarantees you a trouble-free WordPress hosting experience.
  • A 1-click WordPress script installation
  • Cost-free WordPress templates
HostGate has a first-rate WordPress-optimized hosting platform.
  • HostGate satisfies and surpasses the basic criteria for hosting WordPress-driven sites.
  • The most current stable editions of Apache, MySQL & PHP
HostGate offers an exceptional support service.
  • Round-the-clock technical support
  • The average ticket response time is about twenty mins.


WordPress Hosting Solutions

Business Corporate Starter
Ideal for individuals who want to create a popular online shop.
The ideal solution for any community portal offering enormous disk space & traffic quotas.
The ideal solution for a simple website such as a blog or a portfolio.
Unlimited storage Unlimited storage Unlimited storage
Unlimited bandwidth Unlimited bandwidth Unlimited bandwidth
5 websites hosted Unlimited websites hosted 1 website hosted
24/7/365 support 24/7/365 support 24/7/365 support
30 Days
Money Back Guarantee
30 Days
Money Back Guarantee
30 Days
Money Back Guarantee
30-Day
Free Trial
30-Day
Free Trial
30-Day
Free Trial
$4.99 / month $9.99 / month $3.99 / month
Compare All Hosting Plans Compare All Hosting Plans Compare All Hosting Plans
     
Business Corporate Starter
GUARANTEES
24/7 Customer Support Feature Regardless of whether you need assistance before or after you purchase, our customer support is available for you 24/7.
Yes Yes Yes
1 Hour Response Time Feature We value your time and that is why our hosting employee will reply within the hour, no matter the nature of your inquiry.
Yes Yes Yes
Uptime Guarantee Feature Tired of your site timing out, there is no need to worry because here at our hosting we guarantee 99.9% network uptime.
99.9% 99.9% 99.9%
Daily Data Backup Feature In order to ensure the information you upload on our servers is safe and secure, we back it up every day (as long as the account data is less than 5 GB). In case there is a problem, we can restore the content from the day before.
Yes Yes Yes
Money Back Guarantee Feature All our shared web hosting packages come with a 30-day money-back guarantee. That way you can try the service for a month and in case it does not suit your needs and requirements, we will return your money. There is no option for a refund after the 30 days have passed and all domain registrations are final and non-refundable after the domain is registered.
30 Days 30 Days 30 Days
30-Day Free Trial Feature Sign up for our 30-day free trial to see what makes our hosting services special. No credit card required.
Yes Yes Yes
Monthly price
$4.99/mo $9.99/mo $3.99/mo
BASIC FEATURES
Disc Space Feature The amount of disk space indicates how much data you can upload on our servers once you purchase a shared hosting account with us.
Unlimited Unlimited Unlimited
Monthly Traffic Feature The monthly traffic shows how much data you can transfer to and from the server each month. That includes uploading the websites and any other files along with all the visits of the websites hosted in this account.
Unlimited Unlimited Unlimited
Domain Name Registration / Transfer Feature Domain name registration is the service that allows you to have a unique address for your website on the Internet. Every domain name that is registered with us is automatically to point to your account with us so no further configuration is required.Domain name transfer is the process of changing the company that provides the domain registration service without a change in ownership.
FREE FREE FREE
FREE FEATURES
Free Account Set-up Feature We do not charge you any setup fees - you can simply start working on your websites.
Yes Yes Yes
FREE Domain Name Feature If you purchase one of our packages, there is a bonus - one free domain name registration or transfer from the list of promotional domains.
Yes Yes Yes
800+ Website Themes Feature 800+ free templates are available by default with all shared hosting plans and you do not need coding skills or previous experience to build a site. All templates are free of charge.
Yes Yes Yes
Online Website Builder Feature With all of our shared hosting packages you will get a free online website builder that does not require any design skills or experience since it includes multiple templates and makes website creation a breeze.
Yes Yes Yes
50+ Free Apps Installer Feature Our 1-click Application Installer is included with all our shared hosting packages and it gives you access to install over 50+ applications - you can have a blog, a forum or a shopping cart set up within minutes with just a few clicks and no technical skills.
Yes Yes Yes
Free VPN Access Feature Access blocked websites or use country-restricted services by routing your Internet traffic through a secure connection using multiple access points around the world.
15 GB 25 GB 5 GB
Shared SSL IPs Feature Our custom cloud hosting platform will allow you to use a shared IP address for SSL certificates, so you can protect the information that customers submit on your website without spending extra money for an IP.
Yes Yes Yes
Dropbox/ Google Drive Backups Feature If you have a Dropbox or a Google Drive account, our system can generate daily backups of your files and databases in it, so you will have a copy of your content at all times and you can access it through a personal computer or a mobile device.
Yes Yes Yes
Website Migration Feature If you are changing hosting providers, we can move all the content for you in a very timely manner and at no extra cost. We will also test your site to make sure that it is working flawlessly before you point your domain name to our cloud platform.
Yes Yes Yes
SSD Data Caching Feature Our cloud shared hosting platform uses SSD drives working in a RAID for better and much faster performance of your websites. To improve the read and write speeds to some parts of the platform, we also use separate SSDs that are set up as to work as cache only. This setup will boost the speed of your websites even more.
Yes Yes Yes
ZFS Storage Feature The ZFS file system that we use on our cloud hosting platform is superior to all other file systems out there. It works much faster, which means faster sites and more frequent backups, and due to the real-time checksum comparison it performs on all files, no file can ever get.
Yes Yes Yes
ModSecurity Feature ModSecurity is a popular Apache module that prevents third parties from using exploits to hack a web application. It uses a set of rules to block certain incoming requests as it monitors the HTTP traffic in real time. ModSecurity comes with each and every shared hosting plan that we offer.
Yes Yes Yes
Marketing Tools Feature If you need help to get your website more popular, the easy-to-use marketing tools that are included with each package come to the rescue. You can submit your website to search engines as well as publish news and stories.
Yes Yes Yes
Administration Tools Feature All the packages are provided with Hotlink protection, IP blocking, .htaccess generator and other tools which make advanced administration easy.
Yes Yes Yes
Video Tutorials Feature Over 40 clips are available through different sections of the web hosting control panel so that you can start finding your way with ease.
Yes Yes Yes
Online Documentation Feature After carefully studying the questions and difficulties our clients experience with the web hosting control panel and our services, we have compiled an extensive help section with lots of FAQs and tutorials that will help you along the way.
Yes Yes Yes
CONTROL PANEL
In-house Built Control Panel Feature The Hepsia control panel is an in-house product that is a result of hard work aimed at providing advanced functionality combined with easy-to-use and intuitive design.
View Demo View Demo View Demo
Multi-lingual Interface (over 10 languages) Feature We have clients from all over the world and therefore the in-house built web hosting control panel is available in over 10 languages and more are on the way to facilitate our international clients.
Yes Yes Yes
Colour Skins Feature And to make working with our web hosting control panel even more pleasant you can choose the colour theme that suits you best.
Yes Yes Yes
DOMAINS & SUBDOMAINS
Hosted Domains Feature You can host with us any top level domain name and this feature shows you how many domain names you can host with each of the shared web hosting packages.
5 Unlimited 1
Subdomains Feature Subdomains, also known as child domains, are domains that are part of a larger domain. For example anything.my-best-domain.com is a subdomain of the domain name my-best-domain.com
Unlimited Unlimited Unlimited
Parked Domains Feature When you register a domain name just to reserve it for future use, you can use the domain parking feature which allows you to point it to a temporary page (for example "Under Construction") or simply redirect the domain to another site.
Unlimited Unlimited Unlimited
Full DNS Management Feature The web hosting control panel provides you complete access to manage all DNS records of your domain name like changing the A record to point to a different host or the MX records to choose a different mail server to handle your e-mails.
Yes Yes Yes
Custom A and MX Records Feature The A record of the domain name specifies the IP address where the domain name resolves to while the MX records of the domain name specify the mail servers that handle the e-mail of the domain name.
Yes Yes Yes
CNAME Records Feature The CNAME record of the domain name redirects the domain to another domain`s A record and therefore creating a CNAME record removes the A record of the domain.
Yes Yes Yes
AAAA/SRV/NS/TXT Records Feature The advanced features of the web hosting control panel allow you to set up IPv6 related records such as the AAAA record which is used for mapping hostnames to IPv6 addresses. The SRV record (also known as Service record) is used for defining the location of servers for specified services - the hostname and the port number. The NS (Name Server) records of the domain name specify which server handles all the DNS records for this domain name. The SPF e-mail authentication system derives information from the TXT records of the domain name.
Yes Yes Yes
Full Whois Management Feature We provide you complete access to manage the WHOIS record of the domain name as much as the registry allows you. There are specific restrictions for some of the TLDs and you should refer to the Domains page.
Yes Yes Yes
Registrar Lock Option Feature This is a security feature available for some TLDs to prevent unwanted domain transfers and thus protect your domain name from theft.We grant you access to lock and unlock the domain names at will via the web hosting control panel.
Yes Yes Yes
EPP Transfer Protection Feature Some TLDs require this specific EPP transfer authorization key to process domain transfers. This is used in addition or instead of the Registrar Lock for further protection. You can easily obtain the EPP key for your domain names via the web hosting control panel.
Yes Yes Yes
ID Protection Feature We offer an additional service for all TLDs that support this feature to protect your personal data becoming public in the WHOIS record. That is the best way of protection against spammers and possible identity theft.
Optional Optional Optional
E-MAIL SERVICES
Email Accounts Feature The mailboxes you create with us support POP3, IMAP and SMTP protocols that allow you to use mail client applications such as Outlook and Thunderbird to access and manage your e-mail.
500 Unlimited 100
Webmail Feature You can choose from the three webmail applications we offer to access and manage your e-mail from any computer in the world that is connected to the Internet without any setup or configuration.
Yes Yes Yes
E-Mail Aliases Feature This feature allows you to set up different e-mail addresses that use the same mailbox and that way you can easily check the messages you receive in all e-mail aliases at the same time.
500 Unlimited 100
E-Mail Forwarding Feature This feature allows you to receive the same message in two or more e-mail addresses at the same time or simply redirect all incoming messages from one mailbox to another.
Yes Yes Yes
Auto-responders Feature If you enable this feature for a specific e-mail account, an e-mail message with a pre-defined text written by you will be automatically sent as a reply to every e-mail that you receive.
Yes Yes Yes
Catch-all e-mails Feature This feature allows you to collect any messages that have been sent to a mistyped e-mail address @yourdomain.com.
Yes Yes Yes
Mailing Lists Feature The mailist list allows you to send the same message to multiple recipients (that have subscribed to the list) at the same time.
15 Unlimited Optional
Mailing List Members Feature This feature shows how many people can be subscribed to the same list.
Unlimited Unlimited Unlimited
Anti-spam Protection Feature This e-mail feature protects you from receiving unwanted e-mail messages. If the advanced features are properly adjusted, SpamAssassin will filter up to 99% of the spam.
Yes Yes Yes
SPF Protection Feature The Sender Policy Framework (SPF) prevents forging of the "FROM" field and thus it protects your domain names from being used for spamming.
Yes Yes Yes
DomainKeys Identified Mail Feature The DomainKeys Identified Mail system is used to digitally stamp every mail message in order to make sure that it is sent from a trusted server and has not been edited during the delivery itself. By using public and private encryption keys, the system is also used to obstruct email forgery, i.e. disguising an email message to appear as though it was sent from another e-mail address.
Yes Yes Yes
Anti-virus Protection Feature The ClamAV software has numerous advanced features that guarantee your anti-virus protection by scanning all incoming mail for viruses.
Yes Yes Yes
Custom MX Records Feature The ability to change the MX records of the domain name or simply add more MX records with different priority allows you to control who is handling your mail service.
Yes Yes Yes
WEBSITE CONTROLS
Advanced File Manager Feature The web hosting control panel is equipped with an advanced file manager that will allow you to easily create, delete, move and rename files and folders. It has many other useful features like the ability to work with drag&drop operations.
Yes Yes Yes
FTP Accounts Feature The FTP account allows you to establish an FTP (File Transfer Protocol) connection to the server for faster and easier uploading.
Unlimited Unlimited Unlimited
FTP Manager Feature The web hosting control panel provides you with an FTP Manager that you can use to create FTP accounts with different level of access for each one as well as change the password or delete existing accounts.
Yes Yes Yes
SSH/Telnet Feature This feature allows advanced users to access and manage the account via secure connection to the server through an SSH/Telnet encryption software.
Optional Optional Optional
Web-based SSH Feature Web Console is a web-based application that allows to execute shell commands on a server directly from a browser (web-based SSH).
Optional Optional Optional
Website Manager Feature The easy-to-use web hosting control panel is also featured with a remarkable website manager that provides you full control over your domain names and subdomains.
Yes Yes Yes
Custom Error Pages Feature This feature allows you to change the error page that website visitors see if the requested page from your website is not opening for some reason.
Yes Yes Yes
Custom Apache Handlers Feature This is an advanced feature useful for experienced webmasters to determine how the server will treat various webfiles opposed to using the default Apache configuration.
Yes Yes Yes
Custom MIME Types Feature This is another feature for advanced webmasters that allows them to determine how browsers will treat various files and file types.
Yes Yes Yes
Password Protected Areas Feature Enabling a password protection for a certain folder allows you to grant access to a single user or group of people and keep it out of reach for the public..
Yes Yes Yes
URL Redirection Tool Feature This is another advanced feature of the web hosting control panel that allows you to easily redirect your URLs using permanent or temporary redirection.
Yes Yes Yes
Guest Users Feature With our Guest Users feature, you can grant temporary access to different sections of your hosting account to third parties. This is particularly beneficial when partnering with developers or designers, enabling you to maintain control over the information they can view without exposing your entire account.
ADVANCED TOOLS
Dedicated IP Address Feature A dedicated IP address means that you will be the only one in the world using this exact IP address. For example, if you intend to have an online store with a private SSL certificate you will need a dedicated IP address to install it.
Optional Optional Optional
FrontPage Extensions Feature This feature gives our web hosting packages compatibility with Microsoft FrontPage so that you can upload and use websites created with FrontPage.
Yes Yes Yes
Dreamweaver MX Support Feature Our web hosting packages are also compatible with websites created using Dreamweaver - probably one of the most popular web design softwares.
Yes Yes Yes
PHP4/PHP5/PHP7 Support Feature PHP is one of the most used scripting languages when it comes to creating dynamic web pages and we are proud to support version 4, 5 and 7 to ensure that your website will work flawlessly.
Yes Yes Yes
MySQL Databases Feature MySQL is a very popular SQL database server capable of working with various scripting languages such as C, C++, Java, Perl, PHP and Python. This feature shows how many MySQL databases you can use with each particular package.
20 Unlimited 5
MySQL Database Storage Feature This features shows you what is the amount of data that can be stored in all your MySQL databases as a total.
Unlimited Unlimited Unlimited
phpMyAdmin Access Feature phpMyAdmin is a tool that provides complete access to manage your MySQL databases via easy-to-use interface.
Yes Yes Yes
PostgreSQL Databases Feature PostgreSQL is a more advanced database system known to be stable and providing better data integrity. This feature shows how many PostgreSQL databases you can use with each particular package.
5 20 Optional
PostgreSQL Storage Feature This features shows you what is the amount of data that can be stored in all your PostgreSQL databases as a total
80 MB Unlimited Optional
phpPgAdmin Feature phpPgAdmin is a tool that provides complete access to manage your PostgreSQL databases via easy-to-use interface.
Yes Yes Optional
Zend Optimizer Feature This software optimizes the work of PHP based applications by enabling them to load and execute Zend Guard encoded files.
Yes Yes Yes
Perl Feature Perl is one of the general purpose programming languages widely used for web development and thus it is supported by our servers to provide a wider choice for you.
Yes Yes Yes
Over 3400 Perl Modules Feature Perl modules are packages of software code universally adopted to speed up future developing and you get over 3400 such modules with each of our shared hosting packages.
Yes Yes Yes
ImageMagick & GD Library Feature Both ImageMagick and GD Library are used for working with image files like PNG, GIF and JPEG among others when generating thumbnails, graphics, charts, etc.
Yes Yes Yes
Python Feature Python is another general purpose programming language supported by all of our shared hosting packages and its aim is to combine very clear syntax with remarkable power.
Yes Yes Yes
IonCube Feature Just like Zend Optimizer, IonCube also enhances the performance of PHP applications by enabling them to easily operate with IonCube encoded files.
Yes Yes Yes
Server Side Includes Feature Server Side Includes are bits of coding that can be integrated into html files to tell them to include other information to be displayed as well. It is a good way of saving time and making sure the exact same information is displayed when it has to appear on different pages.
Yes Yes Yes
SSL Certificate Generator Feature SSL (Secure Sockets Layer) is the most common way of securing webpages used especially when sensitive data is collected such as personal or billing information. The SSL Certificate Generator will provide you with unsigned SSL code that needs to be approved by an authorized registrar.
Yes Yes Yes
Cron Jobs Feature Crontab is a command that allows scheduling tasks for future executing and is most widely used for repeating tasks executed at regular intervals.
5 Unlimited Optional
InnoDB Feature The latest edition of InnoDB offers serious improvements in efficacy, reliability and usability.
Yes Yes Yes
Varnish Feature Varnish Cache is an HTTP accelerator that can improve the speed of your web site.
Optional Yes Optional
Memcached Feature Memcached is a general-purpose memory caching system for increasing the load speed of dynamic database-driven websites.
Optional Yes Optional
Node.js Feature Node.js is a software platform for building highly scalable network apps, built on Chrome`s JavaScript runtime.
Optional Yes Optional
WEBSITE STATISTICS
Webalizer Web/FTP Stats Feature Webalizer is an advanced web statistics application that provides you extensive reports of the current and previous months with graphics for each month and detailed daily statistics including referral URLs
Yes Yes Yes
Access Log Manager Feature When you activate the access logs for a certain hostname, there will be a record of every visit and every hit within your site. You can export the log in a text file for external statistical analysis.
Yes Yes Yes
Error Log Viewer Feature When activated the error log keeps a record of every warning or error that occured on your website so that you can examine them and rectify the issues related to the website.
Yes Yes Yes
Traffic Stats Feature This feature allows you to monitor the total of incoming and outgoing data transfer for each hostname in your account separately.
Yes Yes Yes
MySQL Stats Feature This feature provides you information about the daily amount of queries made by each of your databases with an hourly average calculation as well.
Yes Yes Yes
Load Stats Feature This tool provides you with detailed information about the CPU usage generated by your account over different periods of time - yearly, monthly, daily or even for 6 hour intervals.
Yes Yes Yes
OS, CONNECTIVITY AND BACK-UP
Stable Linux with Apache Feature Linux is the leading server operating system known to be a stable environment with high security and great productivity and that is why it is used by the 10 fastests supercomputers in the world. Apache is the most popular web server that runs more websites than all other webservers combined.
Yes Yes Yes
2.5 Gbit Network Feature The data center is using top quality routers and carriers allowing an outstanding Internet connection with combined speed of 2.5 gigabits per second.
Yes Yes Yes
Help UPS & Diesel Backup Generator Feature We have powerful UPS devices in place and a diesel generator in case of prolonged outages to ensure the uptime of the network.
Yes Yes Yes
CUSTOMER SERVICE
24/7 Customer Support Feature We are here for our customers 24 hours a day and seven days a week - no holidays, no excuses!Different channels of communication are available to suit you best depending on the issue or query that you have.
Yes Yes Yes
Phone Support Feature Apart from the phone number in US, we also have a AU, UK and international lines available 14 hours day to assist you with any pre-sales, billing or general questions you may have.
Yes Yes Yes
Live Chat Support Feature Our Live Chat operators are waiting to assist you with your questions and problems in real time to ensure our services are always a better experience for you.
Yes Yes Yes
Integrated Ticketing System Feature Whenever you experience technical difficulties, our professional technicians are at your disposal so all you have to do is simply open a ticket from within your web hosting control panel and you will get a reply within the hour with an average response time of 15-20 minutes.
Yes Yes Yes
PRICING
Monthly price Feature Please note that shared web hosting packages are paid annually and this monthly price is calculated for comparison purposes only.
$4.99/mo $9.99/mo $3.99/mo
Total annual price Feature Since shared web hosting packages are paid on annual basis this is the actual fee that you have to pay in order to purchase the package you wish to use.
$59.88/yr $119.88/yr $47.88/yr