| Server IP : 189.126.111.107 / Your IP : 216.73.217.69 Web Server : Apache System : Linux www.gadotticar.com.br 5.4.0-135-generic #152-Ubuntu SMP Wed Nov 23 20:19:22 UTC 2022 x86_64 User : gadotticar ( 1000) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/webmin/virtual-server/ |
Upload File : |
#!/usr/bin/perl
# enable_domain.cgi
# Undo the disabling of a domain
require './virtual-server-lib.pl';
&ReadParse();
$d = &get_domain($in{'dom'});
&can_disable_domain($d) || &error($text{'edit_ecannot'});
$d->{'disabled'} || &error($text{'enable_ealready'});
if ($in{'confirm'}) {
&ui_print_unbuffered_header(&domain_in($d), $text{'enable_title'}, "");
}
else {
&ui_print_header(&domain_in($d), $text{'enable_title'}, "");
}
# Work out what can be enabled
@enable = &get_enable_features($d);
if (!$in{'confirm'}) {
# Ask the user if he is sure
@distext = map { $text{"disable_f".$_} ||
&plugin_call($_, "feature_disname") } @enable;
if (@distext == 1) {
$distext = $distext[0];
}
elsif (@distext == 2) {
$distext = &text('disable_and', $distext[0], $distext[1]);
}
else {
$dislast = pop(@distext);
$distext = &text('disable_and', join(", ", @distext), $dislast);
}
print &text('enable_rusure2', "<tt>$d->{'dom'}</tt>", $distext),"<p>\n";
# Show OK button
print "<center>\n";
print &ui_form_start("enable_domain.cgi");
if (!$d->{'parent'}) {
@grid = ( "<b>$text{'enable_subservers'}</b>",
&ui_yesno_radio("subservers", 0) );
print &ui_grid_table(\@grid, 2, 30, [ "nowrap" ]);
}
print &ui_hidden("dom", $in{'dom'});
print &ui_form_end([ [ "confirm", $text{'enable_ok'} ] ]);
print "</center>\n";
}
else {
# Build list of domains
@doms = ( $d );
if ($in{'subservers'} && !$d->{'parent'}) {
foreach my $sd (&get_domain_by("parent", $d->{'id'})) {
if ($sd->{'disabled'}) {
push(@doms, $sd);
}
}
}
foreach $d (@doms) {
if (@doms > 1) {
&$first_print(&text('enable_doing',
&show_domain_name($d)));
&$indent_print();
}
$err = &enable_virtual_server($d);
&error($err) if ($err);
if (@doms > 1) {
&$outdent_print();
}
}
$d = $doms[0];
&run_post_actions();
&webmin_log("enable", "domain", $d->{'dom'}, $d);
# Call any theme post command
if (defined(&theme_post_save_domain)) {
&theme_post_save_domain($d, 'modify');
}
}
&ui_print_footer(&domain_footer_link($d),
"", $text{'index_return'});