QueryCAT Logo
Search 5,000,000+ questions and answers.

Frequently Asked Questions

Can I run the Apache or IIS web servers "in front of" WorkRoll?

Bug Tracker, User-Feedback Manager, To-do List, Issue Tracke...
Yes. (And if you don't understand this question, or will have WorkRoll.com host your installation, or are installing WorkRoll via the Windows installer, don't worry about it.) You can, optionally, run any external web server in front of WorkRoll, or you can use the internal web server supplied with your application server.

Can I run Webmin or Usermin under Apache?

Webmin
Yes, this can be done with some configuration. See this document for details on running Webmin under Apache, or this page for details on running Usermin. You can also run Webmin under the Zeus webserver in a similar way. See this documentation for instructions.

Do I need web server software like Microsoft IIS or Apache to run Aware IM?

Frequently Asked Questions (FAQ) about Aware IM
No. Aware IM includes its own web server (Tomcat) and does not need any third party software to run or be used over the Internet.

Do I need to install IIS or Apache first?

WWW File Share Pro- FAQ
No, WWW File Share Pro can run individually so there is no need to install any HTTP server (IIS/Apache/Pws/Tomcat/etc) on your computer. Any port number from 1 to 65535 could be valid. But it seems that another program is running on port 80 on your computer. So WWW File Share Pro can not use that port and you must choose another port number. Such as 81, 90, 2000, 3045, etc. Please change the port number on the main window of WWW File Share Pro and click the 'Start' button to try again.

Why Apache Tomcat instead of IIS?

PrinterOn Campus Printing - FAQs
Because we can control the installation and configuration of an Apache web server during install, we use it as the default web server even though Microsoft IIS is usually available on a Windows 2000/XP/2003 platform. Apache also provides a cleaner servlet container through Tomcat. However, we also provide an IIS Plug-in, and you can configure IIS as the web server if you have a requirement to use Microsoft technologies.

I am running Apache/IIS hosting a website, Can I run SurgeMail with webmail on the same machine?

FAQ - Frequently Asked Questions
If you have a spare ip on the machine you can make webmail bind to that IP only and then configure Apache/IIS to only bind to the other IP. This means you can have webmail running on port 80 (normal web port) and it won't interfere with Apache/IIS. You can setup webmail so it runs directly under Apache or IIS, you will need to download webmail separately from netwinsite and run the webmail installer and then turn off the webmail port in surgemail as you won't be using that.

edit] I use apache's mod_layout and notice some odd error messages, what is the problem?

Gallery2:FAQ - Gallery Codex
If you use mod_layout with Apache, make sure it is disabled for gallery files. Gallery sometimes sends binary data back from a php file, so adding a header or footer to these requests will corrupt the data! Adding the following lines to your apache config file or your .htaccess should fix it. # Disable layout header and footer for Gallery2 LayoutIgnoreHeaderURI /path/to/gallery2/*.* LayoutIgnoreFooterURI /path/to/gallery2/*.

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.

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.

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.

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.

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.

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.

What is Apache?

Apache Server Frequently Asked Questions
runs on Windows NT/9x, Netware 5.x and above, OS/2, and most versions of Unix, as well as several other operating systems DBM databases for authentication allows you to easily set up password-protected pages with enormous numbers of authorized users, without bogging down the server. Customized responses to errors and problems Allows you to set up files, or even CGI scripts, which are returned by the server in response to errors and problems, e.g.

Why do I get error messages when I run support tools on a DDS Media Changer (Autoloader) ?

Frequently Asked Questions (FAQs)
The problem occurs only on Models C1553A and C1557A. As of February 1999, there is no workaround to this problem, but a fix is planned for an upcoming release of STM. The problem occurs when the device has a non-zero Logical Unit Number (LUN) in its hardware path. For example: 13 8/16/5.3.0 SCSI Tape (HPC1557A) 14 8/16/5.3.

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.

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.

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.
More Questions >>

© Copyright 2007-2012 QueryCAT
About • Webmasters • Contact