Search found 9 matches

by Pixeljoerg
26 Jul 2005, 08:31
Forum: Help
Topic: smart way to minimize efforts for multiple mantis instances?
Replies: 12
Views: 16106

I pulled core.php 1.48 from the CVS, removed the config_inc.php in the Mantis directory and everything works fine. Thanks for the fast fix.

Regards
Joerg
by Pixeljoerg
25 Jul 2005, 15:30
Forum: Help
Topic: smart way to minimize efforts for multiple mantis instances?
Replies: 12
Views: 16106

fixing problems when using Mantis 1.0.0rc1

After upgrading from Mantis 1.0.0a3 to Mantis 1.0.0rc1, Mantis constantly redirected to the admin/install.php page, although I already made an update with admin/upgrade.php.

After a while I found out, that this was a feature of the new version when no config_inc.php was in the mantis directory ...
by Pixeljoerg
04 Jul 2005, 07:22
Forum: Help
Topic: smart way to minimize efforts for multiple mantis instances?
Replies: 12
Views: 16106

Ooops... I wasn't logged in - the Guest's reply was mine :-)
by Pixeljoerg
28 Jun 2005, 07:57
Forum: Help
Topic: smart way to minimize efforts for multiple mantis instances?
Replies: 12
Views: 16106

the solution

After a lot of trying, I found a solution that might be interesting for other people. It only works on a Unix OS since it needs symbolic links to work and it needs an Apache webserver with it's SetEnv directive.

1. Put your mantis directory somewhere under your DOCUMENT_ROOT
(as an example here ...
by Pixeljoerg
15 Jun 2005, 10:09
Forum: Help
Topic: smart way to minimize efforts for multiple mantis instances?
Replies: 12
Views: 16106

Hi,

thanks for your reply, but I do not have the possibility to have different subdomains for each instance. Is there any chance you will remove the dirname(__FILE__) references in future Mantis versions?
by Pixeljoerg
14 Jun 2005, 15:54
Forum: Help
Topic: smart way to minimize efforts for multiple mantis instances?
Replies: 12
Views: 16106

smart way to minimize efforts for multiple mantis instances?

Hi,

for some reasons I have to manage four different instances of Mantis on the same machine, each with its own database.

To minimize efforts when updating mantis, I tried to have one general (non-accessible) installation (which I can easily update) and have four other directories that contain ...
by Pixeljoerg
24 May 2005, 10:25
Forum: Help
Topic: Cookies - do they work at all in 1.0.0a2?
Replies: 0
Views: 4063

Cookies - do they work at all in 1.0.0a2?

Hi,

no matter what I try, nothing seems to be read from cookies.

Settings in my config_inc.php:


$g_cookie_path = '/customer1/tracker1';
$g_cookie_domain = '.mysubdomain.mydomain.com';


I removed all previous cookies of mysubdomain then started Firefox, enabled to accept all cookies.

I ...
by Pixeljoerg
15 Apr 2005, 09:58
Forum: Help
Topic: upload causes application error #0
Replies: 1
Views: 7012

I found it out myself. I used quotes to set up the DISK value in the config-file.

wrong

Code: Select all

$g_file_upload_method = "DISK";
correct

Code: Select all

$g_file_upload_method = DISK;
Now it works.
by Pixeljoerg
15 Apr 2005, 09:17
Forum: Help
Topic: upload causes application error #0
Replies: 1
Views: 7012

upload causes application error #0

Hi,

I set up Mantis to store uploaded files in the filesystem.

When I try to report a new error and try to attach a PDF document, I get an APPLICATION ERROR #0 .

The environment:

*Apache 2.0.53
*PHP 4.3.11
*MySQL 4.1.11


Uploads are set to DISK
$g_file_upload_method = "DISK";

This is the ...