Server IP : 195.201.23.43 / Your IP : 52.15.174.200 Web Server : Apache System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64 User : kdecoratie ( 1041) PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/usermin/htaccess/ |
Upload File : |
# mod_cache.pl # Functions that have been moved out of mod_proxy in apache 2.0 sub mod_cache_directives { local $rv; $rv = [ [ 'CacheDefaultExpire', 0, 13.1, 'virtual', 2.0 ], [ 'CacheEnable CacheDisable', 1, 13.1, 'virtual', 2.0 ], # [ 'CacheIgnoreCacheControl', 0, 13.1, 'virtual', 2.0 ], # [ 'CacheIgnoreNoLastMod', 0, 13.1, 'virtual', 2.0 ], [ 'CacheLastModifiedFactor', 0, 13.1, 'virtual', 2.0 ], [ 'CacheMaxExpire', 0, 13.1, 'virtual', 2.0 ] ]; return &make_directives($rv, $_[0], "mod_cache"); } require 'cache.pl'; sub edit_CacheEnable_CacheDisable { local $rv = "<table border>\n". "<tr $tb> <td><b>$text{'cache_enable'}</b></td>\n". "<td><b>$text{'cache_type'}</b></td>\n". "<td><b>$text{'cache_url'}</b></td> </tr>\n"; local ($c, $i = 0); foreach $c (@{$_[0]}, @{$_[1]}, { }) { $rv .= "<tr $cb>\n"; $rv .= "<td><select name=CacheEnable_e_$i>\n"; $rv .= sprintf "<option value=0 %s> </option>\n", $c ? "" : "selected"; $rv .= sprintf "<option value=1 %s>%s</option>\n", $c->{'name'} eq 'CacheEnable' ? 'selected' : '', $text{'yes'}; $rv .= sprintf "<option value=2 %s>%s</option>\n", $c->{'name'} eq 'CacheDisable' ? 'selected' : '', $text{'no'}; $rv .= "</select></td> <td><select name=CacheEnable_t_$i>\n"; $rv .= sprintf "<option value=disk %s>%s</option>\n", $c->{'words'}->[0] eq 'disk' ? 'selected' : '', $text{'cache_disk'}; $rv .= sprintf "<option value=mem %s>%s</option>\n", $c->{'words'}->[0] eq 'mem' ? 'selected' : '', $text{'cache_mem'}; $rv .= "</select></td>\n"; $rv .= sprintf "<td><input name=CacheEnable_u_$i size=20 value='%s'></td>\n", $c->{'name'} eq 'CacheEnable' ? $c->{'words'}->[1] : $c->{'words'}->[0]; $rv .= "</tr>\n"; $i++; } $rv .= "</table>\n"; return (2, $text{'cache_endis'}, $rv); } sub save_CacheEnable_CacheDisable { local ($i, @en, @dis); for($i=0; defined($in{"CacheEnable_e_$i"}); $i++) { next if (!$in{"CacheEnable_e_$i"}); $in{"CacheEnable_u_$i"} =~ /^\S+$/ || &error($text{'cache_eurl'}); if ($in{"CacheEnable_e_$i"} == 1) { push(@en, $in{"CacheEnable_t_$i"}." ".$in{"CacheEnable_u_$i"}); } else { push(@dis, $in{"CacheEnable_u_$i"}); } } return ( \@en, \@dis ); } sub edit_CacheIgnoreCacheControl { return (1, $text{'cache_control'}, &choice_input($_[0]->{'value'}, "CacheIgnoreCacheControl", "off", "$text{'yes'},on", "$text{'no'},off")); } sub save_CacheIgnoreCacheControl { return &parse_choice("CacheIgnoreCacheControl", "off"); } sub edit_CacheIgnoreNoLastMod { return (1, $text{'cache_lastmod'}, &choice_input($_[0]->{'value'}, "CacheIgnoreNoLastMod", "off", "$text{'yes'},on", "$text{'no'},off")); } sub save_CacheIgnoreNoLastMod { return &parse_choice("CacheIgnoreNoLastMod", "off"); }Private