Hi Mikael,
There's nowhere in the OJS interface to manually set the publication dates for either Articles or Issues, unfortunately; I'd suggest doing this in MySQL:
- Code: Select all
UPDATE issues SET date_published = '2006-04-20' WHERE issue_id = 5;
UPDATE published_articles SET date_published = '2006-04-20' WHERE article_id = 10;
The above SQL will set the publication dates of issue ID #5 and article ID #10 to April 20th, 2006. You can determine which IDs to use from the Editor's interface. When you're looking at an issue's table of contents via the Editor's interface (e.g. via "Back Issues"), the URL will look like:
- Code: Select all
[u]http://my-site.com/ojs2/index.php/demo/editor/issueToc/3[/u]
This is issue ID #3. Similarly, when viewing an Article's Summary page, the URL will be something like:
- Code: Select all
[u]http://localhost/ojs2/index.php/demo/editor/submissionEditing/2[/u]
This is article ID #2.
Although it's a boundary condition (i.e. when OJS is operating using the full work-flow the dates will be entered correctly), a few users have run into problems with incorrect publication dates for imported issues and articles. Obviously correcting this in the database isn't an optimal solution; we may be addressing this in the future by providing some other method.
It's possible to export articles and issues via the Articles and Issues XML import/export plugin, correct the data, and re-import -- but I wouldn't suggest doing this, as all editorial information is lost and correcting the data in MySQL is a quicker solution.
Regards,
Alec Smecher
Open Journal Systems Team