Search found 15 matches

by dtamajon
20 Jun 2013, 01:01
Forum: Help
Topic: Graphs stop working after upgrading to 2.1.15
Replies: 21
Views: 23594

Re: Graphs stop working after upgrading to 2.1.15

Solved!!! After uninstalling all plugins, I could see images again. So I have added plugins one by one until (the last one) crashed the images.

I have read about problems serving images on PHP when using an extra line after ?> . I have deleted the line and the end of the PHP, and now is working ...
by dtamajon
20 Jun 2013, 00:53
Forum: Help
Topic: Graphs stop working after upgrading to 2.1.15
Replies: 21
Views: 23594

Re: Graphs stop working after upgrading to 2.1.15

I have the same problem when using the relationship graphs. It's working properly in Windows but not in the Ubuntu install. So now, I'm focused on why PHP is not serving the image content properly.
by dtamajon
19 Jun 2013, 23:54
Forum: Help
Topic: Graphs stop working after upgrading to 2.1.15
Replies: 21
Views: 23594

Re: Graphs stop working after upgrading to 2.1.15

I have uninstalled GD, and now I'm getting the error " JpGraph Error: 25001 This PHP installation is not configured with the GD library. Please recompile PHP with GD support to run JpGraph. (Neither function imagetypes() nor imagecreatefromstring() does exist) "

At this situation, if I change ...
by dtamajon
19 Jun 2013, 23:21
Forum: Help
Topic: Graphs stop working after upgrading to 2.1.15
Replies: 21
Views: 23594

Re: Graphs stop working after upgrading to 2.1.15

I attach the result.

The "only" BAD message is => " check configuration: jpgraph (if used) requires php bundled gd for antialiasing support "

I have tried the GD installation again with the following results. What should I check?

$ sudo apt-get install libphp-jpgraph
Reading package lists ...
by dtamajon
19 Jun 2013, 22:15
Forum: Customizations
Topic: Source Control Translation (spanish & catalan)
Replies: 4
Views: 6466

Re: Source Control Translation (spanish & catalan)

I did, and the pulled files are correct, but I have found errors on some plugins. I will correct as soon as possible and pull too.
by dtamajon
19 Jun 2013, 22:08
Forum: Help
Topic: Graphs stop working after upgrading to 2.1.15
Replies: 21
Views: 23594

Re: Graphs stop working after upgrading to 2.1.15

Now I'm running on Ubuntu 10.10 (from Amazon ESB) and PHP 5.3.3.

I have copied the installation to a Windows machine, and there I can see graphs!!! I'd say I'm missing something on Mantis config in Ubuntu server... but I copied full folder to Windows and export-import in a fresh MySql. I have alse ...
by dtamajon
19 Jun 2013, 21:07
Forum: Help
Topic: Graphs stop working after upgrading to 2.1.15
Replies: 21
Views: 23594

Re: Graphs stop working after upgrading to 2.1.15

Hi again,

I have tested in FF and IE8 too, with the same results: a broken image.

I have followed your instructions, and I see no log anywhere. I have done the same operations to reproduce the problem, but my apache log does not show any problem. Am I missing something?

I have tried to uninstall ...
by dtamajon
17 Jun 2013, 23:56
Forum: Customizations
Topic: Adding event for news edition with BBCodeGeShi
Replies: 1
Views: 4361

Adding event for news edition with BBCodeGeShi

Hi,

I have installed BBCodeGeShi (for me it's better than just BBCode), but I wanted support for news too.

I've seen news doesn't provides a EVENT, so I added. To do so, I have added the following lines to core/events_inc.php :

# News events
'EVENT_NEWS_UPDATE' => EVENT_TYPE_EXECUTE,

Now, you ...
by dtamajon
17 Jun 2013, 22:57
Forum: Help
Topic: Graphs stop working after upgrading to 2.1.15
Replies: 21
Views: 23594

Re: Graphs stop working after upgrading to 2.1.15

Yes, it's the same
by dtamajon
17 Jun 2013, 22:22
Forum: Help
Topic: Graphs stop working after upgrading to 2.1.15
Replies: 21
Views: 23594

Re: Graphs stop working after upgrading to 2.1.15

Sorry... I upgraded from 1.2.8 to 1.2.15. When I open in new tab, I just see the broken image.

I'm using Chrome.

I'm missing some configuration in Mantis, because I can execute jpGraph examples.
by dtamajon
17 Jun 2013, 18:51
Forum: Help
Topic: Graphs stop working after upgrading to 2.1.15
Replies: 21
Views: 23594

Graphs stop working after upgrading to 2.1.15

Hi,

I'm quite confused after upgrading Mantis from 2.1.8 to 2.1.15,because Graphs have stopped working. I have duplicated the virtual machine and just upgraded Mantis, and it looks it's working properly with all plugins working perfectly as they were in the previous versions... except for ...
by dtamajon
14 Jun 2013, 11:32
Forum: Customizations
Topic: Source Control Translation (spanish & catalan)
Replies: 4
Views: 6466

Source Control Translation (spanish & catalan)

I have translated plugins related to Source Control Integration to Spanish and Catalan.

I leave a zip that you can unzip on your plugin path. It contains only the Spanish and Catalan language files for each plugin:

Source
SourceCgit
SourceGithub
SourceGitweb
SourceHgWeb
SourceSFSVN ...
by dtamajon
14 Jun 2013, 00:14
Forum: Customizations
Topic: email_api with HTML
Replies: 1
Views: 4802

email_api with HTML

I have done some modifications on core/email_api.php to accept html e-mails.

To do so, I have added the following parameter on config_inc.php
$g_email_is_html = ON; # or OFF for plain-text; default is OFF

And then update this function to distinguish between plain-text or HTML new line ...
by dtamajon
13 Jun 2013, 23:12
Forum: Customizations
Topic: Email: Replacing plain text with html
Replies: 3
Views: 14726

Re: Email: Replacing plain text with html

I have moved decision to the config_inc.php file by doing:

$g_email_is_html = ON; # or OFF

And modifyng the core/email.php as you proposed, but using the config variable:

$mail->IsHTML( config_get( 'email_is_html' ) );

I hope find we can find such configuration in proper versions... when using ...