Search found 6 matches
- 24 Feb 2010, 08:26
- Forum: Help
- Topic: File Upload - FileSize Change in MANTIS 1.1.6
- Replies: 3
- Views: 2725
Re: File Upload - FileSize Change in MANTIS 1.1.6
Have you checked "post_max_size" and "upload_max_filesize" in your php.ini?
- 23 Feb 2010, 21:19
- Forum: Customizations
- Topic: Own wiki integration plugin
- Replies: 10
- Views: 18803
Re: Own wiki integration plugin
Just played around with wikiplugins and found the way to implement: Inherit from MantisWikiPlugin and leave "wiki_engine" empty.
Here is a stub:
plugins/MyWiki/MyWiki.php
<?php
require_once( config_get( 'class_path' ) . 'MantisWikiPlugin.class.php' );
class MyWikiPlugin extends MantisWikiPlugin ...
Here is a stub:
plugins/MyWiki/MyWiki.php
<?php
require_once( config_get( 'class_path' ) . 'MantisWikiPlugin.class.php' );
class MyWikiPlugin extends MantisWikiPlugin ...
- 22 Feb 2010, 13:11
- Forum: Customizations
- Topic: Own wiki integration plugin
- Replies: 10
- Views: 18803
Re: Own wiki integration plugin
I think i'll try to post my changes as a patch. None the less, i'll ask on the mailinglist to clarify the "official" way to integrate wikiplugins.
Thanks for your help.
Thanks for your help.
- 19 Feb 2010, 11:05
- Forum: Customizations
- Topic: Own wiki integration plugin
- Replies: 10
- Views: 18803
Re: Own wiki integration plugin
I already patched the MediaWikiPlugin in core/classes/MantisCoreWikiPlugin.class.php, but want to separate my changes from the original code.
I had a look at core/wiki_api.php and found wiki_init with a hardcoded switch-case. My question is, how do i integrate a custom wikiplugin? Can I hook into ...
I had a look at core/wiki_api.php and found wiki_init with a hardcoded switch-case. My question is, how do i integrate a custom wikiplugin? Can I hook into ...
- 19 Feb 2010, 09:26
- Forum: Customizations
- Topic: Own wiki integration plugin
- Replies: 10
- Views: 18803
Re: Own wiki integration plugin
Do you have some more info for me? (I know, i didn't explicitely requested...
)
- 18 Feb 2010, 20:32
- Forum: Customizations
- Topic: Own wiki integration plugin
- Replies: 10
- Views: 18803
Own wiki integration plugin
Hello,
is there a way to replace the integrated wikiplugin of 1.2.0 RC2 with a custom one?
Greetings
PAB
is there a way to replace the integrated wikiplugin of 1.2.0 RC2 with a custom one?
Greetings
PAB