[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cobalt-users] meta-verify messed up my GUI



I have two virtual sites on a RaQ4i, but none of them
show up in the Admin GUI (after having used
meta-verify to repair a virtusertable problem).
What do I do?

In the httpd.conf it looks something like this:

NameVirtualHost 192.168.1.8
<VirtualHost 192.168.1.8>
ServerName domain.org
ServerAdmin admin
DocumentRoot /home/sites/home/web
RewriteEngine on
RewriteCond %{HTTP_HOST}                !^192.168.1.8(:80)?$
RewriteCond %{HTTP_HOST}                !^www.domain.org(:80)?$
RewriteCond %{HTTP_HOST}                !^domain.org(:80)?$
RewriteRule ^/(.*)                      http://www.domain.org/$1 [L,R]
RewriteOptions inherit
AliasMatch ^/~([^/]+)(/(.*))? /home/sites/home/users/$1/web/$3
AddType application/x-httpd-php .php4
AddType application/x-httpd-php .php
AddHandler cgi-wrapper .cgi
AddHandler cgi-wrapper .pl
</VirtualHost>
NameVirtualHost 192.168.1.8
<VirtualHost 192.168.1.8>
ServerName domain2.org
ServerAdmin admin
DocumentRoot /home/sites/home/web
RewriteEngine on
RewriteCond %{HTTP_HOST}                !^192.168.1.8(:80)?$
RewriteCond %{HTTP_HOST}                !^www.domain2.org(:80)?$
RewriteCond %{HTTP_HOST}                !^domain2.org(:80)?$
RewriteRule ^/(.*)                      http://www.domain2.org/$1 [L,R]
RewriteOptions inherit
AliasMatch ^/~([^/]+)(/(.*))? /home/sites/home/users/$1/web/$3
AddHandler cgi-wrapper .cgi
AddHandler cgi-wrapper .pl
</VirtualHost>

Both domains are functional, their users are there as well,
but I can't change anything, since I can't seem to add
the domains to the Admin gui; it keeps telling me
these virtual sites already exist! (which is the case)
How do I get those sites back visible (and changeable) in the GUI ?
And if not, how do I never have to use the GUI again,
I'm pretty fed up with it, it's way too unpredictable,
it does not do what you tell it to do, and the config
lacks a lot of options that can simply be set/changed
using SSH.

How do I alter (existing) site settings, like quota etc?
What config files stores this data, so that I can manually
edit, so that I no longer have to use the Admin GUI
and from now on only have to use the commandline ?

Can the shell-tools do this? and if so;
where are they stored, what files do they alter etc.