Hi!
I’ve found a strange behavior with Submissions My Queue List.
It’s displaying empty when I:
-
Enable debug option in production;
-
Or install it (copying everything source and database from server) on another host;
OJS 3.3.0.7
PHP 7.4
Mysql > 5
Could you give me any idea for executing some tests ?
I debug application on localhost and got the query that is returning empty:
select `s`.* from `submissions` as `s`
left join `stage_assignments` as `sa` on `s`.`submission_id` = `sa`.`submission_id` and `sa`.`user_id` in (2)
left join `review_assignments` as `ra` on `s`.`submission_id` = `ra`.`submission_id` and `ra`.`declined` = 0 and `ra`.`cancelled` = 0 and `ra`.`reviewer_id` in (2)
where
`s`.`context_id` = 6
and `s`.`status` in (1)
and (`sa`.`stage_assignment_id` is not null or `ra`.`review_id` is not null)
group by `s`.`submission_id` order by `s`.`date_submitted` desc
I suspect that could be something relate with context_id.
Thanks for any help.
Best regards,
Everson