Search found 21 matches

by cris
11 Sep 2007, 08:57
Forum: Customizations
Topic: can we customize filters ?
Replies: 0
Views: 3822

can we customize filters ?

hello,
I would like to know if someone managed to adapt the filter system. I explain : I have created a new page where there is a table and I would like to put a filter (like the filter in Mantis) to filter in function of the columns. A solution could be to do the filter myself but if there is a lot ...
by cris
06 Sep 2007, 11:11
Forum: Help
Topic: Changing the notification email
Replies: 2
Views: 3457

If I understood, you would like to put the name in the subject of all mails that are sent by mantis ?

If it's what you want, I think you have to modify all functions which call email_send() (in core/email_api.php) and add a parameter (like $p_assigned_people). This param will contain the id of the ...
by cris
06 Sep 2007, 07:26
Forum: Help
Topic: problem with login_page.php
Replies: 1
Views: 3199

I resolved my problem : a reboot and all works ....
by cris
06 Sep 2007, 07:24
Forum: Help
Topic: redirection problem
Replies: 2
Views: 3952

redirection problem

hello,
I have sometimes an error message :

APPLICATION ERROR #18

Page redirection error, ensure that there are no spaces outside the PHP block (<?php ?>) in config_inc.php or custom_*.php files.


I checked these files and there are no spaces in it. This problem appear sometimes but not always ...
by cris
31 Aug 2007, 14:54
Forum: Help
Topic: problem with login_page.php
Replies: 1
Views: 3199

problem with login_page.php

hello,
I have a problem with the installation of mantis. All is installed but when I try to access to Mantis, It goes to login_page.php (OK) but it is not read as a php file (a dialog box ask me to choose a soft to read the file). If I access to another page (view.php...) there is no problem.

If I ...
by cris
16 Aug 2007, 13:35
Forum: Customizations
Topic: send a mail with an attached file
Replies: 5
Views: 8406

I know it because I created this topic ... :wink:
For this question, I have a form where I get the file (named $f_file) to upload (the same code that upload file in Mantis), I give the $f_file['tmp_name'] to my email function, I send the email then I attache the file with the file_add() function ...
by cris
16 Aug 2007, 07:17
Forum: Customizations
Topic: send a mail with an attached file
Replies: 5
Views: 8406

In fact, I took the code of email_send() and I added the code :

Code: Select all

$mail->AddAttachment($path,$name);
with $path like 'C:essai.txt' and $name like 'essai envoi'
by cris
14 Aug 2007, 14:46
Forum: Customizations
Topic: send a mail with an attached file
Replies: 5
Views: 8406

send a mail with an attached file

Hello,
I'm looking for a way to send a mail with an attached file. I use the 1.0.5 version of Mantis. I know how send a mail with a recipient, a message and a subject but I don't know how to add an attached file (the attached file is a file which is on the database and which is attached to a bug ...
by cris
27 Jul 2007, 13:36
Forum: Help
Topic: Project Manager...
Replies: 1
Views: 3668

go on 'manage', then 'manage projects', select the project and go on the section 'add user to project'. Finally, select the user and his access level (manager). That's all, I hope this is what you want
by cris
25 Jul 2007, 12:15
Forum: Help
Topic: javascript notes/action...
Replies: 0
Views: 2473

javascript notes/action...

hello,
I did a thing like the action or note box (in a bug view, there are boxes that you can expand or shrink with a javascript script). I'd like to understand how it works and especially the var 'g_div_bugnotes = 0x0002;'. What is the '0x0002' ? If I want to do the same, what value have I to put ...
by cris
26 Jun 2007, 08:40
Forum: Help
Topic: difference between files
Replies: 0
Views: 2398

difference between files

hello,
what is the difference between these two files : xxx_add.php and xxx_add_inc.php ?

thanks
by cris
25 Jun 2007, 15:28
Forum: Help
Topic: create tables and access to it
Replies: 1
Views: 3126

I found the solution : I had to declare the new tables in config_defaults_inc.php .
by cris
25 Jun 2007, 15:01
Forum: Help
Topic: create tables and access to it
Replies: 1
Views: 3126

create tables and access to it

hello,
can we create tables in phpmyadmin ?
Because I created tables with a sql file and I can't access to it by sql queries like "select * from ...". I don't know why I can't because I can access to others (tables). Is there a file where I must declare new tables or something like this ?

thanks
by cris
22 Jun 2007, 11:34
Forum: Help
Topic: newbie : table creation
Replies: 3
Views: 4709

Can I create new tables without delete then create all tables ?
by cris
22 Jun 2007, 08:26
Forum: Help
Topic: newbie : table creation
Replies: 3
Views: 4709

I found some information on the subject and now, I wonder how do to add a table by a script sql and which add the created tables on my project. I tried to execute the script in phpmyadmin on my database and the tables are created but don't appear in my project.

thanks