Forum

Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.

State attendue by m...
 
Notifications
Clear all

State attendue by meeting recording

20 Posts
3 Users
0 Reactions
18.9 K Views
(@dlalleme)
Posts: 9
Active Member
Topic starter
 
[#2150]

Hello,

When I want to record a meeting the system send me an error and wait the state field. But this field does not exists in the form !

Version 4.5.3

Regards

Denis


 
Posted : 07 Jan 2015 11H15
(@babynus)
Posts: 14952
Member Admin
 

Hi,

Could you please post print screen showing error, and possibly log file.
(I cannot reproduce and status exists in Meeting form)


 
Posted : 07 Jan 2015 11H20
(@dlalleme)
Posts: 9
Active Member
Topic starter
 

Here is the print screen !


 
Posted : 07 Jan 2015 12H18
(@babynus)
Posts: 14952
Member Admin
 

Hi,

Very strange...
The screen is not complete : you should have "treatment" section on the right, with "status" field.
(you can have a look at demo)

Could you please check log file and post here any error logged ?
Could you also check for browser issue (check browser console).
Thanks.


 
Posted : 07 Jan 2015 12H57
(@dlalleme)
Posts: 9
Active Member
Topic starter
 

At the log file I only have this error

2015-01-07 11:45:17 ** ERROR **    For query : insert into audit ( sessionId , auditDay , idUser , userName , platform , browser , browserVersion , userAgent , connectionDateTime , lastAccessDateTime , duration , idle , requestRefreshParam , requestRefreshProject , requestDisconnection ) values ('mtk25rki44n67n9sp5cnenjvd6', '20150107', '7', 'smeunier', 'Windows', 'Mozilla Firefox', '21.0', 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:21.0) Gecko/20100101 Firefox/21.0', '2015-01-07 11:45:17', '2015-01-07 11:45:17', '00:00:00', '0', '0', '0', '0')
2015-01-07 11:45:17 ** ERROR **    Strack trace :
2015-01-07 11:45:17 ** ERROR **    #0 Sql->query called at [/opt/projeqtor/model/persistence/SqlElement.php:691]
2015-01-07 11:45:17 ** ERROR **    #1 SqlElement->insertSqlElement called at [/opt/projeqtor/model/persistence/SqlElement.php:509]
2015-01-07 11:45:17 ** ERROR **    #2 SqlElement->saveSqlElement called at [/opt/projeqtor/model/persistence/SqlElement.php:398]
2015-01-07 11:45:17 ** ERROR **    #3 SqlElement->save called at [/opt/projeqtor/model/Audit.php:187]
2015-01-07 11:45:17 ** ERROR **    #4 Audit->updateAudit called at [/opt/projeqtor/tool/projeqtor.php:212]
2015-01-07 11:45:17 ** ERROR **    #5 require_once called at [/opt/projeqtor/tool/checkAlertToDisplay.php:29]
2015-01-07 11:45:27 ** ERROR ** Exception-[42703] SQLSTATE[42703]: Undefined column: 7 ERREUR:  la colonne « lastaccessdatetime » de la relation « audit » n'existe pas
LINE 1: ...browserVersion , userAgent , connectionDateTime , lastAccess...

I don't know if this error has a link with own problem.

Il the console browser I don't see error !

A+

Denis


 
Posted : 07 Jan 2015 13H47
(@babynus)
Posts: 14952
Member Admin
 

Error you get has no link with meeting...
But it's not normal. I'll have a look at it.

Could you test what you're trying on the demo ( http://demo.projeqtor.org, user manager/manager).
Do you get same issue or not ?


 
Posted : 07 Jan 2015 18H04
(@dlalleme)
Posts: 9
Active Member
Topic starter
 

Hello,
It's ok on demo !
I have an other server with projeqtor 4.3.2 and it works well !

Regards

Denis


 
Posted : 09 Jan 2015 13H39
(@babynus)
Posts: 14952
Member Admin
 

Hi,

It seems the migration to V4.5 was not complete.
Check audit table, some columns have changed :
- lastAccessDateTime (V4.5) replacing lastAccess (V4.4)
- connectionDateTime(V4.5) replacing connection(V4.4)
- disconnectionDateTime (V4.5) replacing disconnection (V4.4)
Check assignment table, new column
- notPlannedWork is new column
Check planningelement table, new column
- notPlannedWork is new column

If these changes are not taken into account, the behavior would be exactly what you describe :
- assignment not completely displayed and rest of forml not displayed
- error logged on audit table every 10 second


 
Posted : 10 Jan 2015 13H20
(@dlalleme)
Posts: 9
Active Member
Topic starter
 

Bonsoir,

The install wasn't issue from migration but from a fresh install!

I check the columns tomorrow

Regards

Denis


 
Posted : 12 Jan 2015 20H58
(@babynus)
Posts: 14952
Member Admin
 

For information, I never has such issue on fresh installs (and I run some quite often).

On which OS do you Host ProjeQtOr ?


 
Posted : 12 Jan 2015 21H40
(@dlalleme)
Posts: 9
Active Member
Topic starter
 

Salut,
Here are the tables

-- Table: audit
-- DROP TABLE audit;
CREATE TABLE audit
(
  id serial NOT NULL,
  sessionid character varying(100),
  auditday character varying(8),
  connectiondatetime timestamp without time zone,
  disconnection timestamp without time zone,
  lastaccess timestamp without time zone,
  duration time without time zone,
  iduser numeric(12,0),
  username character varying(100),
  useragent character varying(400),
  platform character varying(100),
  browser character varying(100),
  browserversion character varying(100),
  requestrefreshparam numeric(1,0) DEFAULT 0,
  requestdisconnection numeric(1,0) DEFAULT 0,
  idle numeric(1,0) DEFAULT 0::numeric,
  requestrefreshproject numeric(1,0) DEFAULT 0::numeric,
  CONSTRAINT audit_pkey PRIMARY KEY (id)
)
WITH (
  OIDS=FALSE
);

it-s OK for assignment and planningelement tables

Regards

Denis


 
Posted : 14 Jan 2015 17H29
(@babynus)
Posts: 14952
Member Admin
 

Hi,

The description of your audit table is very strange.

In V4.5, 3 columns were renamed :
connection to connectionDateTime
disconnection to disconnectionDateTime
disconnection to lastAccessDateTime

Here is what creation script should look like :

CREATE TABLE IF NOT EXISTS `audit` (
`id` int(12) unsigned NOT NULL,
  `sessionId` varchar(100) DEFAULT NULL,
  `auditDay` varchar(8) DEFAULT NULL,
  `connectionDateTime` datetime DEFAULT NULL,
  `disconnectionDateTime` datetime DEFAULT NULL,
  `lastAccessDateTime` datetime DEFAULT NULL,
  `duration` time DEFAULT NULL,
  `idUser` int(12) unsigned DEFAULT NULL,
  `userName` varchar(100) DEFAULT NULL,
  `userAgent` varchar(400) DEFAULT NULL,
  `platform` varchar(100) DEFAULT NULL,
  `browser` varchar(100) DEFAULT NULL,
  `browserVersion` varchar(100) DEFAULT NULL,
  `requestRefreshParam` int(1) DEFAULT '0',
  `requestDisconnection` int(1) DEFAULT '0',
  `idle` int(1) unsigned DEFAULT '0',
  `requestRefreshProject` int(1) unsigned DEFAULT '0'
) ENGINE=InnoDB AUTO_INCREMENT=9001 DEFAULT CHARSET=utf8;

What is the most weird, is that the renaming of the 3 columns is done in ProjeQtOr with one only query :

ALTER TABLE `${prefix}audit` CHANGE `connection` connectionDateTime datetime,
CHANGE `disconnection` disconnectionDateTime datetime,
CHANGE `lastAccess` lastAccessDateTime datetime;

So I cannot explain that your database is updated on only 1 of the 3 columns. It should be all or none (if error occured).

How did you install ? Really using default scripts ?
On which OS does the issue happen ?
Is you Database MySql or PostgreSql ? Which version ?


 
Posted : 15 Jan 2015 14H57
(@dlalleme)
Posts: 9
Active Member
Topic starter
 

Hello,
Sorry for the late.

I installed again the tool and I have the same problem.

The version is now 4.5.4. The OS is centos 6.6 and the database is posgresql 9.3.5

regards

Denis


 
Posted : 26 Jan 2015 15H20
(@babynus)
Posts: 14952
Member Admin
 

Hi,

It is possible that there is some database upgrade with PostgreSql database (some case sensibility issue).
Could you post the log file corresponding to your set-up ?


 
Posted : 27 Jan 2015 13H21
(@dlalleme)
Posts: 9
Active Member
Topic starter
 

Where is it ?
I found it


 
Posted : 27 Jan 2015 18H43
(@babynus)
Posts: 14952
Member Admin
 

default location is /files/logs


 
Posted : 29 Jan 2015 17H18
(@dlalleme)
Posts: 9
Active Member
Topic starter
 

Hello,
Sorry for my answer on late.
The last version 4.5.6 seems correct the problem. Now I have the meeting interface completly.

Regards

Denis


 
Posted : 27 Mar 2015 15H15
(@informatique-rff)
Posts: 2
New Member
 

Hi from France,
I'm new user trying Projeqtor.
I installed version 4.5.5 a few days ago and have de same problem.
Today, I updated to 4.5.6 and 4.5.7 and I still have the same problem. (field 'status' mandatory)

Regards,

Nicolas

Edit: OS:Mandriva Linux 2010.2 32bit
Apache 2.2.15 ; PHP 5.3.6 ; MySQL 5.1.58


 
Posted : 08 Apr 2015 0H12
(@babynus)
Posts: 14952
Member Admin
 

Hi,

You have a display issue.
After assignment table, you should have other fields : "other attendees", "description", and then the "Treatment" section, including "status" flied.

1) Try and clen browser cache
2) check for any error in the projeqtor log file
3) check for any error in the browser console


 
Posted : 09 Apr 2015 12H38
(@informatique-rff)
Posts: 2
New Member
 

Thank you for your answer.
Display issue was not solved by 1) nor 2) nor 3). I tried system updates on the server... always the same.

The problem was fixed by moving php files onto another server running another version of apache (more up-to-date: OS=Mageia4 apache2.4.7 php5.5.23)


 
Posted : 14 Apr 2015 13H44
Share:

Scroll to Top