When I then look at the table of content of the issue, the article only contains a link to the abstract, but there is no link to the full paper.
This page is created in
- Code: Select all
.../templates/issue/issue.tpl
- Code: Select all
{if (!$subscriptionRequired || $article->getAccessStatus() || $subscribedUser || $subscribedDomain)}
{foreach from=$article->getGalleys() item=galley name=galleyList}
<a href="{$pageUrl}/article/view/{$article->getBestArticleId($currentJournal)}/{$galley->getGalleyId()}" class="file">{$galley->getLabel()}</a>
{/foreach}
{/if}
When I look in the database, it seems there is no galley associated with the article, but actually I dont fully understand yet the way, OJS stores its articles.
So what's going wrong here? Are PDF supposed to be linked in the TOC of an issue? Paper Upload worked fine, because the PDF is fully accessible during review.
Regards ... Frank
PS: I think there is an error in
- Code: Select all
.../classes/install/Installer.inc.php
- Code: Select all
if (! (file_exists($publicFilesDir) && is_writeable($publicFilesDir)))
but should probably read
- Code: Select all
if (file_exists($publicFilesDir) && !is_writeable($publicFilesDir))
At least this is the only way that installation worked for me.
