Apache 2.4 directory cannot display "Last modified" "Size" "Description"

Hi 2 all,
i have had AIX 7.2

[root@dmdw1]:/# /usr/IBMAHS/bin/apachectl -v
Server version: Apache/2.4.12 (Unix)
Server built:   May 25 2015 04:58:27
 [root@dmdw1]:/#
[root@dmdw1]:/# /usr/IBMAHS/bin/apachectl -M
Loaded Modules:
 core_module (static)
 so_module (static)
 http_module (static)
 mpm_worker_module (static)
 authn_file_module (shared)
 authn_dbm_module (shared)
 authn_anon_module (shared)
 authn_dbd_module (shared)
 authn_socache_module (shared)
 authn_core_module (shared)
 authz_host_module (shared)
 authz_groupfile_module (shared)
 authz_user_module (shared)
 authz_dbm_module (shared)
 authz_owner_module (shared)
 authz_dbd_module (shared)
 authz_core_module (shared)
 access_compat_module (shared)
 auth_basic_module (shared)
 auth_form_module (shared)
 auth_digest_module (shared)
 allowmethods_module (shared)
 file_cache_module (shared)
 cache_module (shared)
 cache_disk_module (shared)
 cache_socache_module (shared)
 socache_shmcb_module (shared)
 socache_dbm_module (shared)
 socache_memcache_module (shared)
 watchdog_module (shared)
 macro_module (shared)
 dbd_module (shared)
 dumpio_module (shared)
 echo_module (shared)
 buffer_module (shared)
 data_module (shared)
 ratelimit_module (shared)
 reqtimeout_module (shared)
 ext_filter_module (shared)
 request_module (shared)
 include_module (shared)
 filter_module (shared)
 reflector_module (shared)
 substitute_module (shared)
 sed_module (shared)
 charset_lite_module (shared)
 deflate_module (shared)
 xml2enc_module (shared)
 proxy_html_module (shared)
 mime_module (shared)
 log_config_module (shared)
 log_debug_module (shared)
 log_forensic_module (shared)
 logio_module (shared)
 lua_module (shared)
 env_module (shared)
 mime_magic_module (shared)
 expires_module (shared)
 headers_module (shared)
 usertrack_module (shared)
 unique_id_module (shared)
 setenvif_module (shared)
 version_module (shared)
 remoteip_module (shared)
 proxy_module (shared)
 proxy_connect_module (shared)
 proxy_ftp_module (shared)
 proxy_http_module (shared)
 proxy_fcgi_module (shared)
 proxy_scgi_module (shared)
 proxy_fdpass_module (shared)
 proxy_wstunnel_module (shared)
 proxy_ajp_module (shared)
 proxy_balancer_module (shared)
 proxy_express_module (shared)
 session_module (shared)
 session_cookie_module (shared)
 session_dbd_module (shared)
 slotmem_shm_module (shared)
 slotmem_plain_module (shared)
 ssl_module (shared)
 dialup_module (shared)
 lbmethod_byrequests_module (shared)
 lbmethod_bytraffic_module (shared)
 lbmethod_bybusyness_module (shared)
 lbmethod_heartbeat_module (shared)
 unixd_module (shared)
 heartbeat_module (shared)
 heartmonitor_module (shared)
 dav_module (shared)
 status_module (shared)
 autoindex_module (shared) <-------------
 asis_module (shared)
 info_module (shared)
 cgid_module (shared)
 cgi_module (shared)
 dav_fs_module (shared)
 dav_lock_module (shared)
 vhost_alias_module (shared)
 negotiation_module (shared)
 dir_module (shared)
 imagemap_module (shared)
 actions_module (shared)
 speling_module (shared)
 userdir_module (shared)
 alias_module (shared)
 rewrite_module (shared)
[root@dmdw1]:/#
  

---- AIX httpd.conf

#DocumentRoot "/usr/IBMAHS/htdocs"
DocumentRoot "/home/oracle/load"
<Directory "/home/oracle/load">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # core - Apache HTTP Server Version 2.4
    # for more information.
    #
    Options Indexes FollowSymLinks
    AddDefaultCharset windows-1251
    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   AllowOverride FileInfo AuthConfig Limit
    #
    AllowOverride None

    #
    # Controls who can get stuff from this server.
    #
    Require all granted
</Directory>

I upload images between linux apache directory view and AIX apache directory view. AIX cannot display "Last modified" "Size" "Description" . How to solve this issue ?

You can try this Apache2 directive:

Fancy Indexing

Options +Indexes
IndexOptions +FancyIndexing
1 Like

Thanks you NEO, with

Options +Indexes 
IndexOptions +FancyIndexing

 

work fine. You resolve my problem. Thanks again.

Welcome!

Thanks for posting back with your positive results.

1 Like