Sponsored Content
Operating Systems AIX Apache 2.4 directory cannot display "Last modified" "Size" "Description" Post 303040424 by Neo on Tuesday 29th of October 2019 03:10:16 AM
Old 10-29-2019
You can try this Apache2 directive:

Fancy Indexing

Quote:
Fancy indexing shows the files plus additional information about them like the date the file is last modified, their size and description. To use that type of indexing, you should add the following two lines in a file named .htaccess in the destination folder:

Code:
Options +Indexes
IndexOptions +FancyIndexing

This User Gave Thanks to Neo For This Post:
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Explain the line "mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'`"

Hi Friends, Can any of you explain me about the below line of code? mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'` Im not able to understand, what exactly it is doing :confused: Any help would be useful for me. Lokesha (4 Replies)
Discussion started by: Lokesha
4 Replies

2. Shell Programming and Scripting

cat $como_file | awk /^~/'{print $1","$2","$3","$4}' | sed -e 's/~//g'

hi All, cat file_name | awk /^~/'{print $1","$2","$3","$4}' | sed -e 's/~//g' Can this be done by using sed or awk alone (4 Replies)
Discussion started by: harshakusam
4 Replies

3. Shell Programming and Scripting

Delete files older than "x" if directory size is greater than "y"

I wrote a script to delete files which are older than "x" days, if the size of the directory is greater than "y" #!/bin/bash du -hs $1 while read SIZE ENTRY do if ; then find $1 -mtime +$2 -exec rm -f {} \; echo "Files older than $2 days deleted" else echo "free Space available"... (4 Replies)
Discussion started by: JamesCarter
4 Replies

4. Shell Programming and Scripting

ps -ef | grep "string1" "string2" " "string3"

Hi all, can any one suggest me the script to grep multiple strings from ps -ef pls correct the below script . its not working/ i want to print OK if all the below process are running in my solaris system. else i want to print NOT OK. bash-3.00$ ps -ef | grep blu lscpusr 48 42 ... (11 Replies)
Discussion started by: steve2216
11 Replies

5. Shell Programming and Scripting

awk command to replace ";" with "|" and ""|" at diferent places in line of file

Hi, I have line in input file as below: 3G_CENTRAL;INDONESIA_(M)_TELKOMSEL;SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL My expected output for line in the file must be : "1-Radon1-cMOC_deg"|"LDIndex"|"3G_CENTRAL|INDONESIA_(M)_TELKOMSEL"|LAST|"SPECIAL_WORLD_GRP_7_FA_2_TELKOMSEL" Can someone... (7 Replies)
Discussion started by: shis100
7 Replies

6. Shell Programming and Scripting

how to use "cut" or "awk" or "sed" to remove a string

logs: "/home/abc/public_html/index.php" "/home/abc/public_html/index.php" "/home/xyz/public_html/index.php" "/home/xyz/public_html/index.php" "/home/xyz/public_html/index.php" how to use "cut" or "awk" or "sed" to get the following result: abc abc xyz xyz xyz (8 Replies)
Discussion started by: timmywong
8 Replies

7. Solaris

The slices "usr", "opt", "tmp" disappeared!!! Help please.

The system don't boot. on the screen appears following: press enter to maintenance (or type CTRL-D to continue)...I checked with format command. ... the slices "0-root","1-swap","2-backup" exist. ...the slises "3-var","6-usr" -unassigned. :( (16 Replies)
Discussion started by: wolfgang
16 Replies

8. UNIX for Dummies Questions & Answers

Using "mailx" command to read "to" and "cc" email addreses from input file

How to use "mailx" command to do e-mail reading the input file containing email address, where column 1 has name and column 2 containing “To” e-mail address and column 3 contains “cc” e-mail address to include with same email. Sample input file, email.txt Below is an sample code where... (2 Replies)
Discussion started by: asjaiswal
2 Replies

9. Shell Programming and Scripting

Bash script - Print an ascii file using specific font "Latin Modern Mono 12" "regular" "9"

Hello. System : opensuse leap 42.3 I have a bash script that build a text file. I would like the last command doing : print_cmd -o page-left=43 -o page-right=22 -o page-top=28 -o page-bottom=43 -o font=LatinModernMono12:regular:9 some_file.txt where : print_cmd ::= some printing... (1 Reply)
Discussion started by: jcdole
1 Replies
libapache2-mod-perl2-2.0.7::docs::api::Apache2::CmdParmsUser)Contributed Perl Documenlibapache2-mod-perl2-2.0.7::docs::api::Apache2::CmdParms(3pm)

NAME
Apache2::CmdParms - Perl API for Apache command parameters object Synopsis use Apache2::CmdParms (); use Apache2::Module (); use Apache2::Const -compile => qw(NOT_IN_LOCATION); my @directives = ( { name => 'MyDirective', cmd_data => 'some extra data', }, ); Apache2::Module::add(__PACKAGE__, @directives); sub MyDirective { my ($self, $parms, $args) = @_; # push config $parms->add_config(['ServerTokens off']); # this command's command object $cmd = $parms->cmd; # check the current command's context $error = $parms->check_cmd_context(Apache2::Const::NOT_IN_LOCATION); # this command's context $context = $parms->context; # this command's directive object $directive = $parms->directive; # the extra information passed thru cmd_data to # Apache2::Module::add() $info = $parms->info; # which methods are <Limit>ed ? $is_limited = $parms->method_is_limited('GET'); # which allow-override bits are set $override = $parms->override; # which Options are allowed by AllowOverride (since Apache 2.2) $override = $parms->override_opts; # the path this command is being invoked in $path = $parms->path; # this command's pool $p = $parms->pool; # this command's configuration time pool $p = $parms->temp_pool; } Description "Apache2::CmdParms" provides the Perl API for Apache command parameters object. API
"Apache2::CmdParms" provides the following functions and/or methods: "add_config" Dynamically add Apache configuration at request processing runtime: $parms->add_config($lines); obj: $parms ( "Apache2::CmdParms object" ) arg1: $lines (ARRAY ref) An ARRAY reference containing configuration lines per element, without the new line terminators. ret: no return value since: 2.0.00 See also: "$s->add_config", "$r->add_config" "check_cmd_context" Check the current command against a context bitmask of forbidden contexts. $error = $parms->check_cmd_context($check); obj: $parms ( "Apache2::CmdParms object" ) arg1: $check ( "Apache2::Const :context constant" ) the context to check against. ret: $error ( string / undef ) If the context is forbidden, this method returns a textual description of why it was forbidden. If the context is permitted, this method returns "undef". since: 2.0.00 For example here is how to check whether a command is allowed in the "<Location>" container: use Apache2::Const -compile qw(NOT_IN_LOCATION); if (my $error = $parms->check_cmd_context(Apache2::Const::NOT_IN_LOCATION)) { die "directive ... not allowed in <Location> context" } "cmd" This module's command information $cmd = $parms->cmd(); obj: $parms ( "Apache2::CmdParms object" ) ret: $cmd ( "Apache2::Command object" ) since: 2.0.00 "directive" This command's directive object in the configuration tree $directive = $parms->directive; obj: $parms ( "Apache2::CmdParms object" ) ret: $directive ( "Apache2::Directive object" ) The current directive node in the configuration tree since: 2.0.00 "info" The extra information passed through "cmd_data" in "Apache2::Module::add()". $info = $parms->info; obj: $parms ( "Apache2::CmdParms object" ) ret: $info ( string ) The string passed in "cmd_data" since: 2.0.00 For example here is how to pass arbitrary information to a directive subroutine: my @directives = ( { name => 'MyDirective1', func => &MyDirective, cmd_data => 'One', }, { name => 'MyDirective2', func => &MyDirective, cmd_data => 'Two', }, ); Apache2::Module::add(__PACKAGE__, @directives); sub MyDirective { my ($self, $parms, $args) = @_; my $info = $parms->info; } In this example $info will either be 'One' or 'Two' depending on whether the directive was called as MyDirective1 or MyDirective2. "method_is_limited" Discover if a method is <Limit>ed in the current scope $is_limited = $parms->method_is_limited($method); obj: $parms ( "Apache2::CmdParms object" ) arg1: $method (string) The name of the method to check for ret: $is_limited ( boolean ) since: 2.0.00 For example, to check if the "GET" method is being "<Limit>"ed in the current scope, do: if ($parms->method_is_limited('GET') { die "..."; } "override" Which allow-override bits are set ("AllowOverride" directive) $override = $parms->override; obj: $parms ( "Apache2::CmdParms object" ) ret: $override ( bitmask ) the allow-override bits bitmask, which can be tested against "Apache2::Const :override constants". since: 2.0.00 For example to check that the "AllowOverride"'s "AuthConfig" and "FileInfo" options are enabled for this command, do: use Apache2::Const -compile qw(:override); $wanted = Apache2::Const::OR_AUTHCFG | Apache2::Const::OR_FILEINFO; $masked = $parms->override & $wanted; unless ($wanted == $masked) { die "..."; } "override_opts" Which options are allowed to be overridden by ".htaccess" files. This is set by "AllowOverride Options=...". $override_opts = $parms->override_opts; Enabling single options was introduced with Apache 2.2. For Apache 2.0 this function simply returns a bitmask with all options allowed. obj: $parms ( "Apache2::CmdParms object" ) ret: $override_opts ( bitmask ) the bitmask, which can be tested against "Apache2::Const :options constants". since: 2.0.3 "path" The current pathname/location/match of the block this command is in $path = $parms->path; obj: $parms ( "Apache2::CmdParms object" ) ret: $path ( string / "undef" ) If configuring for a block like <Location>, <LocationMatch>, <Directory>, etc., the pathname part of that directive. Otherwise, "undef" is returned. since: 2.0.00 For example for a container block: <Location /foo> ... </Location> '/foo' will be returned. "pool" Pool associated with this command $p = $parms->pool; obj: $parms ( "Apache2::CmdParms object" ) ret: $p ( "APR::Pool object" ) since: 2.0.00 "server" The (vhost) server this command was defined in httpd.conf $s = $parms->server; obj: $parms ( "Apache2::CmdParms object" ) ret: $s ( "Apache2::Server object" ) since: 2.0.00 "temp_pool" Pool for scratch memory; persists during configuration, but destroyed before the first request is served. $temp_pool = $parms->temp_pool; obj: $parms ( "Apache2::CmdParms object" ) ret: $temp_pool ( "APR::Pool object" ) since: 2.0.00 Most likely you shouldn't use this pool object, unless you know what you are doing. Use "$parms->pool" instead. Unsupported API "Apache2::CmdParms" also provides auto-generated Perl interface for a few other methods which aren't tested at the moment and therefore their API is a subject to change. These methods will be finalized later as a need arises. If you want to rely on any of the following methods please contact the the mod_perl development mailing list so we can help each other take the steps necessary to shift the method to an officially supported API. "context" Get context containing pointers to modules' per-dir config structures. $context = $parms->context; obj: $parms ( "Apache2::CmdParms object" ) ret: $newval ( "Apache2::ConfVector object" ) Returns the commands' per-dir config structures since: 2.0.00 See Also mod_perl 2.0 documentation. Copyright mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0. Authors The mod_perl development team and numerous contributors. perl v5.14.2 2011-02-08 libapache2-mod-perl2-2.0.7::docs::api::Apache2::CmdParms(3pm)
All times are GMT -4. The time now is 07:50 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy