Not found http error 404 the requested resource is not found iis

Documentation for IIS. Contribute to MicrosoftDocs/iis-docs development by creating an account on GitHub.
title author description ms.date ms.assetid msc.legacyurl msc.type

How to Use HTTP Detailed Errors in IIS 7.0

rick-anderson

Every Web-Site Administrator or Web Developer has seen ‘404 — File not found’, ‘401 — Unauthorized’ or ‘500 — Server Error’ messages in his browser. This ar…

12/12/2007

33897393-97b8-4ee1-836f-25b1348dc3a3

/learn/troubleshoot/diagnosing-http-errors/how-to-use-http-detailed-errors-in-iis

authoredcontent

by IIS Team

Introduction

Every Web-Site Administrator or Web Developer has seen «404 — File not found», «401 — Unauthorized» or «500 — Server Error» messages in his browser. This article helps you understand how and why IIS generates these errors and how they can be configured.

Many might think that generating error messages does not seem to justify a full article. But there is more to errors than meets the eye. Error messages are a sensitive topic, because every error reveals more about your web-site than you might want revealed. The more information someone can gather about your site, the likelier it is that you will be hacked. A search for «google hacking» or «cross-site scripting» reveals a wealth of information on this topic.

However, error messages are also a valuable tool to troubleshoot problems. Developers and Web-Site Administrators require as much detail as possible when an error occurs. Ideally the error message gives recommendations on how to fix the problem. Here is how IIS addresses these fundamentally opposed goals.

Errors, What Errors?

This article talks about HTTP errors as specified in the HTTP RFC (RFC 2616 — section 6.1.1). An HTTP error is always expressed by sending a response with a status code greater than 400 back to the requesting client.

Client Errors

Status codes between 400 and 500 specify an error that the client made, e.g. bad syntax or a request to a resource that doesn’t exist. You can try this by requesting a bogus URL from the web-site of your choice, for example: http://<IIS7Server>/this_resource_does_not_exist. You get a «404 — File not found» error.

Server Errors

Status codes starting with 500 are errors caused by the server. The most common causes for 500 errors on IIS systems are:

  • An ASP or ASPX page that contains a syntax error
  • The web server configuration or the application configuration cannot be read or is invalid
  • The site is stopped

It is important to note that browsers like IE often replace errors returned from a web server with their own errors. This makes troubleshooting harder. In IE you can turn this feature off. Go to the «Tools» menu, select «Internet Options», click the «Advanced» tab and find the «Show friendly HTTP error messages» check box and uncheck it. To see the raw response, use HTTP tools like WFETCH in the IIS 6.0 Resource Kit (see «Related Links»).

HTTP Errors in IIS

There are two things that can happen when the httpError module (custerr.dll) encounters an error:

  • A custom error is generated
  • A detailed error is generated

Custom errors are error pages that the regular users of your web-site see. They contain a brief error description of why the error happened, but nothing else. Here is the custom error generated when you request a resource that does not exist, for example: http://<IIS7Server>/this_resource_does_not_exist

Screenshot of the the H T T P Error 404 file or directory not found webpage in Internet Explorer.

Detailed errors are intended for local administrators and developers. They are supposed to provide information that helps to immediately fix the problem. Here is an example of the same request, but now returning a Detailed Error:

Screenshot of the Server Error in Default Web Site Application webpage, showing a Cause and Solution section for the error.

This is dangerous, because Detailed Errors contain information about the inner workings of your web-site. Only trusted personnel should see a Detailed Error. The only way to ensures this is to only generate a detailed error if the request comes from the local machine. As soon as the request is not local, a custom error is generated. Look at the following flow diagram:

Diagram of the Status Substatus, Entity Body, and Set Error's path of creating a detailed error.

Data Flow

First: Error check

The httpError module receives a notification if a response is about to be sent (RQ_SEND_RESPONSE notification). The httpError module checks the status code of this response and immediately returns if the status code is not greater than 400.

Second: Custom Error or Detailed Error

The next check is determined by the request origin (is the request a local or remote request) and the setting of the errorMode property. The errorMode property is set to DetailedLocalOnly, which means that Custom Errors are generated for every remote request. If errorMode is set to «Custom», then all error responses will become Custom Error. If errorMode is set to «Detailed» all error responses will become Detailed Errors. The following table clarifies this behavior:

errorMode Request origin Action
DetailedLocalOnly (default) Local Detailed Error
DetailedLocalOnly (default) Remote Custom Error
Custom Local Custom Error
Custom Remote Custom Error
Detailed Local Detailed Error
Detailed Remote Detailed Error

If the httpError module determines that a Custom Error must be generated, it looks into its configuration to see if it can find a matching error. If a match is found, it sends the static file, redirects the request or executes the URL specified. If no match can be found, IIS send a basic one-line message containing the status code. The next section explains the Custom Error configuration in detail.

If custerr.dll determines that a Detailed Error must be generated, another check is needed. IIS does not touch the response if a module overrode the entity of the response with its own error description. It might contain valuable information. ASP.NET is a good example. The entity of an ASP.NET error response might contain the exception stack and its own error description. A Detailed Error is only generated if the entity body of the response is empty.

<httpErrors> Configuration

Here is the IIS custom error section obtained on a clean install:

[!code-xmlMain]

You see that if the status code of a response is 401, IIS will return a file named 401.htm.

Sub-Status Codes

Many HTTP errors have a sub-status. The IIS default Custom Errors configuration does not differentiate based sub-status codes. It sends the same Custom Error page if you enter the wrong credentials (401.1), or if you get access denied based on invalid rights to access a file (401.3). You can see the different sub-status codes in the log files or via Detailed Errors. Here is a list of the different 404 sub-status codes that IIS produces:

Status Description
404.1 Site could not be found
404.2 Denied by Policy. The request ISAPI or CGI program is not allowed in the Restriction List.
404.3 The static file handler did not have the file in its MimeMap and therefore rejected the request.
404.4 No handler was found to serve the request.
404.5 The Request Filtering Module rejected an URL sequence in the request.
404.6 The Request Filtering Module denied the HTTP verb of the request.
404.7 The Request Filtering module rejected the file extension of the request.
404.8 The Request Filtering module rejected a particular URL segment (characters between two slashes).
404.9 IIS rejected to serve a hidden file.
404.11 The Request Filtering module rejected a request that was double escaped.
404.12 The Request Filtering module rejected a request that contained high bit characters.
404.14 The Request Filtering module rejected a request with a URL that was too long.
404.15 The Request Filtering module rejected a request with a too long query string.
413.1 The Request Filtering module rejected a request that was too long (request + entity body).
431 The Request Filtering module rejected a header that was too long.

You can configure the httpErrors section to show a Custom Error for particular sub-status codes. If you add the following line to the httpErrors configuration section, IIS returns 404_3.htm if a file with a file extension is requested that is not included in the IIS MimeMap (<staticContent> configuration section).

[!code-xmlMain]

Here is how to make the example work:

  1. Add the entry above to your httpErrors configuration section.
  2. Create a file named 404_3.htm in your c:inetpubcusterren-us directory.
  3. Create a file named test.yyy in you c:inetpubwwwroot directory.
  4. Now request http://localhost/test.yyy.

The file extension .yyy is not part of the IIS MimeMap and the static file handler will not serve it.

New in IIS: Language-specific Custom Errors

Each more recent browser includes the language of the client as a request header. Here is an example of how this header might look:

[!code-consoleMain]

The syntax and registry of accepted languages is specified in RFC1766.

When generating an error, IIS takes this header into account when it looks for the custom error file it returns. It generates the path for the custom error using the following logic:

prefixLanguageFilePath configuration setting (for example c:inetpubcusterr)+
Accept-Language header sent by the client (for example en-us) +
Path configuration setting (for example 404.htm)

Example:

If the browser sends a request for an non-existing resource and the «Accept-Language» header has the value of «en-us,» the file that gets returned will be c:inetpubcusterren-us404.htm.

For example, if you are from Germany, you want your error messages in German. To do this, you must install the Windows Vista Language Pack for German. This creates the c:inetpubcusterrde-DE directory with custom error files in it. Now if the browser sends the «Accept-Language» header with the value of «de-DE, the file that gets returned will be c:inetpubcusterrde-DE404.htm.

IIS will always fall back to the system language if the directory «de-DE» does not exist.

[!NOTE]
Internet Explorer allows you to configure the Accept-Language header. Go to «Tools» — «Internet Option», select the «General» tab and click the «Languages» button.

Custom Error Options

In the above examples, IIS sends the contents of the file as the custom error response. IIS has two other ways to respond to an error: by executing an URL or by redirecting the request.

ExecuteUrl

If you want to do more in your custom error, e.g. sending an e-mail or logging the error to a database, you can execute an url. This allows you to execute dynamic content like an ASP.NET page. The example below replaces the 404 custom error. Now IIS executes /404.aspx whenever a 404 error occurs.

[!code-xmlMain]

Security Considerations

A word of caution: For architectural reasons, IIS can only execute the URL if it is located in the same Application Pool. Use the redirect feature to execute a Custom Error in a different Application Pool.

IIS can also return a 302 Redirect to the browser when a particular error occurs. Redirect is good if you have a server farm. For instance, you can redirect all your errors to a central location that you closely monitor.

There is risk however: responseMode=»File» (which is the default) allows you to specify every file on the disk. This will not work if you are very security conscious.

A workable scenario might include only allowing the delegation of the errorMode setting. This enables a developer to receive Detailed Errors for his application even if he is using a remote client. All that is necessary is to set errorMode=»Detailed». Here is how to configure this scenario:

Allow the delegation of the httpErrors section:

[!code-xmlMain]

Second, go to the <httpErrors> section in applicationHost.config and change it so that only errorMode is delegated:

[!code-xmlMain]

Summary

Custom and Detailed Errors are powerful IIS features. They help you to troubleshoot problems without compromising the security of your IIS Server. Many configuration options help you to custom tailor your users’ experience. Most importantly: experimenting with it is fun.

See also

  • Troubleshooting Common IIS Errors

Website errors always make users panic.

A common error in Windows-based websites is HTTP Error 404.3 – Not Found.

This error happens due to missing script handlers or MIME mapping in the IIS web server.

At Bobcares, we often get requests to fix HTTP errors, as a part of our Server Management Services.

Today, let’s see how our Support Engineers fix the HTTP 404.3 error.

What does the HTTP error 404.3 indicate?

Usually, when the server is unable to serve the browser requested page, it shows errors as HTTP status codes. One such error is HTTP Error 404.3 – Not Found.

Here the code 404 indicates that the requested page is not found due to some reasons. Also, it shows a sub status code 404.3. This indicates a MIME restriction. The error message clearly explains this. The typical error message appears as:

HTTP error 404.3 not found.

This error occurs on the website hosted on windows and the IIS web server. Basically, this error can occur If the requested page is script, then an appropriate handler is missing. Or else, if the images or videos are not loading then the corresponding MIME-type is not present. This error can also appear if the ASP.NET feature is not enabled.

Fixing the HTTP error 404.3

As the error code describes, the reasons for this error are missing script handlers or ASP.NET features and also because of inappropriate MIME mapping. Let’s see how our IIS Experts fix this error for our customers.

Install ASP.NET feature

ASP.NET feature needs to be installed on the server for .NET files to load. If the feature is not enabled we get HTTP 404.3 error.  Let us discuss how our Engineers enable the feature.

  1. Click on Start >> Administrative Tools >> Server Manager.
  2. In server manager, Click on Add roles and features.
  3. Then click on features. Expand the .NET Framework.
  4. Now we select the required ASP.NET framework. After selecting the ASP.NET option ISAPI Filters, ISAPI Extensions, .NET Extensibility options will be selected automatically.
  5. we run the command based on the windows architecture.
  • For 32bit (x86) Windows:

%windir%Microsoft.NETFrameworkv4.0(framework version)aspnet_regiis.exe -ir

  • For 64bit (x64) Windows

%windir%Microsoft.NETFramework64v4.0(framework version)aspnet_regiis.exe -ir

Finally, we verify the domain’s application pool is using the installed framework.

 Adding a script handler

Most websites work on scripting languages like PHP, .NET and so on. So, the webserver must have the corresponding script handler to serve the requested page in the browser. Usually, if this is missing the websites show a 404.3 error.

The steps to configure IIS to handle PHP requests are:

  1. Firstly, we open the Internet Information Services(IIS) Manager.
  2. Now in Home>> Server Components we select Handler Mapping.
  3. Next in Action pane, we click Add Module Mapping.
  4. Now a dialog box opens, here we add:
  • Request path: *.php
  • Module: FastCgiModule
  • Executable: “C:[Path to PHP installation]php-cgi.exe”
  • Name: PHP via FastCGI

Finally, we click OK and confirm the dialog box that appears.

So, to ensure its working, our Support Engineers check the PHP info page, which gives the FastCGI module details.

Selecting MIME-type

MIME aka Multipurpose Internet Mail Extensions Type identifies the type of content served to the browser.

So, selecting MIME-type in the localhost is also important. By default, the IIS server has MIME-types installed for common file contents. This includes html for text-based files, .jpeg for images and so on. But, for a new or latest file contents, we need to add it to the MIME-type list. To add this to the IIS server our Support Team follows the steps.

  1. Firstly, open we Internet Information Services(IIS) Manager.
  2. Now, in the Connections panel, we select the site/ application/ directory that needs a new MIME type.
  3. Next, in the Home panel, double-click MIME Types.
  4. Here, the default MIME-types will be present.
  5. Next, select Add option and we add the needed MIME-types.
  6. Finally, we restart the IIS.

Hence, in most cases, selecting MIME-type fixes the error.

[Still having trouble in fixing HTTP errors? – We’ll fix it.]

Conclusion

In short, the HTTP Error 404.3 – Not Found occurs on a website hosted in windows and IIS web server. Basically, this occurs due to missing script handler or improper MIME-type. Today, we saw how our Support Engineers fix this error.

PREVENT YOUR SERVER FROM CRASHING!

Never again lose customers to poor server speed! Let us help you.

Our server experts will monitor & maintain your server 24/7 so that it remains lightning fast and secure.

GET STARTED

var google_conversion_label = «owonCMyG5nEQ0aD71QM»;

Category

  • Cloud based communication suites

  • Websites

  • Partner programs

  • Support
    • Technical Support
      • Server resource misuse
        • I got a mail that my site is misusing server resources. What should I do?
        • How much webspace will I get for mail?
        • What will happen if someone misuses system resources?
        • How am I supposed to know if I am misusing resources or not?
      • Webserver issues
        • I am getting ‘HTTP Error 404. The requested resource is not found.’ What should I do?
        • I am getting ‘HTTP Error 503. The service is unavailable.’ What should I do?
        • My website is showing default IIS 7/8 page. What should I do?
        • I am getting ‘Server Error in ‘/’ Application’ What should I do?
        • I am getting ‘403 — Forbidden: Access is denied’ message. What should I do?
        • I am getting an error message: ‘401 — Unauthorized: Access is denied due to invalid credentials.’ What should I do?
        • I am getting database connection error. What should I do?
      • FTP Trouble shooting
        • I am getting ‘FTP not connecting’ error message. What should I do?
        • I got this message ‘Connection attempt timed out.’ What should I do?
        • My attempt to upload larger files fail as given below. What should I do?
        • I am getting error message ‘530 Login authentication failed in FTP login’ as given below. What should I do?
        • What is the meaning of error: ‘Unable to resolve host name’ or ‘Unknown host’?
        • I have uploaded all the files, but still it is showing your welcome page?
        • What is the meaning of Error: No connection could be made because the target machine actively refused it. Connection closed.
        • I have uploaded my files but my site is not opening in my browser?
        • I am not able to upload my website, what I should do?
        • I have uploaded new version of a file, but it is still showing old one. What I should do?
      • MySQL database issues
        • I am unable to connect to database server. What should I do?
        • I am unable to access the MySQL database remotely on different machine. What should I do?
      • DNS Issues
        • My domain name is not resolving to the server. What can be done to resolve it?
        • How do I manage the domain that I just purchased from ZNetLive?
      • Spam/blacklist removal procedure
        • How would I know if my IP is blacklisted?
        • How to remove my IP from AT&T’s blacklist?
        • How to Remove my IP from Gmail blacklist or Spam list?
        • How do I remove my IP from hotmail blacklist?
        • How to remove my IP from Yahoo blacklist?
        • How to remove my IP from AOL blacklist?
        • How to remove my IP from Verizon blacklist?
      • Security Queries
        • How to stop spam emails to your email account?
        • How to make a website more secure?
        • What is Code Injection?
        • What is phishing?
        • What is SQL Injection and how can we prevent it?
        • How can I prevent hacking?
        • What is cross-site scripting (XSS)?
        • How can I make my password stronger?
        • What happens to someone abusing system resources?
        • How will I know if I use too many resources?
        • What security measures are used to protect my server?
        • How we can upload the files using FTP in windows web hosting?
        • How can I stay safe from fraudulent email and phishing?
        • How to open or close ports using Iptables on Linux?
        • How to open or close ports on Windows Firewall?
      • File Transfer Protocol (FTP)
        • Frequently Asked Questions
          • What is File Transfer Protocol?
          • How to transfer your website files to our server?
          • Where and how to upload files on the server using FTP?
          • Name some free FTP programs
          • How can I use my browser to FTP files?
          • What is active FTP and how it works?
          • How can we delete Files and Folders?
          • What is Passive FTP and how it works?
          • What is Anonymous FTP and is it allowed by ZNetLive?
          • How can I make a FTP account for a subdomain?
          • How can I access my main FTP account via a web browser?
          • How can I create a FTP account for a user?
          • Will I have unlimited access to update my pages?
          • What are reserved directories that I cannot use?
          • What are my default FTP account settings?
          • Which FTP software should I use and from where can I get it?
          • I use another FTP product. Is it compliant with your servers?
          • How can I install CuteFTP?
          • How to Change the password on FTP account?
          • How can I delete FTP account?
          • How can I add FTP account?
          • How can I create/access my secondary FTP accounts?
          • What are the Common FTP codes?
      • Email Program Setup
        • ChatterEmail
          • Entourage 2004
            • Microsoft Outlook Express Setup
              • Microsoft Entourage Setup
                • POP & IMAP On Android
                  • Email Account On BlackBerry
                    • IMAP & POP On Eudora
                      • Exchange Email Account On iPhone
                        • How to set up exchange email account on iPhone?
                        • How to set up an IMAP Email Account on iPhone?
                        • How to set up POP3 email account on iPhone?
                      • POP & IMAP On Mac Mail v2.1
                        • How to set up IMAP email account for Mac Mail v2.1?
                        • How to set up POP3 email account on Mac Mail v2.1?
                      • IMAP & POP On Mac Mail v3.3
                        • How to set up IMAP email account on Mac Mail v3.3?
                        • How to set up POP3 email account on Mac Mail v3.3?
                      • Email Account On Microsoft Outlook 98
                        • Email Account On Microsoft Outlook 2000
                          • Email Account On Microsoft Outlook 2002
                            • Email Account On Microsoft Outlook 2003
                              • IMAP & POP On Microsoft Outlook 2007
                                • How to set up an IMAP email account on Microsoft Outlook 2007?
                                • How to set up POP3 email account on Microsoft Outlook 2007?
                              • IMAP on Mozilla Thunderbird
                                • IMAP & POP on Mulberry
                                  • How to set up an IMAP email account on Mulberry?
                                  • How to set up a POP3 email account on Mulberry?
                                • IMAP & POP on Netscape Mail
                                  • How to set up IMAP email account on Netscape Mail?
                                  • How to set up POP3 email account on Netscape Mail?
                                • Email Account on Opera
                                  • Palm VersaMail Setup
                                    • POP on PowerMail for Mac
                                      • POP & IMAP on SeaMonkey
                                        • How to set up POP3 email account on SeaMonkey?
                                        • How to set up IMAP email account on SeaMonkey?
                                      • POP & IMAP on SnapperMail
                                        • How to set up POP3 email account on SnapperMail?
                                        • How to set up IMAP email account on SnapperMail?
                                      • IMAP & POP on Windows Mail
                                        • How to set up an IMAP email account on Windows Mail?
                                        • How to set up POP3 email account on Windows Mail?
                                      • Windows Mobile Messaging Setup
                                      • Server migration & upgradation
                                        • Frequently asked questions
                                          • My IP addresses will change or will they remain the same?
                                          • Will there be any downtime in routing traffic from old to new server & DNS changes?
                                          • What will happen to my server specifications?
                                          • What if I update my website during the migration?
                                          • Do I need to reinstall SSL certificates?
                                          • What is the new root password?
                                          • What is the new URL for WHM?
                                          • How should I revise private name servers?
                                          • How do I update IPs of name servers on a domain that I bought from elsewhere?
                                          • How do I update IPs of remote private name servers that are used by some or all of my domains?
                                          • Should I make DNS changes now or should I wait till migration completion?
                                          • Can I confirm the changes/settings that I have made? If yes, how?
                                          • When I try to make changes at the registrar, error message comes «cannot be IP addresses» or «name servers must be fully qualified domain names».
                                          • I use CloudFlare for my name servers. What IP(s) do I require to use for my domains?
                                          • I am confused. Do I need to use your name servers?
                                          • How do I update IPs of name server on a ZNetLive Domain Name?
                                        • Windows Server Migration
                                          • Linux Server Migration
                                            • How can we migrate Linux web hosting without facing downtime?
                                            • Can I schedule backups of my Linux server?
                                            • What file system do you use on Linux?
                                        • MSSQL server issues
                                          • My transaction log for database is full due to ‘LOG_BACKUP’ in MSSQL. Solution. What should I do?
                                          • I am not able to login to SQL Server with the SQL authentication. What should i do?
                                          • I am not able to restore database (or attach) created in the upper version into lower version. What should I do?
                                      • Presales Queries
                                        • Will you post any ads on my site if I purchase hosting services from you?
                                        • Will I be able to check my emails when I am away from my home/office computer?
                                        • Which platform of operating system do your servers use?
                                        • Does e-mail or FTP count against my bandwidth limit?
                                        • Do your servers support XML?
                                        • Do you offer password protected directories?
                                        • Do you have Front-Page extensions?
                                        • Can I resell my web space to other people?
                                        • Can I purchase your services even if I do not live in India?
                                        • Can I modify MIME types?
                                        • Can I host any XXX/adult sites?
                                        • Which Control Panel do you provide?
                                        • Do you offer telnet or shell access?
                                        • Do you have anti-virus software on your server?
                                        • Do you support LAMP?
                                        • How do I change my ‘hosts’ file?
                                        • What is the process of renewing hosting services?
                                        • How many websites can I build?
                                        • How can I move my forum database here?
                                        • What do you mean by IP address and explain IP terms — static or dynamic, public or private, shared or dedicated?
                                        • What is your uptime guarantee?
                                        • How frequently do you take backup?
                                        • Is the backup free of cost?
                                        • In the dedicated server that I have ordered, can I install anything that I want?
                                        • Can I install any third party software on dedicated server?
                                        • Can I transfer my hosting account / website to ZNetLive from some other provider?
                                        • For E-commerce, which hosting package do I need?
                                        • Do you provide a Service Level Agreement (SLA)?
                                        • Do you provide game servers in India?
                                        • How much time is taken for latency queries related to datacenters in the US, India and Germany?
                                        • Which version of cPanel WHM would be provided to me?
                                        • What will happen if someone misuses system resources?
                                        • How am I supposed to know if I am misusing resources or not?
                                        • How much webspace will I get for mail?
                                      • Support Tickets
                                        • Why create a support ticket at ZNetLive?
                                        • Who can create support ticket at ZNetLive?
                                        • How to create support ticket at ZNetLive?
                                      • Video Tutorials
                                        • C-Panel
                                          • How to login to cPanel?
                                          • How to create an email account in cPanel?
                                          • How to set your default address in cPanel?
                                          • How to setup an autoresponder in cPanel?
                                          • How to setup email forwarding in cPanel?
                                          • How to setup email filters in cPanel?
                                          • How to add an MX entry in cPanel?
                                          • How to use webmail from with in cPanel?
                                          • How to change your cPanel password?
                                          • How to update your contact information in cPanel?
                                          • How to change your cPanel style?
                                          • How to change the primary language in cPanel?
                                          • How to setup desktop shortcuts for cPanel?
                                          • How to backup your website in cPanel?
                                          • How to use the Disk Space Usage tool in cPanel?
                                          • How to create additional FTP accounts in cPanel?
                                          • How to password protect a directory in cPanel?
                                          • How to use the IP Deny Manager in cPanel?
                                          • How to setup hotlink protection in cPanel?
                                          • How to create a sub domain in cPanel?
                                          • How to create an addon domain in cPanel?
                                          • How to park a domain in cPanel?
                                          • How to setup domain redirects in cPanel?
                                          • How to create a MySQL database in cPanel?
                                          • How to use the Index Manager in cPanel?
                                          • How to create custom error pages in cPanel?
                                          • How to setup a cron job in cPanel?
                                          • SquirrelMail
                                            • How to open an email message in Squirrel Mail?
                                            • How to write an email message in SquirrelMail?
                                            • How to manage contacts in Squirrel Mail?
                                            • How to modify display preferences in Squirrel Mail?
                                            • How to modify folder preferences in Squirrel Mail?
                                            • How to highlight messages in Squirrel Mail?
                                            • How to create folders in Squirrel Mail?
                                            • How to modify the index order in Squirrel Mail?
                                            • How to edit your personal information in Squirrel Mail?
                                            • How to search for messages in Squirrel Mail?
                                          • Round Cube Mail
                                            • How to open an email message in RoundCube?
                                            • How to write an email message in Round Cube?
                                            • How to search for messages in Round Cube?
                                            • How to create folders in Round Cube?
                                            • How to edit your preferences in Round Cube?
                                            • Using multiple identities in Round Cube?
                                            • How to manage your address book in Round Cube?
                                            • How to mark messages in Round Cube?
                                            • How to save a draft message in Round Cube?
                                            • How to reply to or forward messages in RoundCube?
                                          • cPanel Email Management
                                            • How to add an email account in cPanel?
                                            • How to delete an email account in cPanel?
                                            • How to change an email account password in cPanel?
                                            • How to change an email accounts quota in cPanel?
                                            • How to use the password generator when creating an email account in cPanel?
                                            • How to set a default email address for unrouted emails in cPanel?
                                            • How to pipe unrouted emails to a specific script in cPanel?
                                            • How to set a return to sender failure message for unrouted emails in cPanel?
                                            • How to create an email forwarder in cPanel?
                                            • How to delete an email forwarder in cPanel?
                                            • How to setup a forwarder for an entire domain in cPanel?
                                            • How to delete a domain forwarder in cPanel?
                                            • How to setup an autoresponder in cPanel?
                                            • How to create an autoresponder for a specific time period in cPanel?
                                            • How to limit the number of autoresponder messages sent in cPanel?
                                            • How to edit an autoresponder in cPanel?
                                            • How to delete an autoresponder in cPanel?
                                          • MySQL Management
                                            • How to setup a database using the MySQL Database Wizard in cPanel?
                                            • How to create a MySQL database in cPanel?
                                            • How to delete a MySQL database in cPanel?
                                            • How to create a MySQL database user in cPanel?
                                            • How to assign a user to a MySQL database in cPanel?
                                            • How to change a MySQL database users password in cPanel?
                                            • How to remove a user from a MySQL database in cPanel?
                                            • How to delete a MySQL database user in cPanel?
                                            • How to check a MySQL database for errors in cPanel?
                                            • How to repair a MySQL database in cPanel?
                                            • Understanding menu items in File Manager?
                                          • File Manager
                                            • How to access cPanel File Manager?
                                            • Understanding file structure in File Manager?
                                            • How to create new files and folders in File Manager?
                                            • How to copy and move files in File Manager?
                                            • How to rename files in File Manager?
                                            • How to upload and download files with File Manager?
                                            • How to edit files with File Manager?
                                            • How to change file permissions with File Manager?
                                            • How to zip and unzip files in File Manager?
                                          • Horde Mail
                                            • How to write an email message in Horde?
                                            • How to open an email message in Horde?
                                            • How to manage your contacts in Horde?
                                            • How to import contacts into Horde?
                                            • How to export contacts from Horde?
                                            • How to create calendar entries in Horde?
                                            • How to create folders in Horde?
                                            • How to create tasks in Horde?
                                            • How to edit your personal information in Horde?
                                            • How to configure global options in Horde?
                                            • How to setup email filters in Horde?
                                        • Plesk Panel
                                          • How to login to Plesk?
                                          • How to change your Plesk password?
                                          • How to edit your contact information in Plesk?
                                          • How to create and manage user roles in Plesk?
                                          • How to create and manage user accounts in Plesk?
                                          • How to create an email account in Plesk
                                          • How to create an email alias in Plesk?
                                          • How to create a catchall email account in Plesk?
                                          • How to create an email forwarder in Plesk?
                                          • How to enable auto-reply for an email account in Plesk
                                          • How to add a domain to your account in Plesk?
                                          • How to add a domain forwarder in Plesk?
                                          • How to add a subdomain in Plesk?
                                          • How to add a domain alias to your account in Plesk?
                                          • How to create additional FTP accounts in Plesk?
                                          • How to access webmail in Plesk?
                                          • How to manage DNS zones in Plesk?
                                          • How to limit the number of outgoing messages in Plesk?
                                          • How to install SSL certificates in Plesk?
                                          • How to password protect a directory in Plesk?
                                          • How to setup hot link protection in Plesk?
                                          • How to create a virtual directory in Plesk?
                                          • How to setup web users in Plesk?
                                          • How to setup a database in Plesk?
                                          • How to setup a WordPress site in Plesk?
                                          • Plesk Email series
                                            • How to create an email account in Plesk Panel?
                                            • How to delete an email account in Plesk Panel?
                                            • How to change an email account password in Plesk?
                                            • How to change an email account’s quota in Plesk?
                                            • How to set a default email address for unrouted emails in Plesk?
                                            • How to set a return to sending failure message for unrouted emails in Plesk?
                                            • How to create an email forwarder in Plesk Panel?
                                            • How to create an email forwarder-only in Plesk?
                                            • How to enable auto-reply for an email account in Plesk Panel?
                                            • How to create an email alias in Plesk Panel?
                                            • How to delete an email alias in Plesk Panel?
                                          • File Manager Plesk Panel
                                            • How to access File Manager in Plesk?
                                            • Becoming familiar with File Manager?
                                            • How to change the File Manager settings in Plesk?
                                            • How to upload files with File Manager?
                                            • How to download files with File Manager?
                                            • How to create new files in File Manager?
                                            • How to edit files in File Manager?
                                            • How to create new directories in File Manager?
                                            • How to copy files in File Manager?
                                            • How to move files in File Manager?
                                            • How to rename files in File Manager?
                                            • How to change file and folder permissions in File Manager?
                                            • How to calculate the size of a directory in File Manager?
                                        • Parallels Plesk Panel Reseller Guide
                                          • How to log in to Plesk as a reseller?
                                          • Getting started with Parallels Plesk?
                                          • How to change your password and contact information in Plesk?
                                          • How to change your password and contact information in Plesk
                                          • How to create and manage customers in Plesk?
                                          • How to create and manage subscriptions in Plesk?
                                          • How to create and manage service plans in Plesk?
                                          • How to create and manage add-ons in Plesk?
                                          • How to activate or suspend a customer or subscription in Plesk?
                                          • How to remove a customer or subscription in Plesk?
                                          • How to change a customer’s login info in Plesk?
                                          • How to access a subscriber’s control panel in Plesk?
                                          • How to change a subscription’s plan and add-ons in Plesk?
                                          • How to customize a subscription in Plesk?
                                          • How to synchronize a subscription with its service plan in Plesk?
                                          • How to change a subscription’s Expiration Date in Plesk?
                                          • How to move a subscription from one customer to another in Plesk?
                                          • How to view a report of app installations in Plesk?
                                          • Viewing resource usage statistics and reports in Plesk?
                                          • How to customize your panel branding in Plesk?
                                          • How to create Custom Buttons in Plesk?
                                          • How to use the backup manager in Plesk?
                                        • cPanel Paper Lantern end-user series
                                          • How to login to cPanel?
                                          • How to create an email account in cPanel?
                                          • How to set your default address in cPanel?
                                          • How to setup an auto responder in cPanel?
                                          • How to setup email forwarding in cPanel?
                                          • How to setup email filters in cPanel?
                                          • How to enable spam protection in cPanel?
                                          • How to add an MX entry in cPanel?
                                          • How to use webmail from within cPanel?
                                          • How to change your cPanel password?
                                          • How to update your contact information in cPanel?
                                          • How to change your cPanel theme?
                                          • How to change the primary language in cPanel?
                                          • How to add a record with the DNS Zone Editor in cPanel?
                                          • How to backup your website in cPanel?
                                          • How to use the Disk Space Usage tool in cPanel?
                                          • How to create additional FTP accounts in cPanel?
                                          • How to password protect a directory in cPanel?
                                          • How to use the IP Blocker in cPanel?
                                          • How to setup hotlink protection in cPanel?
                                          • How to create a subdomain in cPanel?
                                          • How to create an addon domain in cPanel?
                                          • How to create a domain alias in cPanel?
                                          • How to setup domain redirects in cPanel?
                                          • How to create a MySQL database in cPanel?
                                          • How to use the Index Manager in cPanel?
                                          • How to create custom error pages in cPanel?
                                          • How to setup a cron job in cPanel?
                                        • Website Panel Video Guide
                                          • How to add a domain in WebsitePanel?
                                          • How to login to WebsitePanel?
                                          • How to create Web Sites in WebsitePanel?
                                          • How to create users for a database in WebsitePanel?
                                          • How to create a mail account in WebsitePanel?
                                          • How to create a FTP account in WebsitePanel?
                                          • How to install Front Page extensions in WebsitePanel?
                                          • How to use File Manager in WebsitePanel?
                                          • How to create custom error pages in WebsitePanel?
                                          • How to setup email forwarding in WebsitePanel?
                                          • How to edit your account details in WebsitePanel?
                                          • How to create a MS SQL server database in WebsitePanel?
                                          • How to create a peer account in WebsitePanel?
                                          • How to create a MySQL database in WebsitePanel?
                                          • How to backup and restore your user account in WebsitePanel?
                                          • How to use the Application Installer in WebsitePanel?
                                          • How to add Scheduled Tasks in WebsitePanel?
                                          • How to create an ODBC DSN (Data Source Name) in WebsitePanel?
                                          • How to view your quotas in WebsitePanel?
                                          • How to view Reports in WebsitePanel?
                                          • How to add a shared SSL folder in WebsitePanel?
                                          • Updating DNS at dotster.com?
                                          • SmarterMail
                                            • How to login to SmarterMail?
                                            • How to open email messages in SmarterMail?
                                            • How to send email messages in SmarterMail?
                                            • How to create contacts in SmarterMail?
                                            • How to create appointments in SmarterMail?
                                            • How to create tasks in SmarterMail?
                                            • How to create RSS feeds in SmarterMail?
                                            • How to read saved RSS feeds in SmarterMail?
                                            • How to create new folders in SmarterMail?
                                            • How to view email reports in SmarterMail?
                                            • How to modify settings in SmarterMail?
                                            • How to create an autoresponder in SmarterMail?
                                            • How to setup content filtering in SmarterMail?
                                            • How to setup spam filtering in SmarterMail?
                                            • How to setup trusted senders in SmarterMail?
                                            • How to import emails and contacts from another email service in SmarterMail?
                                        • Intro to Web Hosting
                                          • What is web hosting?
                                          • What are web servers? Why are they necessary?
                                          • What’s the difference between shared, dedicated, and other types of hosting?
                                          • What is a control panel?
                                          • What do you mean when you say gigabyte, megabyte, GB, and MB?
                                          • How much disk space and bandwidth do I need for my website?
                                          • Why shouldn’t I go for that unlimited plan? Beware overselling?
                                          • What happens if I exceed my space or bandwidth quotas?
                                          • Am I allowed to resell my hosting space?
                                          • Can I host more than one site per account?
                                          • In general, what can get my account suspended?
                                          • What is an Uptime Guarantee?
                                          • What are domain names? How do they work?
                                          • How do I decide what to choose for a domain name?
                                          • Where can I buy a domain name for my site?
                                          • Can people find out where I live based on my domain registration information?
                                          • Should I pay for private domain registration?
                                          • What are parked and addon domains? What about subdomains?
                                          • What is an IP address? Do I need a Dedicated IP?
                                          • What is an SSL/TLS certificate?
                                          • What are PHP, Perl, Python, and Ruby on Rails?
                                          • What is a MySQL database?
                                          • What is FTP? Why do I need it?
                                          • How many email accounts do I need?
                                          • What is an email auto-responder?
                                          • What is Spam?
                                          • Should I be taking backups of my account? If so, how often?
                                        • DNS Management At Other Provider
                                          • Updating DNS at enom.com?
                                          • Updating DNS at GoDaddy.com?
                                          • Updating DNS at registerfly.com?
                                          • Updating DNS at dotster.com?
                                          • Updating DNS at 123-reg.co.uk?
                                          • Updating DNS at NameCheap.com?
                                          • Updating DNS at NameBargain.com?
                                          • Updating DNS at NetworkSolutions.com?
                                          • Updating DNS at Register.com?
                                          • Updating DNS at 000domains.com?
                                          • Updating DNS at ItsYourDomain.com?
                                          • Updating DNS at DomainSite.com?
                                          • Updating DNS at DynaDot.com?
                                          • Updating DNS at StarGate.com?
                                          • Updating DNS at OpenSRS?
                                        • WHM
                                          • WHM Accounts
                                            • How to create a new cPanel account in WHM?
                                            • How to access cPanel accounts through WHM?
                                            • How to change an account’s password in WHM?
                                            • How to change an account’s disk quota in WHM
                                            • How to see a list of all the accounts over their disk quotas in WHM?
                                            • How to change an account’s bandwidth limit in WHM?
                                            • How to reset an account to its package’s bandwidth in WHM?
                                            • How to view bandwidth usage by account in WHM?
                                            • How to unsuspend all accounts that have exceeded their bandwidth limits in WHM?
                                            • How to modify an account’s other settings in WHM?
                                            • How to change a site’s IP address in WHM?
                                            • How to suspend or unsuspend an account in WHM?
                                            • How to terminate and permanently delete an account from your WHM server?
                                            • How to manage Feature Lists in WHM?
                                            • How to manage account packages in WHM?
                                            • How to choose a different package for an account in WHM?
                                            • How to alter an account’s contact e-mail address in WHM?
                                            • How to manage shell access in WHM?
                                            • How to manage Wheel Group Users in WHM?
                                            • How to view the raw logs for an account in WHM?
                                            • How to fix an inactive account in WHM?
                                            • How to make an account a demo account in WHM?
                                            • How to install FrontPage Extensions on an account in WHM?
                                            • How to view a list of the accounts on your WHM server?
                                            • How to search for accounts on your WHM server?
                                            • How to list all the parked domains and subdomains on your WHM server?
                                            • How to perform actions on multiple accounts at once in WHM?
                                            • How to manage Reseller Accounts on your WHM server?
                                            • How to change an account’s owner in WHM?
                                            • How to copy a hosting account from another server to your WHM server using SSH?
                                            • How to copy multiple accounts from another server to your WHM server using SSH?
                                            • How to copy a cPanel/WHM account to your server using its login info?
                                            • How to view a list of accounts transferred to your server in WHM?
                                            • How to e-mail all users in WHM?
                                            • How to modify the suspended account page in WHM?
                                          • WHM Services Management
                                            • An overview of the important services that keep your WHM server running.
                                            • How to set which services are enabled and monitored by WHM?
                                            • How to view the status of all the services WHM monitors?
                                            • How to restart a service in WHM?
                                            • How to manage the SSL certificates used by your services in WHM?
                                            • How to configure Apache web server in WHM?
                                            • How to rebuild Apache and PHP in WHM?
                                            • How to view the Apache Status page in WHM?
                                            • How to change the bandmin username and password in WHM?
                                            • How to access your WHM server’s bandwidth monitoring system (bandmin)?
                                            • How to configure your outgoing mail server in WHM (SMTP)?
                                            • How to configure your incoming mail server in WHM (POP3/IMAP)?
                                            • How to manage the mail queue in WHM?
                                            • How to use the Mail Troubleshooter in WHM?
                                            • How to repair mailbox permissions in WHM?
                                            • How to view statistics regarding the mail that’s passed through your WHM server?
                                            • How to view the top e-mail relayers on your server in WHM?
                                            • How to choose and configure your FTP server in WHM?
                                            • How to synchronize FTP passwords in WHM?
                                            • How to configure PHP from within WHM?
                                            • How to choose which nameserver to use in WHM?
                                            • How to manage DNS zones in WHM?
                                            • How to edit the DNS zone templates in WHM?
                                            • How to park a domain in WHM?
                                            • How to perform a DNS cleanup in WHM?
                                            • How to set up and edit domain forwarding in WHM?
                                            • How to add MySQL access hosts in WHM?
                                            • How to manage MySQL user passwords in WHM?
                                            • How to change the root MySQL password in WHM?
                                            • How to repair a MySQL database in WHM?
                                            • How to set your WHM server to use a remote MySQL server?
                                            • How to see details in WHM about the processes currently in use by MySQL?
                                            • How to access phpMyAdmin from WHM?
                                          • WHM Management
                                            • How to check your WHM server’s status and information?
                                            • How to check your system’s health with WHM?
                                            • How to run security scans in WHM?
                                            • How to use the background process killer in WHM?
                                            • How to reboot your server using WHM?
                                            • How to manually check for server and system software updates in WHM?
                                            • How to perform a manual upgrade of cPanel & WHM?
                                            • How to enable and configure automatic backups on your WHM server?
                                            • How to restore existing backups to your WHM server?
                                            • How to regenerate and use your Remote Access Key in WHM?
                                            • How to use the Perl Script Checker in WHM?
                                            • How to manage modules for PHP, Ruby, and Perl in WHM?
                                            • How to install new software using RPMs in WHM?
                                            • How to generate a new self-signed SSL certificate in WHM?
                                            • How to install an SSL certificate in WHM?
                                            • How to purchase a Trustwave SSL certificate in WHM?
                                            • How to manage SSL hosts and the shared certificate in WHM?
                                            • How to manage SSL keys and certificates in WHM?
                                            • How to manage Languages in WHM?
                                            • How to manage Themes in WHM?
                                            • How to change cPanel’s branding using WHM?
                                            • How to install and manage cPanel Addons in WHM?
                                            • How to modify cPanel/WHM News?
                                            • How to manage cPanel Plugins in WHM?
                                          • WHM Setup Management
                                            • What you need to know before getting started with WHM?
                                            • How to install cPanel/WHM on a fresh installation of Linux?
                                            • How to log in to your new WHM installation?
                                            • How to complete the Initial Setup process in WHM?
                                            • How to find your way around in WHM?
                                            • How to change the root server password in WHM?
                                            • How to synchronize your server’s time and set its time zone using WHM?
                                            • How to use Initial Quota Setup to enable disk quotas in WHM?
                                            • How to manage IP addresses on your WHM server?
                                            • How to change the server’s main shared IP address in WHM?
                                            • How to configure your server’s DNS resolvers in WHM?
                                            • How to install the DNS ONLY version of WHM on a nameserver?
                                            • How to complete Initial Setup on a DNS ONLY install of WHM?
                                            • How to use the DNS ONLY version of WHM?
                                            • How to configure DNS Clustering across all your WHM servers?
                                            • How to synchronize DNS zones within your cluster using WHM?
                                            • How to specify the hostname and IP to use for each of your nameservers in WHM?
                                            • How to modify your WHM server’s hostname?
                                            • How to add an A entry for your hostname using WHM?
                                            • How to alter the cache settings for DNS records managed by WHM?
                                            • How to specify which alerts you want to receive in WHM?
                                            • How to change the destinations for WHM to use when sending alerts?
                                            • How to use the Security Center to make your WHM server as secure as possible?
                                            • How to change the way WHM works using Tweak Settings?
                                            • How to adjust cPanel & WHM’s Update Preferences?
                                            • How to change the default home directory in WHM?
                                            • How to configure the statistics software used by cPanel & WHM?
                                            • How to fix wget before installing Fantastico?
                                            • How to prepare Fantastico for installation on your cPanel/WHM server?
                                          • Reseller Management
                                            • How to login to WebHost Manager?
                                            • What is the difference between WebHost Manager (WHM) and cPanel?
                                            • How to become familiar with and navigating around in WHM?
                                            • How to setup your remote access key in WHM?
                                            • How to check server status and information in WHM?
                                            • How to create hosting packages in WHM?
                                            • How to edit or delete hosting packages in WHM?
                                            • How to create a new hosting account in WHM?
                                            • How to modify the suspended accounts page in WHM?
                                            • How to change an account password in WHM?
                                            • How to learn about the skeleton directory WHM?
                                            • How to suspend or unsuspend an account in WHM?
                                            • How to terminate an account in WHM?
                                            • How to upgrade/downgrade an account in WHM?
                                            • How to use multi-account functions in WHM?
                                            • How to manage FrontPage extensions in WHM?
                                            • How to use the feature manager in WHM?
                                            • How to manage DNS Zones in WHM?
                                            • How to manage MX entries in WHM?
                                            • How to use mail troubleshooter in WHM?
                                            • How to use cPanel branding in WHM?
                                            • How to use cPanel/WHM news feature in WHM?
                                            • How to generate and install SSL certificates in WHM?
                                            • How to change your WHM password?
                                            • How to disable or enable demo mode in WHM?
                                            • How to limit bandwidth usage in WHM?
                                            • How to modify an account in WHM?
                                            • How to modify an account’s quota in WHM?
                                        • Domain Transfer From Other Provider
                                          • Transferring domin names away from enom.com.
                                          • Transferring domin names away from GoDaddy.com.
                                          • Transferring domin names away from registerfly.com.
                                          • Transferring domin names away from dotster.com.
                                          • Transferring domin names away from 123-reg.co.uk.
                                          • Transferring domin names away from NameCheap.com.
                                          • Transferring domin names away from NetworkSolutions.com.
                                          • Transferring domin names away from Register.com.
                                          • Transferring domin names away from 000domains.com.
                                          • Transferring domin names away from ItsYourDomain.com.
                                          • Transferring domin names away from DomainSite.com.
                                          • Transferring domin names away from DynaDot.com.
                                          • Transferring domin names away from StarGate.com.
                                          • Transferring domin names away from OpenSRS.
                                          • Updating DNS at NameCheap.com?
                                        • Softaculous
                                          • How to find Softaculous in cPanel?
                                          • How to decide which script in Softaculous is right for you?
                                          • How to install a script using Softaculous?
                                          • How to import a script into Softaculous?
                                          • How to synchronize Softaculous with other Auto Installers?
                                          • How to list all scripts that have been installed by Softaculous?
                                          • How to remove a script installed by Sofaculous?
                                          • How to upgrade a script installed by Sofaculous?
                                          • How to change Softaculous’ settings and email settings?
                                          • How to install Serendipity from Softaculous?
                                          • How to install WordPress from Softaculous?
                                          • How to install WordPress MU from Softaculous?
                                          • How to install Nucleus from Softaculous?
                                          • How to install Dotclear from Softaculous?
                                          • How to install Textpattern from Softaculous?
                                          • How to install Joomla from Softaculous?
                                          • How to install Drupal from Softaculous?
                                          • How to install MODx from Softaculous?
                                          • How to install Dolphin from Softaculous?
                                          • How to install phpBB from Softaculous?
                                          • How to install MyBB from Softaculous?
                                          • How to install SMF from Softaculous?
                                          • How to install Gallery from Softaculous?
                                          • How to install Coppermine from Softaculous?
                                          • How to install TinyWebGallery from Softaculous?
                                          • How to install Piwigo from Softaculous?
                                          • How to install DokuWiki from Softaculous?
                                          • How to install MediaWiki from Softaculous?
                                          • How to install Zen Cart from Softaculous?
                                          • How to install Magento from Softaculous?
                                          • How to install osCommerce from Softaculous?
                                          • How to install Cube Cart from Softaculous?
                                          • How to install WHMCS from Softaculous?
                                        • Complete FTP
                                          • Configuring your website in FileZilla
                                          • Uploading files using FileZilla
                                          • Managing files in FileZilla
                                          • Configuring your website in WinSCP
                                          • Uploading files using WinSCP
                                          • Managing files in WinSCP
                                          • Configuring your website in CuteFTP
                                          • Uploading files using CuteFTP
                                          • Managing files in CuteFTP
                                          • Configuring your website in WS_FTP
                                          • Uploading files using WS_FTP
                                          • Managing files in WS_FTP
                                          • Configuring your website in SmartFTP
                                          • Uploading files using SmartFTP
                                          • Managing files in SmartFTP
                                          • Configuring your website in FlashFXP
                                          • Uploading files using FlashFXP
                                          • Managing files in FlashFXP
                                          • Configuring your website in FTP Voyager
                                          • Uploading files using FTP Voyager
                                          • Managing files in FTP Voyager
                                          • Configuring your website in LeapFTP
                                          • Uploading files using Leap FTP
                                          • Managing files in Leap FTP
                                        • PuTTY Enhanced
                                          • How to download and install Putty?
                                          • How to change character settings in Putty?
                                          • How to load, save or delete server connection settings in Putty?
                                          • How to start Putty in a maximized window?
                                          • How to create a log file of your Putty session?
                                          • How to clean up your Putty sessions?
                                          • How to start a SSH session from the command line?
                                        • WordPress
                                          • How to install WordPress?
                                          • How to configure your settings in WordPress?
                                          • How to change your password in WordPress?
                                          • How to edit your profile in WordPress?
                                          • How to change your header in WordPress?
                                          • How to manage categories in WordPress?
                                          • How to write a new post in WordPress?
                                          • How to manage users in WordPress?
                                          • How to manage pages in WordPress?
                                          • How to manage plugins in WordPress?
                                          • How to write a comment in WordPress?
                                          • How to update your WordPress installation?
                                          • How to increase the maximum upload limit in WordPress?
                                        • RVSiteBuilder
                                          • How to get started with RVSiteBuilder 5?
                                          • How to change website template in RVSiteBuilder 5?
                                          • How to change website style in RVSiteBuilder 5?
                                          • How to change page structure in RVSiteBuilder 5?
                                          • How to Use layout templates in RVSiteBuilder 5?
                                          • How to create tables in RVSiteBuilder 5?
                                          • How to do Editing and formatting text in RVSiteBuilder 5?
                                          • How to create hyperlinks in RVSiteBuilder 5?
                                          • How to upload and use images in RVSiteBuilder 5?
                                          • How to create form pages in RVSiteBuilder 5?
                                          • How to create forms within a page in RVSiteBuilder 5?
                                          • How to create a photo gallery in RVSiteBuilder 5?
                                          • How to create a Guestbook in RVSiteBuilder 5?
                                          • How to Add logo on website in RVSiteBuilder 5?
                                          • How to Configure site extras in RVSiteBuilder 5?
                                        • phpMyAdmin
                                          • How to become familiar with databases in phpMyAdmin?
                                          • How to create tables in a database with phpMyAdmin?
                                          • How to delete tables from a database with phpMyAdmin?
                                          • How to insert fields into database tables with phpMyAdmin?
                                          • How to modify fields in database tables with phpMyAdmin?
                                          • How to delete fields from database tables with phpMyAdmin?
                                          • How to export databases and tables with phpMyAdmin?
                                          • How to import databases and tables with phpMyAdmin?
                                          • How to run SQL queries on a database with phpMyAdmin?
                                          • How to rename database tables with phpMyAdmin?
                                          • How to search through a database with phpMyAdmin?
                                          • How to copy a database table with phpMyAdmin?
                                        • Mail Configuration
                                          • Configuring POP Email Accounts
                                            • How to configure a POP email account in Outlook 2010?
                                            • How to configure a POP email account with SSL in Outlook 2010?
                                            • Outlook 2010
                                              • How to configure a POP email account in Outlook 2010?
                                              • How to configure a POP email account with SSL in Outlook 2010?
                                              • How to configure an IMAP email account in Outlook 2010?
                                              • How to configure an IMAP email account with SSL in Outlook 2010?
                                              • How to configure custom ports in Outlook 2010?
                                              • How to setup your email signature in Outlook 2010?
                                              • How to change your email password in Outlook 2010?
                                              • How to delete an email account in Outlook 2010?
                                          • iPhone Email
                                            • How to setup an IMAP email account on your iPhone?
                                            • How to setup a POP email account on your iPhone?
                                            • How to setup a Gmail account on your iPhone?
                                            • How to setup a Yahoo! email account on your iPhone?
                                            • How to configure email settings on your iPhone?
                                            • How to set up your email signature on your iPhone?
                                            • How to change your email password on your iPhone?
                                            • How to delete an email account on your iPhone?
                                          • Apple Mail
                                            • How to open Apple Mail?
                                            • How to setup a mail account using POP?
                                            • How to setup a mail account using IMAP?
                                            • How to create and manage outgoing mail servers?
                                            • An overview of settings and preferences in Apple Mail.
                                            • How to read and send e-mail messages in Apple Mail?
                                            • How to create and manage signatures in Apple Mail?
                                            • How to subscribe to RSS feeds?
                                            • How to import data from other e-mail clients?
                                    • Member Panel

                                    • Hosting

                                    • Acronis Backup

                                    • ZNetLive Mobile App

                                    • Control Panel

                                    • Servers

                                    • Hosting glossary
                                    • Managed Services

                                    • Domains

                                    Cannot find what you’re looking for?

                                    Ask a question

                                    I am getting ‘HTTP Error 404. The requested resource is not found.’ What should I do?

                                    Cause : This error is encountered when the website is stopped in IIS web server.

                                    Resolution :

                                    • Log into your server via Remote desktop.
                                    • Click on Start – RUN – type Inetmgr – click enter.
                                    • Expand IIS  — Click on sites – Select your website – Click on the start button.

                                    Понравилась статья? Поделить с друзьями:

                                    Читайте также:

                                  • Not found error failed to execute
                                  • Not enough video memory как исправить
                                  • Not enough money error
                                  • Not enough memory winrar как исправить
                                  • Not enough items any ошибка

                                  • 0 0 голоса
                                    Рейтинг статьи
                                    Подписаться
                                    Уведомить о
                                    guest

                                    0 комментариев
                                    Старые
                                    Новые Популярные
                                    Межтекстовые Отзывы
                                    Посмотреть все комментарии