XF 2.1 PHP Error Requiring an MySQL extention for WP

wedgar

Well-known member
I have uploaded a 15 meg file via ftp onto my forum site. Through the Resource add-on, I used an external download URL address to link the file to the resource item.

Upon trying to download the file, I got an error message, "Your PHP installation appears to be missing the MySQL extension which is required by WordPress. " I am able to download other resource items without any problem.

I'm puzzled why I am getting that error message when attempting to download the file, but am able to download other resource items without trouble.

Thanks!
 
It may be modified. If so, it was not modified by me.

I have listed the .htaccess file in the /public_html directory. My forum is in the /public_html/community directory.

Thanks for your help!




# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php72” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php72 .php .php7 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit
 
Top Bottom