Page 1 of 1

mantis 2.0.0 - Fonts not displaying when using https

Posted: 01 Feb 2017, 13:44
by fmancardi
I've installed mantis on CentOs using Apache Friends XAMPP 5.26.8.
I've using https, and all icons (that are implemente using fontawesome) are not displayed, and when I try to access the file (that is really there) I've got error 500.
I've tried removing .htaccess file from fonts folder and everything is now OK

I've done same tests on my local installation (fedora) using same XAMPP but using http and there is no issues.

Any hint?

regards

Francisco

Re: mantis 2.0.0 - Fonts not displaying when using https

Posted: 18 Mar 2017, 17:36
by agadmin
Check your Apache error logs when trying to access one of the files directly. If you see an error along the lines of:

Code: Select all

...mantis/fonts/.htaccess: AddType not allowed here
then you may need to adjust your AllowOverride settings in the Apache config for the Mantis directory, such as:

Code: Select all

AllowOverride FileInfo
in order to allow AddType in the .htaccess file in ...mantis/fonts/

Re: mantis 2.0.0 - Fonts not displaying when using https

Posted: 15 Jun 2017, 07:54
by boschma1
Hi fmancardi

I experience the same issue. Has yours been solved? If so, how?

Cheers Markus

Re: mantis 2.0.0 - Fonts not displaying when using https

Posted: 03 Nov 2017, 09:40
by fmancardi
@agadmin
thanks a lot

I've changed my /opt/lampp/etc/httpd.conf this way

FROM
Alias /mantis /opt/local/intranet/mantis
<Directory "/opt/local/intranet/mantis">
AllowOverride AuthConfig Limit
Order allow,deny
Allow from all
Require all granted
</Directory>

TO
Alias /mantis /opt/local/intranet/mantis
<Directory "/opt/local/intranet/mantis">
AllowOverride AuthConfig Limit


# viewtopic.php?f=3&t=24394
AllowOverride FileInfo
#


Order allow,deny
Allow from all
Require all granted
</Directory>

THANKS A LOT