Search found 6 matches

by fmancardi
03 Nov 2017, 09:40
Forum: Help
Topic: mantis 2.0.0 - Fonts not displaying when using https
Replies: 3
Views: 5010

Re: mantis 2.0.0 - Fonts not displaying when using https

@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 ...
by fmancardi
14 Feb 2017, 08:22
Forum: Help
Topic: SYSTEM ERROR - 'Argument 1 passed to columns_remove_invalid
Replies: 4
Views: 5746

Re: SYSTEM ERROR - 'Argument 1 passed to columns_remove_inva

2.1.x
config_api.php
case CONFIG_TYPE_COMPLEX:
$t_value = json_decode( $t_raw_value, true );
break;

1.2.x
config_api.php
case CONFIG_TYPE_COMPLEX:
$t_value = unserialize( $t_raw_value );
break;


2.1.x
function config_set( $p_option, $p_value, $p_user = NO_USER, $p_project = ALL_PROJECTS ...
by fmancardi
01 Feb 2017, 13:44
Forum: Help
Topic: mantis 2.0.0 - Fonts not displaying when using https
Replies: 3
Views: 5010

mantis 2.0.0 - Fonts not displaying when using https

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 ...
by fmancardi
23 Jan 2017, 19:15
Forum: Help
Topic: Using 1.2.20 & 1.3.5 pointing to same DB
Replies: 3
Views: 4165

Re: Using 1.2.20 & 1.3.5 pointing to same DB

May be I'm wrong, but I've exported schema of my current 1.2.x db and compare with 2.0.0 schema and have found not critic differences.
What I've found is that my issue arise because on 1.2.x COMPLEX config options are saved on db using serialize, while in 1.3.5 and 2.0.0 json_encode is used, or at ...
by fmancardi
18 Jan 2017, 06:37
Forum: Help
Topic: Using 1.2.20 & 1.3.5 pointing to same DB
Replies: 3
Views: 4165

Using 1.2.20 & 1.3.5 pointing to same DB

Hi
in order to check if users are confortable with new version 1.3.5, I would like to point to SAME DB from a 1.2.20 installtion and a 1.3.5

I've got my old 1.2.x DB and run installer/upgrade of 1.2.20 => everything OK.
Login without issues.

I've then run installer/updater AGAINTS same DB using 1 ...