Search found 31 matches

by AlexeiK
02 Feb 2016, 12:16
Forum: General Discussion
Topic: bug found in file upload
Replies: 10
Views: 13068

Re: bug found in file upload

u r right.
this is it.
by AlexeiK
02 Feb 2016, 05:41
Forum: General Discussion
Topic: bug found in file upload
Replies: 10
Views: 13068

Re: bug found in file upload

its not about SQL SERVER USERS. its about constraint and $g_file_upload_method=DISK bug_file_table has constaint on Content field=(NOT NULL) mantis generate dynamic sql where is no Content field. INSERT INTO mantis_bug_file_table ( bug_id, title, description, diskfile, filename, folder, filesize, fi...
by AlexeiK
02 Feb 2016, 05:37
Forum: General Discussion
Topic: bug found in SQL 1.3.0-rc.2-dev master-9d8d010
Replies: 4
Views: 5705

Re: bug found in SQL 1.3.0-rc.2-dev master-9d8d010

APPLICATION ERROR #401 Database query failed. Error received from database was #137: SQLState: 42000 Error Code: 137 Message: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]Must declare the scalar variable "@P1AND". for the query: SELECT DISTINCT cfst.value FROM mantis_custom_field...
by AlexeiK
01 Feb 2016, 11:04
Forum: General Discussion
Topic: bug found in file upload
Replies: 10
Views: 13068

Re: bug found in file upload

APPLICATION ERROR #401 Запрос к базе данных не удался. Получена ошибка - #515: SQLState: 23000 Error Code: 515 Message: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]Cannot insert the value NULL into column 'content', table 'mantisdb.dbo.mantis_bug_file_table'; column does not allow nulls. I...
by AlexeiK
01 Feb 2016, 10:52
Forum: General Discussion
Topic: bug found in file upload
Replies: 10
Views: 13068

Re: bug found in file upload

APPLICATION ERROR #401 error recieved - #515: SQLState: 23000 Error Code: 515 Message: [Microsoft][ODBC Driver 11 for SQL Server][SQL Server]Cannot insert the value NULL into column 'content', table 'mantisdb.dbo.mantis_bug_file_table'; column does not allow nulls. INSERT fails. SQLState: 01000 Erro...
by AlexeiK
01 Feb 2016, 08:45
Forum: General Discussion
Topic: bug found in file upload
Replies: 10
Views: 13068

Re: bug found in file upload

sorry.
its about ms sql 2008 r2 installation.
by AlexeiK
01 Feb 2016, 08:38
Forum: General Discussion
Topic: bug found in SQL 1.3.0-rc.2-dev master-9d8d010
Replies: 4
Views: 5705

Re: bug found in SQL 1.3.0-rc.2-dev master-9d8d010

yes.
i put a space and it goes fine.
by AlexeiK
01 Feb 2016, 05:43
Forum: General Discussion
Topic: bug found in file upload
Replies: 10
Views: 13068

bug found in file upload

1.3.0-rc.2-dev master-9d8d010
place- file upload in comments.
it cant upload because field Content in table bug_file_table now allowed null.
by AlexeiK
01 Feb 2016, 05:39
Forum: General Discussion
Topic: bug found in SQL 1.3.0-rc.2-dev master-9d8d010
Replies: 4
Views: 5705

bug found in SQL 1.3.0-rc.2-dev master-9d8d010

$t_where2 = 'AND bt.project_id = ' . db_param();

no space before AND custom_field_api.php:1090 custom_field_distinct_values() array (


1.3.0-rc.2-dev master-9d8d010
by AlexeiK
25 Jan 2016, 09:04
Forum: Customizations
Topic: SYSTEM NOTICE, Error Description
Replies: 31
Views: 79161

Re: SYSTEM NOTICE, Error Description

some news 2016-01-25 11:58 AST DB custom_field_api.php:883 custom_field_get_all_linked_fields() array ( 0 => 'SELECT f.name, f.type, f.access_level_r, f.default_value, f.type, s.value FROM mantis_custom_field_project_table p INNER JOIN mantis_custom_field_table f ON f.id = p.field_id LEFT JOIN manti...
by AlexeiK
19 Jan 2016, 11:41
Forum: Customizations
Topic: SYSTEM NOTICE, Error Description
Replies: 31
Views: 79161

Re: SYSTEM NOTICE, Error Description

Patch files attached.
Pre Install Step on MS SQL 2008 R2 :
1: remove index on UserName on table mantis_User_table.

and u will get clean setup of mantis 1.3 rc
by AlexeiK
19 Jan 2016, 06:30
Forum: Customizations
Topic: SYSTEM NOTICE, Error Description
Replies: 31
Views: 79161

Re: SYSTEM NOTICE, Error Description

Alexei, In an attempt to troubleshoot the root cause in the ADOdb library, further info is required. I need you for that, because I don't have MSSQL and the error is not reproducible with MySQL. Mantis 1.2.19 runs a really outdated version of ADOdb (customized 5.10 IIRC). Can you confirm that you e...
by AlexeiK
18 Jan 2016, 10:00
Forum: Customizations
Topic: SYSTEM NOTICE, Error Description
Replies: 31
Views: 79161

Re: SYSTEM NOTICE, Error Description

so for clear. after patching adodb from mantis 1.3 i got only one error on user_table because adodb cant delete index before alter column. i did it manualy and got mantis 1.3 installed. and + $g_upgrade[196] = array( 'AlterColumnSQL', array( db_get_table( 'user' ), 'username C(255) '. $t_notnull .' ...
by AlexeiK
18 Jan 2016, 09:47
Forum: Customizations
Topic: SYSTEM NOTICE, Error Description
Replies: 31
Views: 79161

Re: SYSTEM NOTICE, Error Description

so i have moved on the error is $constraintname = $row[0]; must be $constraintname = $row["name"]; added to mantis 1.3 dropcolumnSQL code from mantis 1.2 have found one error: Schema step 143: DropColumnSQL ( mantis_tokens_table ) BAD ALTER TABLE mantis_tokens_table DROP CONSTRAINT ALTER T...
by AlexeiK
18 Jan 2016, 06:58
Forum: Customizations
Topic: SYSTEM NOTICE, Error Description
Replies: 31
Views: 79161

Re: SYSTEM NOTICE, Error Description

trying to install mantis 1.3 today i install php 5.3 and sqlsrv version 2.0 is compatible with PHP 5.2.4 to 5.3.x and SQL Native client 2008 R2 to connect to Microsoft SQL Server 2000, 2005, or 2008. and MS SQL 2000. but! running mantis 1.3 i get BAD SQL Server 2005 (9.0.0) or later is required for ...