MOON
Server: Apache
System: Linux server.zakatpenang.com 4.18.0-372.19.1.el8_6.x86_64 #1 SMP Tue Aug 2 13:42:59 EDT 2022 x86_64
User: zakatpen (1001)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: /home/zakatpen/public_html/landingpage/database/.htaccess
# Protect database folder from direct web access
     # Created: 2025-12-26
     # Purpose: Prevent unauthorized execution of migration/setup scripts

     <IfModule mod_authz_core.c>
         # Apache 2.4+
         Require all denied
     </IfModule>

     <IfModule !mod_authz_core.c>
         # Apache 2.2
         Order Deny,Allow
         Deny from all
     </IfModule>

     # Allow viewing SQL schema files (read-only)
     <FilesMatch "\.(sql)$">
         <IfModule mod_authz_core.c>
             Require all granted
         </IfModule>
         <IfModule !mod_authz_core.c>
             Order Allow,Deny
             Allow from all
         </IfModule>
     </FilesMatch>