Quote from: emintah92 on August 06, 2025, 04:28:53 AMI can only say that I know next to nothing about Apache server files and editing .htaccess files so I haven't touched them at all. please help.![]()
Hi, this error depends on your current apache version.
Thank you for your report. Good catch.
To solve try to replace content of file C:/wamp64/www/abantecart/admin/.htaccess with this:
Code Select
<IfModule !mod_authz_core.c>
# Apache 2.2
<FilesMatch "\.php$">
Order deny,allow
Deny from all
</FilesMatch>
</IfModule>
<IfModule mod_authz_core.c>
# Apache 2.4+
<FilesMatch "\.php$">
Require all denied
</FilesMatch>
</IfModule>
and tell us result. If all fine we'll give you instruction what other places should be edited.
Thank you.

