• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

autom4te.cache/H17-Sep-2003-6,1055,492

html/H07-May-2022-601578

ACLH A D21-May-2002612 139

AUTHORSH A D17-Sep-20031 KiB4531

BUGSH A D21-May-200224 21

COPYINGH A D21-May-200217.6 KiB341281

ChangeLogH A D17-Sep-200310.8 KiB322246

FAQH A D24-Sep-2003992 2617

INSTALLH A D21-May-20025.9 KiB167140

LICENSEH A D21-May-2002820 1713

Makefile.amH A D17-Sep-20032.1 KiB7358

Makefile.inH A D03-May-202216.6 KiB549451

NEWSH A D21-May-2002307 108

READMEH A D21-May-200219 41

README.SQLH A D17-Sep-20031.2 KiB3423

TEMPLATEH A D21-May-2002715 1713

TODOH A D21-May-2002151 84

acconfig.hH A D17-Sep-200372 84

acl.cH A D06-Aug-20023.4 KiB162106

aclocal.m4H A D17-Sep-200331.2 KiB864725

alphabetize.cH A D11-Sep-20033.9 KiB218162

alphabetize.hH A D11-Sep-20032.1 KiB7914

cedit.cH A D27-Jan-20035.5 KiB256190

cgi.cH A D17-Sep-20037.7 KiB384276

config.guessH A D21-May-200217.6 KiB628537

config.h.inH A D03-May-20222.2 KiB8860

config.subH A D21-May-200222.3 KiB1,100997

configureH A D03-May-2022166 KiB5,7754,750

configure.inH A D17-Sep-20035.3 KiB228192

db_owner.cH A D18-Sep-20034.4 KiB165103

domain.cH A D17-Sep-200314.7 KiB555426

global.cH A D27-Jan-20034.4 KiB196104

global.hH A D17-Sep-20033.9 KiB166102

htaccessH A D21-May-2002114 65

install-shH A D21-May-20025.5 KiB251152

lang.cH A D08-Aug-20023.1 KiB13589

misc.cH A D17-Sep-20031.8 KiB6329

missingH A D21-May-20026.1 KiB189152

mkinstalldirsH A D21-May-2002732 4123

stamp-hH A D17-Sep-200310 21

stamp-h.inH A D26-Jan-200310 21

template.cH A D08-Aug-20022.8 KiB12691

user.cH A D17-Sep-200316.4 KiB602484

vqadmin.aclH A D06-Aug-2002864 4740

vqadmin.cH A D27-Jan-20031.6 KiB6226

README

1See INSTALL file
2
3
4

README.SQL

1vqadmin-2.3.6
29/17/03 <chris@inter7.com>
3
4Vqadmin can now keep track of domain owners in a MySQL database.
5This allows owner names to be associated with newly created domains.
6To enable this feature do the following:
7
80. Create the following table in a database in your MySQL:
9
10		CREATE TABLE domain_owner (
11        	domain CHAR(64) NOT NULL,
12        	owner CHAR(32) NOT NULL,
13        	PRIMARY KEY(domain, owner)
14		);
15
16
171. Edit the file db_owner.c
18
19Fill in the approriate names for host, username, password, and database.
20The variables to set are clearly marked at the top of the file, and their
21values should be set according to what you want vqadmin to connect to your
22MySQL database as. The value for variable db should be set to the name of
23the database that you created the table domain_owner in.
24
25
262. Configure vqadmin with --enable-mysql=y option
27
28When following the installation instructions, run ./configure --enable-mysql=y
29Then, compile and install vqadmin as usual.
30
31That should do it! Now Vqadmin will insert owner names into the domain_owner
32table when a new domain is created, and it will show a list of possible (known)
33domain owners when you add a domain :)
34