mantis 2.0.0 - Fonts not displaying when using https

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
fmancardi
Posts: 6
Joined: 17 Jan 2017, 19:19

mantis 2.0.0 - Fonts not displaying when using https

Post 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
agadmin
Posts: 1
Joined: 18 Mar 2017, 17:30

Re: mantis 2.0.0 - Fonts not displaying when using https

Post 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/
boschma1
Posts: 17
Joined: 17 Apr 2016, 15:29

Re: mantis 2.0.0 - Fonts not displaying when using https

Post by boschma1 »

Hi fmancardi

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

Cheers Markus
fmancardi
Posts: 6
Joined: 17 Jan 2017, 19:19

Re: mantis 2.0.0 - Fonts not displaying when using https

Post 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
Post Reply