代码搜索:cgi
找到约 10,000 项符合「cgi」的源代码
代码结果 10,000
www.eeworm.com/read/100018/15888363
cgi makelink.cgi
#!/usr/local/bin/perl
# makelink.cgi
# Create a symbolic link
require './file-lib.pl';
&ReadParse();
&switch_acl_uid();
print "Content-type: text/plain\n\n";
if (!&can_access($in{'from'})) {
print &
www.eeworm.com/read/100018/15888369
cgi move.cgi
#!/usr/local/bin/perl
# move.cgi
# Move some file or directory
require './file-lib.pl';
&ReadParse();
&switch_acl_uid();
print "Content-type: text/plain\n\n";
unlink($in{'to'}); # in case we are movi
www.eeworm.com/read/100018/15888376
cgi stop.cgi
#!/usr/local/bin/perl
# stop.cgi
# Stop the running apache server
require './apache-lib.pl';
&ReadParse();
&error_setup($text{'stop_err'});
$access{'stop'} || &error($text{'stop_ecannot'});
if ($con
www.eeworm.com/read/100018/15888385
cgi reconfig.cgi
#!/usr/local/bin/perl
# reconfig.cgi
# Save apache configuration
require './apache-lib.pl';
$access{'global'}==1 || &error($text{'reconfig_ecannot'});
&ReadParse();
foreach $m (split(/\0/, $in{'mods
www.eeworm.com/read/100018/15888456
cgi start.cgi
#!/usr/local/bin/perl
# start.cgi
# Start apache with the server root from the config files
require './apache-lib.pl';
&ReadParse();
&error_setup($text{'start_err'});
$access{'stop'} || &error($text
www.eeworm.com/read/100018/15888476
cgi htaccess.cgi
#!/usr/local/bin/perl
# htaccess.cgi
# Display a list of per-directory config files
require './apache-lib.pl';
$access{'global'} || &error($text{'htaccess_ecannot'});
&header($text{'htaccess_title'},
www.eeworm.com/read/100018/15888480
cgi restart.cgi
#!/usr/local/bin/perl
# restart.cgi
# Send a SIGHUP to apache
require './apache-lib.pl';
&ReadParse();
&error_setup($text{'restart_err'});
$conf = &get_config();
$pidfilestr = &find_directive_struct
www.eeworm.com/read/100018/15888487
cgi index.cgi
#!/usr/local/bin/perl
# index.cgi
# Display a list of all virtual servers, and links for various types
# of global configuration
require './apache-lib.pl';
# check for the base directory
if (!(-d $c
www.eeworm.com/read/100018/15888513
cgi tunefs.cgi
#!/usr/local/bin/perl
# tunefs.cgi
# Do the tuning of a filesystem
require './fdisk-lib.pl';
&ReadParse();
&can_edit_disk($in{'dev'}) || &error($text{'tunefs_ecannot'});
&error_setup($text{'tunefs_er
www.eeworm.com/read/100018/15888520
cgi mkfs.cgi
#!/usr/local/bin/perl
# mkfs.cgi
# Where the new filesystem actually gets created.
require './fdisk-lib.pl';
&foreign_require("proc", "proc-lib.pl");
&ReadParse();
&can_edit_disk($in{'dev'}) || &err