Search 5,000,000+ questions and answers.

Frequently Asked Questions

I heard that Subversion is an Apache extension? What does it use for servers?

subversion: Subversion FAQ
No. Subversion is a set of libraries. It comes with a command-line client that uses them. There are two different Subversion server processes: either svnserve, which is small standalone program similar to cvs pserver, or Apache httpd-2.0 using a special mod_dav_svn module. svnserve speaks a custom protocol, while mod_dav_svn uses WebDAV as its network protocol. See chapter 6 in the Subversion book to learn more.
Related Questions

Does this mean I have to set up Apache to use Subversion?

subversion: Subversion FAQ
The long answer: if you just want to access a repository, then you only need to build a Subversion client. If you want to host a networked repository, then you need to set up either Apache2 or an "svnserve" server. For more details about setting up a network accessible Subversion server, see chapter 6 in the Subversion book. If you want WebDAV and all the other "goodies" that come with the Apache server, then yes, you'll need Apache 2.0. It's always an option to run Apache 2.
Related Questions

OK, so how does Apache compare to other servers?

Apache Server Frequently Asked Questions
Apache has been shown to be substantially faster, more stable, and more feature-full than many other web servers. Although certain commercial servers have claimed to surpass Apache's speed (it has not been demonstrated that any of these "benchmarks" are a good way of measuring WWW server speed at any rate), we feel that it is better to have a mostly-fast free server than an extremely-fast server that costs thousands of dollars.
Related Questions

Can I use this with web servers other than Apache?

Logmonster FAQ - The Network People, Inc.
Absolutely. Set up a configuration file with your vhost information in it and point logmonster at it. The format for each vhost is as follows: <VirtualHost> ServerName www.tnpi.net ServerAlias www.thenetworkpeople.net *.tnpi.net DocumentRoot /home/tnpi.net/html </VirtualHost> Create as many vhost directives as you need and logmonster will parse them all. When you make changes to your web server, update this file as well. All the other rules apply equally.
Related Questions

Does Subversion have Changesets?

subversion: Subversion FAQ
The question is a bit loaded, because everyone seems to have a slightly different definition of "changeset", or a least a slightly different expectation of what it means for a version control system to have "changeset features". For the purposes of this discussion, here's a simple definition of changeset: it's a collection of changes with a unique name. The changes might include textual edits to file contents, modifications to tree structure, or tweaks to metadata.
Related Questions

Is Subversion stable enough for me to use for my own projects?

subversion: Subversion FAQ
Subversion has been in development since 2000, and became self-hosting after one year. A year later when we declared "alpha", Subversion was already being used by dozens of private developers and shops for real work. After that, it was two more years of bugfixing and stabilization until we reached 1.0. Most other projects probably would have called the product "1.0" much earlier, but we deliberately decided to delay that label as long as possible.
Related Questions

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

Can I use Active Server Pages (ASP) with Apache?

Apache Server Frequently Asked Questions
The base Apache Web Server package does not include ASP support. However, a number of projects provide ASP or ASP-like functionality for Apache. Some of these are:
Related Questions

Why does Apache send a cookie on every response?

Apache Server Frequently Asked Questions
Apache does not automatically send a cookie on every response, unless you have re-compiled it with the mod_usertrack module, and specifically enabled it with the CookieTracking directive. This module has been in Apache since version 1.2. This module may help track users, and uses cookies to do this. If you are not using the data generated by mod_usertrack, do not compile it into Apache.
Related Questions

Does or will Apache act as a Proxy server?

Apache Server Frequently Asked Questions
Apache version 1.1 and above comes with a proxy module. If compiled in, this will make Apache act as a caching-proxy server.
Related Questions

What browsers does this extension work with?

Google Safe Browsing for Firefox
This extension works only with Firefox version 1.5 and later. It doesn't work in the Mozilla Suite, Internet Explorer or Opera.
Related Questions

What subversion clients do you use?

Versionshelf - Effortless, Secure Subversion Hosting - FAQ
We are happy with the subversion commandline client svn in combination with our favorite text editor SubEthaEdit on Mac OS X. on Linux use your favourite package manager to install the subversion client. Of course there are also several graphical subversion clients:
Related Questions

Can I use CVS and Subversion at the same time?

HepForge > Documentation > FAQ - CEDAR
Not for the same code! Both version control systems use a centralised repository but the formats are very different: CVS cannot read or write to a Subversion repository and vice versa. There is a program (cvs2svn) which can convert CVS repositories to Subversion ones, but since Subversion is intended as a replacement for CVS, you cannot convert in the other direction. (NB.
Related Questions

So you have a subversion repository. Great, now how do I use it?

Frequently Asked Questions
Well, if you happen to be running a Gentoo or other system configured pretty much exactly like mine, you can just type make in the qui4mplayer directory (which will be created if you follow the SourceForge instructions for using subversion - if you change them you should know which directory you need). If your system isn't exactly like mine, you can go into the directory, type "qmake -project" and "qmake" before "make" and then it should compile for you.
Related Questions

What operating systems does Subversion run on?

subversion: Subversion FAQ
Subversion is written in ANSI C and uses APR, the Apache Portable Runtime library, as a portability layer. The Subversion client will run anywhere APR runs, which is most places. The Subversion server (i.e., the repository side) is the same, except that it will not host a Berkeley DB repository on Win9x platforms (Win95/Win98/WinME), because Berkeley DB has shared-memory segment problems on Win9x. FSFS repositories (introduced in version 1.
Related Questions

How does Subversion handle binary files?

subversion: Subversion FAQ
When you first add or import a file into Subversion, the file is examined to determine if it is a binary file. Currently, Subversion just looks at the first 1024 bytes of the file; if any of the bytes are zero, or if more than 15% are not ASCII printing characters, then Subversion calls the file binary. This heuristic might be improved in the future, however. If Subversion determines that the file is binary, the file receives an svn:mime-type property set to "application/octet-stream".
Related Questions

What kind of servers do you use?

IndicHosts.net - Pre-Sale FAQs
We utilize dual intel xeon 2.4-3.0ghz servers with hyper threading technology (making 4 cpus). Each server is outfitted with at least 2000-4000 MB of RAM and high performance 10,000 RPM SCSI RAID hard drives. With 12ghz of processing power, your website will run at lighting fast speeds.
Related Questions

Why does Apache ask for my password twice before serving a file?

Apache Server Frequently Asked Questions
If the hostname under which you are accessing the server is different than the hostname specified in the ServerName directive, then depending on the setting of the UseCanonicalName directive, Apache will redirect you to a new hostname when constructing self-referential URLs. This happens, for example, in the case where you request a directory without including the trailing slash.
Related Questions

What cryptographic algorithms does HP Apache use?

hp apache-based web server faqs
HP Apache uses all the industry standard cryptographic algorithms such as RSA(512/1024), RC2, RC3, RC4, DES, 3DES, SHA, MD5, ... supported by OpenSSL. The crypto algorithms, RC4, RSA, and MD5 in the RSA Crypto-C library are specially tuned by HP for better performance on HP-UX. We use these algorithms with OpenSSL to provide superior performance for SSL connections.
Related Questions

What are DNS servers? What does it have to do with my account?

RYDIA.NET
DNS stands for Domain Name System, or a large system which answers questions about DNS lookups. If you host a domain with rydia, whenever anyone in the world punches your domain name into their browser, the browser will need to figure out what IP address our server has. So it asks its local DNS server, which doesn't know, then asks the root DNS servers, which don't know, which then ask our DNS server, which tells them what it is.
Related Questions

What is Subversion?

Versionshelf - Effortless, Secure Subversion Hosting - FAQ
Subversion is an open source application used for revision control (also known as version control system) and is - as we think - essential for every software development project.
Related Questions

Can I get an extension?

Frequently Asked Questions
Students can purchase an extension when their exams expire. Once your exams expire an extension option will appear in your portal account. You can purchase an extension for $200.00. An extension also gives you 1 month from your final deadline to complete the exams. There are no limits to how many extensions you can buy. Please note that this option is only available for 1 month after your certification expires.
Related Questions

Got A Question? Ask Our Community!


More Questions >>

© Copyright 2007-2008 QueryCAT
About • Webmasters • Contact