Search 5,000,000+ questions and answers.

Frequently Asked Questions

I am seeing other error messages on my screen, what should I do.?

Skilled Driver |
Don't panic, occasionally error messages appear on websites. What you need to do is to carefully write down the information displayed in the error message, and then call our Customer Service number at 800-559-8766. Give the information to the custormer service representative. If the problem is coming from your system, you will be given directions to either fix the problem or to contact your computer dealer or software manufacturer for the fix.
Related Questions

b) Are you seeing any error messages when you try to log in to Oxford Reference Online?

ORO: Oxford Reference Online: Oxford Reference Online FAQs
Error messages appear in the log in box on the home page. These give some suggestions about why you may not be able to access the site. They may direct you to either your network administrator or to the Contact us page. Occasionally an account is put on hold if we have not received your subscription payment, or if your subscription or free trial has expired. In both of these cases we would usually have been in touch with you about this. Do contact us for more information about this.
Related Questions

I've been seeing some error messages about corrupt data. What should I do?

Frequently Asked Questions
First, execute DBCC CHECKDB or DBCC CHECKALLOC without a repair clause to determine the extent of the data corruption. Then, execute either DBCC CHECKDB or DBCC CHECKALLOC, specifying a repair clause. Important If executing either DBCC CHECKDB or DBCC CHECKALLOC with one of the repair clauses does not correct the index problem or if you are unsure what effect DBCC CHECKDB or DBCC CHECKALLOC with a repair clause has upon your data, contact your primary support provider.
Related Questions

b) Are you seeing any error messages when you try to log in to ILDC?

International Law in Domestic Courts : FAQs
Error messages appear in the log in box on the home page. These give some suggestions about why you may not be able to access the site. They may direct you to either your network administrator or to the Contact us page. Occasionally an account is put on hold if we have not received your subscription payment, or if your subscription or free trial has expired. In both of these cases we would usually have been in touch with you about this. Do contact us for more information about this.
Related Questions

How can I prevent users seeing ColdFusion error messages?

ColdFusion FAQ
Put the cferror tag in your Application.cfm: <cferror type="REQUEST" template="error.cfm" mailto="developer@apa.org"> then in error.cfm, for example: <p>An error has occurred that prevents us from completing your request.</p> <p>We have logged the following information that will help us identify and correct the problem:</p> <ul> <li>Error occurred at <b>#ERROR.Datetime#</b> <li>Your IP address is <b>#ERROR.
Related Questions

b) Are you seeing any error messages when you try to log in to Oxford DRS titles?

The Oxford Digital Reference Shelf : Faqs
Error messages appear in the log in box on the home page. These give some suggestions about why you may not be able to access the site. They may direct you to either your network administrator or to the Contact us page. Occasionally an account is put on hold if we have not received your payment, although we would usually have been in touch with you about this. Do contact us for more information about this.
Related Questions

Why am I seeing strange error messages that are preventing me from using or installing the program?

Software FAQs - LLC Maker
Occasionally, third party software can interfere with LLC Maker’s installation. If you are experiencing problems during or immediately after installation, please do the following: If you continue to receive error messages, please contact our technical support department by sending an email to support@nolo.comor by calling 510-549-4660.
Related Questions

Why Am I Seeing an Error?

AWeber Knowledge Base :: Search :: login
If you see a red banner with an error message you don't understand, or if something just isn't working how you'd expected, our customer support team would be more than happy to help.In order to ge ... Affiliate commissions are tracked using cookies, the most widely used method of tracking commissions and website activity. If you referred someone to AWeber and they signed up for an account, but ...
Related Questions

edit] How do I edit error messages?

MediaWiki FAQ - Meta
Special:Allmessages contains a complete list of messages (error or otherwise), that can be edited. Alternatively, you could also view and edit your languages/Language.php file, which also contains some messages.
Related Questions

How do I locate "Fixup error" messages?

HI-TECH Software Frequently Asked Questions
I get the message "Fixup error referencing ..."; or "Fixup error in expression ..." What does this mean and what can I do about it? A: Briefly, it means the linker was instructed to adjust (fixup) a reference to a memory location, and the address that it calculated would not fit in the space available, e.g. a byte (8 bit) reference was asked to contain a value larger than 0xFF. Typically this occurs with the PICC compiler where pointers have not correctly been declared.
Related Questions

Why do I get Data truncated error messages?

Appendix A. Frequently Asked Questions About MySQL 5.1
For illustration, we'll create a table with one Unicode (ucs2) column and one Chinese (gb2312) column. mysql> CREATE TABLE ch -> (ucs2 CHAR(3) CHARACTER SET ucs2, -> gb2312 CHAR(3) CHARACTER SET gb2312); Query OK, 0 rows affected (0.05 sec) We'll try to place the rare character ? in both columns. mysql> INSERT INTO ch VALUES ('A?B','A?B'); Query OK, 1 row affected, 1 warning (0.00 sec) Ah, there's a warning. Let's see what it is.
Related Questions

How do I avoid error messages from gwes.exe?

FAQ: Frequently Asked Question list ** - SBSH Mobile Softwar...
This error sometimes occurs under WM5, under various applications. It is possible that the message relates to running unsigned applications under WM5. To prevent this error, go into Start->Settings->Error Reporting, and disable the error reporting.
Related Questions

How do you customize error messages?

Nav1
This is from the Notes on-line help. Create a form with the one of the following names. On the form, there must be an editable text field named MessageString to hold the error message. For the errors and deletion messages before you enter a database or if you are serving HTML files, you can create a Mapping Error Messages document in the a database created from the Notes 4.61 Domino Web Server Configuration template.
Related Questions

What can I do about the PubMed error messages?

PubMed Frequently Asked Questions
Please see the information about browsers and also ensure your browser and any servers you go through are enabled for Javascript (scripting), cookies, pop-ups, and HTTP 1.1 when you are using PubMed. Also, nlm.nih.gov should be considered a trusted site by your system(s). You may have to delete your browser's cache (temporary files) before trying again.
Related Questions

How to display error messages in JSF?

www.adobians.com
more articles ejb3 java6 javafx jsf spring struts hibernate ajax groovy seam weblogic jca webservice eclipse j2me gwt guice java5 apache xml tapestry
Related Questions

My screen is all goofed up, what's wrong? I'm also getting server error messages. What's up?

maesco's Diesel Talk Frequently Asked Questions (FAQ) Page
Diesel Talk uses frames to display the Message List and Messages. If your browser is not frames capable then you might have problems. Diesel Talk was tested under Navigator 4.7 and IE 5. Diesel Talk also uses a minimum amount of JavaScript in it's pages. Server side scripts are used for message storage and retrieval and message list creation. Sometimes, if the server gets very busy you might get an error message "Server Too Busy" or the system might run slow.
Related Questions

How can I send errors to the screen, and debug messages to a file?

Log::Log4perl::FAQ - Frequently Asked Questions on Log::Log4...
Let's assume you want to maintain a detailed DEBUG output in a file and only messages of level ERROR and higher should be printed on the screen. Often times, developers come up with something like this: # Wrong!!! log4perl.logger = DEBUG, FileApp log4perl.logger = ERROR, ScreenApp # Wrong!!! This won't work, however. Logger definitions aren't additive, and the second statement will overwrite the first one. Log4perl versions below 1.
Related Questions

What are the messages I see at the bottom of the screen?

Artfact's eBay Liveauctions Support
Most of those are pre-programmed messages generated by the system to help you understand what is happening during the auction. Sometimes, the auction house can also broadcast text messages to all Internet bidders to communicate the progress of the event.
Related Questions

What do I do if an Error Message appears on screen and I cannot continue?

Help / Frequently Asked Questions: Foodsmart - Victorian Gov...
Record the details of the Error message,your user name and password then save and Logout. Email these details to: food.safety@dhs.vic.gov.au or Call the Template Hotline Number (1300 888 498) We will address the problem as quickly as possible.
Related Questions

What does 'failed connection' and other error messages mean?

Internet Archive Frequently Asked Questions
Below is a list of the main error messages you will see while searching the Wayback Machine. If you see an error message that does not have the Internet Archive Wayback Machine logo in the upper left corner, you are most likely looking at an archived page or the live web. Failed Connection: The server that the particular piece of information lives on is down. Generally these clear up within two weeks. Robots.txt Query Exclusion: A robots.
Related Questions

How can I simply log all my ERROR messages to a file?

Log::Log4perl::FAQ - Frequently Asked Questions on Log::Log4...
After pulling in the Log::Log4perl module, just initialize its behaviour by passing in a configuration to its init method as a string reference. Then, obtain a logger instance and write out a message with its error() method: use Log::Log4perl qw(get_logger); # Define configuration my $conf = q( log4perl.logger = ERROR, FileApp log4perl.appender.FileApp = Log::Log4perl::Appender::File log4perl.appender.FileApp.filename = test.log log4perl.appender.FileApp.layout = PatternLayout log4perl.appender.
Related Questions

Why do I get error messages about congestion?

Frequently Asked Questions : Harvard Extension School
Network congestion can cause poor or stopped playback. While this is a greater problem for slow connections, such as 56k modems, it can happen at any speed connection. You should specifically select the 56k video or audio-only option on the Video Preference page.
Related Questions

What are Error Messages telling me?

Wisconsin.gov - - Frequently Asked Questions - State of Wisc...
Occasionally, everyone browsing the Internet encounters error messages of one sort or another. We will try to explain a few of the more common ones, since the error messages are often hard to understand. Each Internet error message begins with a three-digit number: Series - Moved Permanently. This means the website address has changed from the one listed in Wisconsin.gov. Sometimes your browser will redirect to the new address automatically. If not, click on the new address shown.
Related Questions

Why do I get these error messages?

NMFN: About Our Site
Customers who come to our site from a bookmark will sometimes get this message. A connection has failed in relation to the bookmark. Enter in the address field of your browser the URL for our site instead of using the bookmark. This message displays when someone other than the owner of a policy attempts to view policy information. If you are the payer or the insured of a policy but not the owner, you will not be given access to the policy information.
Related Questions

computersurgery.com2
Very rarely you might get an error message from Merlin. Error messages on computers are the computer's way of telling you that something is wrong. First of all don't panic! Sometimes the problem can be resolved simply by either closing down Merlin and re-starting, or even closing down the computer and re-booting . If neither of these works, there are some questions you can ask yourself and the answers to which you can pass on to us.
Related Questions

WC - Online Ordering FAQ
Although we extensively test everything before it appears on our web site, sometimes bugs will sneak through. If you receive an error message, please make note of what you were trying to do and what the error message says. Most error messages on our site will tell you where the error was. Go back and correct the information and try again. If the problem persists, contact the webmaster and specify the error message that you were receiving.
Related Questions

Why am I not seeing the full screen for the software?

SureBetPro
You will need to alter your display settings. Go to Start (bottom left of your computer) > Settings > Control Panel > Display > Settings. If the settings are at 800 by 600 pixels, slide the bar to the right and put it to 1024 by 768 pixels.
Related Questions

I am not seeing 3D on my screen. What is wrong?

Slingshot Entertainment
There could be various reasons for this. Always remember that the 3D shutter glasses and emitters are fragile and need to be handled with care. If you have a LCD, HDTV or Plasma monitor, shutter glasses are not compliant. 3D shutter glasses work with sequential video fields for standard TV monitors using line resolution. If you are using a projection TV with a LINE DOUBLER, you must turn off the line doubler to view this program. The batteries inside your glasses could be dead.
Related Questions

I'm seeing a QuickTime error when I extract. Why is this?

Miraizon Cinematize 2 FAQ
If you have any non-Apple QuickTime components installed that conflict with your version of QuickTime, it will affect all applications that use QuickTime (including Cinematize). Remove any non-Apple QuickTime components to check for such problems. Many components have had compatbility troubles with QuickTime 7. If you get this error while extracting to MPEG-4 File or iPod Movie File, most likely you are using the wrong settings.
Related Questions

Got A Question? Ask Our Community!


More Questions >>

© Copyright 2007-2008 QueryCAT
About • Webmasters • Contact