Quantcast
Channel: PKP Community Forum - Latest topics
Viewing all 27292 articles
Browse latest View live

OJS Child Theme - Unable to Load Parent Theme Styling

$
0
0

@wangra wrote:

Hi Everyone,

Forgive me if I am not posting in the right place but I am new at creating child themes for OJS. I started to modify the health sciences theme to a child theme and came across some issues seeing the styling from the parent theme.

Application Version - OJS 3.1.2
Description of issue

I have followed the theming guide https://docs.pkp.sfu.ca/pkp-theming-guide/en/child-themes
and created new files from scratch to reference the parent health sciences theme. I have not added any custom styling in the child theme so I do not have a styles folder in my directory tree. Attached below are snippets of the code I’ve written so far. Am I misunderstanding that this child theme does not need less files from the parent theme as the $this->setParent(‘healthsciences’); will automatically know to grab the less from the parent theme? I am unsure of why I cannot see any of the css from the parent theme after installing the child theme.

Steps you took leading up to the issue

After writing the index.php/version.xml/HealthSciencesChildThemePlugin.php file was created I created a tar.gz folder and went to plugins and installed it. After viewing my site, the css is non-existent, even after inspecting element on the web page I could not see the css that is supposed to inherit from parent. Below I have attached some screenshots. Has anyone run into similar issues or has any thoughts on where I might be going wrong? Thank you for reading my response.

Index.php File

<?php
require_once('HealthSciencesChildThemePlugin.inc.php');
    return new HealthSciencesChildThemePlugin();
?>

HealthSciencesChildThemePlugin.inc.php File:

<?php
import('lib.pkp.classes.plugins.ThemePlugin');

class HealthSciencesChildThemePlugin extends ThemePlugin {
    
    public function init() {
		$this->setParent('healthsciences');
	}
	function getDisplayName() {
        // return __('plugins.themes.health-sciences-child.name');
        return 'health-sciences-child';
	}
	function getDescription() {
		return 'child theme for health sciences';
	}
}
?>

version.xml

<version>
	<!-- The application should match the theme folder to ensure it is unique -->
	<application>health-sciences-child</application>
	<!-- The type should always be `plugins.themes` -->
	<type>plugins.themes</type>
	<release>1.0.0.0</release>

	<!-- The date of the latest version -->
	<date>2016-05-31</date>

	<!-- This should always be 0 -->
	<lazy-load>0</lazy-load>

	<!-- The class name of the plugin. See index.php -->
	<class>HealthSciencesChildThemePlugin</class>
</version>

**What you tried to resolve the issue **

I have re-written the code to match the guide as much as I can, I have even followed NateWr’s github example https://github.com/NateWr/defaultChild. I installed his defaultChild theme and it installed and displayed perfectly on OJS. What could I be doing wrong? Thank you for reading!

Screenshots

Child Theme After Install

Inspecting Child Theme Shows No Styling

Error log messages if applicable - No Errors from PHP error logs

Posts: 1

Participants: 1

Read full topic


Why are articles not indexed on Google Scholar?

Store public folder seperatly from OJS folder

$
0
0

@GrazingScientist wrote:

Dear all,

in our institute, we want to build up an OJS fallback solution. The plan is to have the OJS folders mirrored on two seperated servers (a primary and a fallback, in case the primary dies), while the submissions are on a seperate Samba-Share for both servers to access.

However, we are concerned about the public folder (i.e. defined by public_files_dir), since it should be relative to the OJS folder (as stated in the config.inc.php). We would like to exclude the public folder from the OJS folder too, so both, the primary and the fallback system, can access the same public folder.

Can we put the public folder into the Samba-Share also and only refer to it with a symlink in the two systems? Or is there a better solution to seperate the public folder?

Thanks in advance!

Cheers,
Adrian

Posts: 1

Participants: 1

Read full topic

[OJS 3.1.1.1 ] inactive Checkbox for Author Self Archiving

$
0
0

@unkej wrote:

Hi everyone,

somehow the checkbox for the author self archiving text is inactive (admin dashboard: settings/distribution/permissions) (the checkbox above is active)
checkcheck

Where can I find the “admin” button to activate this checkbox? Maybe it’s to obvious…? :slight_smile:

Posts: 1

Participants: 1

Read full topic

Publishing an issue as one single file

$
0
0

@gss1 wrote:

Greetings, I’m wondering if anyone is supporting journals that publish their issues as one single file, all at once, and what that looks like in OJS. Yes I can think of several reasons as to why this isn’t optimal - but I have folks who work this way, or have backfiles like that, and am wondering how others handle this. If you can point me to live examples (URL), and share any tips you have if you do this, I would be extremely grateful!

Thanks,
Gail

Posts: 2

Participants: 2

Read full topic

PDF optimal sizes

How to deal with fake journal

Is there a way to remove a review tab that was added accidentally

$
0
0

@Refuge wrote:

I see many solutions involving coding but I do not have administrator controls over the website and need to delete a review round that I added accidentally. Can someone tell me how to do this? It doesn’t appear there is a way.

Posts: 1

Participants: 1

Read full topic


Links broken after upgrading from 2.4.8-1 to 3.1.2.1

$
0
0

@wklyons wrote:

I recently upgraded a production site in our staging environment from 2.4.8-1 to 3.1.2.1 (Alec helped identify a duplicated index.less file, which caused a Fatal Error but after fixing that the pages seem to be looking fine, and our themer has been working to make the site look the same as the ver 2 site). Now, we are finding another issue that needs to be resolved.

The way we’ve organized the content of the site is as follows. For each article there is a summary paragraph and a link to a PDF which has the complete text (along with any images, tables, graphics, etc). After conversion, it appears that the process to display the links to the PDF’s is broken. I haven’t tested them all (there are hundreds), but I can see that the URL associated with the link has the same info (except the domain name change) between production and staging. I can see that the file structure is the same and that the config file is pointing to the correct directory (I operate with the files directory being outside the code directory). There does seem to be some sort of translation going on because the last number displayed in the URL link does not match the value assigned to the file in the article/nnn/public directory. However, the values are consistent between the two sites. When I click on the link in production I get a full page and the PDF displays in a div component id = ‘inlinePdfResizer’. When I click on the same link in our staging environment, I get a blank page (with very simple HTML of which has an emply HEAD and BODY>. Additionally, I cannot see any meaningful errors added to the error_log.

Please help.

Posts: 2

Participants: 1

Read full topic

OJS 2.x error pdf view after create remote galley

$
0
0

@nolo wrote:

I created a remote galley by mistake and after that I can’t view pdf of articles. I can download without any problem but seems like pdf visor load url of remote galley (I deleted the remote galley but the problem still continue)

Anybody could help me? thanks in advance

Posts: 3

Participants: 1

Read full topic

OJS white page problem

$
0
0

@komir wrote:

Hello all, I have a problem with my page, it is white. I enabled error and have

Deprecated : Methods with the same name as their class will not be constructors in a future version of PHP; Application has a deprecated constructor in /home//classes/core/Application.inc.php* on line 36

Deprecated : Methods with the same name as their class will not be constructors in a future version of PHP; PKPApplication has a deprecated constructor in /home/****/lib/pkp/classes/core/PKPApplication.inc.php on line 39

Deprecated : Non-static method PKPApplication::defineExposedConstant() should not be called statically in /home//lib/pkp/classes/core/PKPApplication.inc.php* on line 545

Deprecated : Non-static method PKPApplication::getExposedConstants() should not be called statically in /home//lib/pkp/classes/core/PKPApplication.inc.php* on line 513

Fatal error : Cannot use ‘String’ as class name as it is reserved in /home//lib/pkp/classes/core/String.inc.php* on line 57

Posts: 2

Participants: 2

Read full topic

View article error 500

$
0
0

@totok wrote:

Dear OJS Experts;
I’ve just install and setting OJS 3.2.1 successfully, but when i try to open article the browser shows error 500 and here are the error messages after i set the error display on in config files,
for your information i’m using centOS 7 server php 7.1.

Posts: 2

Participants: 1

Read full topic

Error 500 while accesing admin pannel

$
0
0

@salman20054 wrote:

Hello
i was using OJS 3.1.2.1.

After login in while i was accessing admin panel i used to get “HTTP ERROR 500”

in error log file i got fattal error as follows
[27-Jul-2019 15:17:30 UTC] PHP Warning: Declaration of OpenAIREDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in /home/rubatosi/public_html/journals/plugins/generic/openAIRE/OpenAIREDAO.inc.php on line 0

[27-Jul-2019 15:17:31 UTC] PHP Fatal error: Uncaught --> Smarty Compiler: Syntax error in template “core:core:commonheaderHead.tpl” on line 20 “LHCChatOptions.opt = {widget_height:340,widget_width:300,popup_height:520,popup_width:500};” - Unexpected “:”, expected one of: “}” <–
thrown in /home/rubatosi/public_html/journals/lib/pkp/lib/vendor/smarty/smarty/libs/sysplugins/smarty_internal_templatecompilerbase.php on line 20

how to rectify it please let me know

Posts: 2

Participants: 2

Read full topic

What is the link to a specific Content-Type Galley?

$
0
0

@talknshare wrote:

My idea is to open a lightbox to the multimedia content-type when the reader clicks on the cover image for the article. The media is a remote URL hosted someplace else, but I couldn’t figure out how to create a custom link to that remote URL. I think this will help reduce the amount of clicking it requires to go and back to the article. I did notice that all galleys are assigned a unique ID no matter the content type. And if there is a remote URL, the link to the galley is what the OJS assigns, and after that it redirects. Any ideas?

Posts: 1

Participants: 1

Read full topic

Colon instead of semi-Colon in (Advanced) Search.less File

$
0
0

@talknshare wrote:

In search.less file line 59 of the default theme, there is a colon which is collapsing all the advanced search forms when viewed in smaller screen sizes. I hope this helps.

Posts: 2

Participants: 2

Read full topic


During submission, metadata shows section policy of all sections

$
0
0

@Rhime_MEU wrote:

Hi,
I updated to OJS 3.1.2.1 in June and I find that, during submission, the author is shown section policies of all sections even though the article is assigned to one particular section. Each policy is titled with the generic ‘section policy’ instead of going with the name of the specific section (example: original article, Editorial).

This is what it looks like:
Section: Editorial
Articles must be submitted to one of the journal’s sections.*

Section Policy
Descriptive, observational, or intervention study; outcome study; or survey Word count of text is up to 3000 words (excluding references and abstract) An abstract of up to 250 words References up to 30 May include images

Section Policy
Descriptive, observational, or intervention study; outcome study; or survey Word count of text is up to 3000 words (excluding references and abstract) A structured abstract of up to 250 words References up to 30 May include images

Section PolicyReflective student narratives with accompanying expert commentaries on issues of ethics and professionalism

Section Policy
systematic critical assessment of literature/artwork/film/practice Word count of text is up to 4000 words (excluding references and abstract) An unstructured abstract of up to 250 words References up to 90 May include images

Section Policy
…and so on…
How do I fix it?
Many thanks

Posts: 1

Participants: 1

Read full topic

Multiple error in custom block manager after upgrading from ojs 2.4.8 to ojs 3.1.2.1

$
0
0

@mohd_arshad wrote:

I have successfully upgrade from ojs 2.4.8 to ojs 3.1.2.1

The custom block manager plug in is there but there is multiple problem with it.
i dont have any custom block on the old ojs.

cannot put space bar in the name
cannot edit the block name after i save it
the block name doesnt appear on the front

Posts: 1

Participants: 1

Read full topic

(OJS 3.1.2)The current role does not have access to this operation

$
0
0

@salman20054 wrote:

Hi,

3 days back we upgraded an OJS server to: OJS 3.1.2.,
| OS platform | Linux |
| PHP version | 7.2 |
| Apache version | Apache/2.4.34
| Database driver | mysqli |
| Database server version | 5.7.23

we upgraded from OJS 3.1.1. to OJS 3.1.2., following the provided instructions. The upgrade script resulted in success.

But now, the administrator cannot able to login after 10-12 tries with user credentials we can get login in MAIN Site administration page/journal . As soon as I try to select any option I get:
The current role does not have access to this operation.

Following errors are found in the error log

[28-Jul-2019 19:00:12 UTC] PHP Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; ADODB_Cache_File has a deprecated constructor in /home/public_html/ojs/lib/pkp/lib/adodb/adodb.inc.php on line 263
[28-Jul-2019 19:00:12 UTC] PHP Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; ADOConnection has a deprecated constructor in /home/public_html/ojs/lib/pkp/lib/adodb/adodb.inc.php on line 359
[28-Jul-2019 19:00:12 UTC] PHP Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; ADORecordSet has a deprecated constructor in /home/public_html/ojs/lib/pkp/lib/adodb/adodb.inc.php on line 2921
[28-Jul-2019 19:00:12 UTC] PHP Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; ADORecordSet_array has a deprecated constructor in /home/public_html/ojs/lib/pkp/lib/adodb/adodb.inc.php on line 3939
[28-Jul-2019 19:00:12 UTC] PHP Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/public_html/ojs/lib/pkp/lib/adodb/adodb.inc.php on line 1003
[28-Jul-2019 19:00:12 UTC] PHP Warning: Declaration of HypothesisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/hypothesis/HypothesisPlugin.inc.php on line 0
[28-Jul-2019 19:00:12 UTC] PHP Warning: Declaration of PlagiarismPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:12 UTC] PHP Warning: Declaration of PlagiarismPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:12 UTC] PHP Warning: Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/addThis/AddThisPlugin.inc.php on line 0
[28-Jul-2019 19:00:12 UTC] PHP Warning: Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/coins/CoinsPlugin.inc.php on line 0
[28-Jul-2019 19:00:12 UTC] PHP Warning: Declaration of TexturePlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/texture/TexturePlugin.inc.php on line 0
[28-Jul-2019 19:00:12 UTC] PHP Warning: Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in /home/public_html/ojs/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 0
[28-Jul-2019 19:00:12 UTC] PHP Warning: Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in /home/public_html/ojs/plugins/generic/driver/DRIVERDAO.inc.php on line 19
[28-Jul-2019 19:00:12 UTC] PHP Warning: Declaration of SwordImportExportPlugin::register($category, $path) should be compatible with Plugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/sword/SwordImportExportPlugin.inc.php on line 0
[28-Jul-2019 19:00:17 UTC] PHP Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/public_html/ojs/lib/pkp/lib/adodb/adodb.inc.php on line 1003
[28-Jul-2019 19:00:17 UTC] PHP Warning: Declaration of HypothesisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/hypothesis/HypothesisPlugin.inc.php on line 0
[28-Jul-2019 19:00:17 UTC] PHP Warning: Declaration of PlagiarismPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:17 UTC] PHP Warning: Declaration of PlagiarismPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:17 UTC] PHP Warning: Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/addThis/AddThisPlugin.inc.php on line 0
[28-Jul-2019 19:00:17 UTC] PHP Warning: Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/coins/CoinsPlugin.inc.php on line 0
[28-Jul-2019 19:00:17 UTC] PHP Warning: Declaration of TexturePlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/texture/TexturePlugin.inc.php on line 0
[28-Jul-2019 19:00:17 UTC] PHP Warning: Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in /home/public_html/ojs/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 0
[28-Jul-2019 19:00:17 UTC] PHP Warning: Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in /home/public_html/ojs/plugins/generic/driver/DRIVERDAO.inc.php on line 19
[28-Jul-2019 19:00:17 UTC] PHP Warning: Declaration of SwordImportExportPlugin::register($category, $path) should be compatible with Plugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/sword/SwordImportExportPlugin.inc.php on line 0
[28-Jul-2019 19:00:18 UTC] PHP Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/public_html/ojs/lib/pkp/lib/adodb/adodb.inc.php on line 1003
[28-Jul-2019 19:00:18 UTC] PHP Warning: Declaration of HypothesisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/hypothesis/HypothesisPlugin.inc.php on line 0
[28-Jul-2019 19:00:18 UTC] PHP Warning: Declaration of PlagiarismPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:18 UTC] PHP Warning: Declaration of PlagiarismPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:18 UTC] PHP Warning: Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/addThis/AddThisPlugin.inc.php on line 0
[28-Jul-2019 19:00:18 UTC] PHP Warning: Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/coins/CoinsPlugin.inc.php on line 0
[28-Jul-2019 19:00:18 UTC] PHP Warning: Declaration of TexturePlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/texture/TexturePlugin.inc.php on line 0
[28-Jul-2019 19:00:18 UTC] PHP Warning: Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in /home/public_html/ojs/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 0
[28-Jul-2019 19:00:18 UTC] PHP Warning: Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in /home/public_html/ojs/plugins/generic/driver/DRIVERDAO.inc.php on line 19
[28-Jul-2019 19:00:18 UTC] PHP Warning: Declaration of SwordImportExportPlugin::register($category, $path) should be compatible with Plugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/sword/SwordImportExportPlugin.inc.php on line 0
[28-Jul-2019 19:00:18 UTC] PHP Deprecated: Non-static method PKPRequest::redirect() should not be called statically in /home/public_html/ojs/lib/pkp/classes/security/Validation.inc.php on line 178
[28-Jul-2019 19:00:18 UTC] PHP Deprecated: Non-static method PKPRequest::_checkThis() should not be called statically in /home/public_html/ojs/lib/pkp/classes/core/PKPRequest.inc.php on line 716
[28-Jul-2019 19:00:19 UTC] PHP Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/public_html/ojs/lib/pkp/lib/adodb/adodb.inc.php on line 1003
[28-Jul-2019 19:00:19 UTC] PHP Warning: Declaration of HypothesisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/hypothesis/HypothesisPlugin.inc.php on line 0
[28-Jul-2019 19:00:19 UTC] PHP Warning: Declaration of PlagiarismPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:19 UTC] PHP Warning: Declaration of PlagiarismPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:19 UTC] PHP Warning: Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/addThis/AddThisPlugin.inc.php on line 0
[28-Jul-2019 19:00:19 UTC] PHP Warning: Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/coins/CoinsPlugin.inc.php on line 0
[28-Jul-2019 19:00:19 UTC] PHP Warning: Declaration of TexturePlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/texture/TexturePlugin.inc.php on line 0
[28-Jul-2019 19:00:19 UTC] PHP Warning: Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in /home/public_html/ojs/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 0
[28-Jul-2019 19:00:19 UTC] PHP Warning: Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in /home/public_html/ojs/plugins/generic/driver/DRIVERDAO.inc.php on line 19
[28-Jul-2019 19:00:19 UTC] PHP Warning: Declaration of SwordImportExportPlugin::register($category, $path) should be compatible with Plugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/sword/SwordImportExportPlugin.inc.php on line 0
[28-Jul-2019 19:00:22 UTC] PHP Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/public_html/ojs/lib/pkp/lib/adodb/adodb.inc.php on line 1003
[28-Jul-2019 19:00:22 UTC] PHP Warning: Declaration of HypothesisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/hypothesis/HypothesisPlugin.inc.php on line 0
[28-Jul-2019 19:00:22 UTC] PHP Warning: Declaration of PlagiarismPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:22 UTC] PHP Warning: Declaration of PlagiarismPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:22 UTC] PHP Warning: Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/addThis/AddThisPlugin.inc.php on line 0
[28-Jul-2019 19:00:22 UTC] PHP Warning: Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/coins/CoinsPlugin.inc.php on line 0
[28-Jul-2019 19:00:22 UTC] PHP Warning: Declaration of TexturePlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/texture/TexturePlugin.inc.php on line 0
[28-Jul-2019 19:00:22 UTC] PHP Warning: Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in /home/public_html/ojs/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 0
[28-Jul-2019 19:00:22 UTC] PHP Warning: Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in /home/public_html/ojs/plugins/generic/driver/DRIVERDAO.inc.php on line 19
[28-Jul-2019 19:00:22 UTC] PHP Warning: Declaration of SwordImportExportPlugin::register($category, $path) should be compatible with Plugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/sword/SwordImportExportPlugin.inc.php on line 0
[28-Jul-2019 19:00:23 UTC] PHP Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/public_html/ojs/lib/pkp/lib/adodb/adodb.inc.php on line 1003
[28-Jul-2019 19:00:23 UTC] PHP Warning: Declaration of HypothesisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/hypothesis/HypothesisPlugin.inc.php on line 0
[28-Jul-2019 19:00:23 UTC] PHP Warning: Declaration of PlagiarismPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:23 UTC] PHP Warning: Declaration of PlagiarismPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:23 UTC] PHP Warning: Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/addThis/AddThisPlugin.inc.php on line 0
[28-Jul-2019 19:00:23 UTC] PHP Warning: Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/coins/CoinsPlugin.inc.php on line 0
[28-Jul-2019 19:00:23 UTC] PHP Warning: Declaration of TexturePlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/texture/TexturePlugin.inc.php on line 0
[28-Jul-2019 19:00:23 UTC] PHP Warning: Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in /home/public_html/ojs/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 0
[28-Jul-2019 19:00:23 UTC] PHP Warning: Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in /home/public_html/ojs/plugins/generic/driver/DRIVERDAO.inc.php on line 19
[28-Jul-2019 19:00:23 UTC] PHP Warning: Declaration of SwordImportExportPlugin::register($category, $path) should be compatible with Plugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/sword/SwordImportExportPlugin.inc.php on line 0
[28-Jul-2019 19:00:24 UTC] PHP Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/public_html/ojs/lib/pkp/lib/adodb/adodb.inc.php on line 1003
[28-Jul-2019 19:00:24 UTC] PHP Warning: Declaration of HypothesisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/hypothesis/HypothesisPlugin.inc.php on line 0
[28-Jul-2019 19:00:24 UTC] PHP Warning: Declaration of PlagiarismPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:24 UTC] PHP Warning: Declaration of PlagiarismPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:24 UTC] PHP Warning: Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/addThis/AddThisPlugin.inc.php on line 0
[28-Jul-2019 19:00:24 UTC] PHP Warning: Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/coins/CoinsPlugin.inc.php on line 0
[28-Jul-2019 19:00:24 UTC] PHP Warning: Declaration of TexturePlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/texture/TexturePlugin.inc.php on line 0
[28-Jul-2019 19:00:24 UTC] PHP Warning: Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in /home/public_html/ojs/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 0
[28-Jul-2019 19:00:24 UTC] PHP Warning: Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in /home/public_html/ojs/plugins/generic/driver/DRIVERDAO.inc.php on line 19
[28-Jul-2019 19:00:24 UTC] PHP Warning: Declaration of SwordImportExportPlugin::register($category, $path) should be compatible with Plugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/sword/SwordImportExportPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/public_html/ojs/lib/pkp/lib/adodb/adodb.inc.php on line 1003
[28-Jul-2019 19:00:25 UTC] PHP Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/public_html/ojs/lib/pkp/lib/adodb/adodb.inc.php on line 1003
[28-Jul-2019 19:00:25 UTC] PHP Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/public_html/ojs/lib/pkp/lib/adodb/adodb.inc.php on line 1003
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of HypothesisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/hypothesis/HypothesisPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of PlagiarismPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of PlagiarismPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/addThis/AddThisPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/coins/CoinsPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of TexturePlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/texture/TexturePlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in /home/public_html/ojs/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in /home/public_html/ojs/plugins/generic/driver/DRIVERDAO.inc.php on line 19
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of SwordImportExportPlugin::register($category, $path) should be compatible with Plugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/sword/SwordImportExportPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of HypothesisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/hypothesis/HypothesisPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of PlagiarismPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of PlagiarismPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/addThis/AddThisPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/coins/CoinsPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of TexturePlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/texture/TexturePlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in /home/public_html/ojs/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in /home/public_html/ojs/plugins/generic/driver/DRIVERDAO.inc.php on line 19
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of SwordImportExportPlugin::register($category, $path) should be compatible with Plugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/sword/SwordImportExportPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of HypothesisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/hypothesis/HypothesisPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of PlagiarismPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of PlagiarismPlugin::getEnabled() should be compatible with LazyLoadPlugin::getEnabled($contextId = NULL) in /home/public_html/ojs/plugins/generic/plagiarism/PlagiarismPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of AddThisPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/addThis/AddThisPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of CoinsPlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/coins/CoinsPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of TexturePlugin::register($category, $path) should be compatible with LazyLoadPlugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/texture/TexturePlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Deprecated: Non-static method PKPRequest::_checkThis() should not be called statically in /home/public_html/ojs/lib/pkp/classes/core/Dispatcher.inc.php on line 245
[28-Jul-2019 19:00:25 UTC] ojs2: 404 Not Found
[28-Jul-2019 19:00:25 UTC] PHP Deprecated: Non-static method PKPRequest::_checkThis() should not be called statically in /home/public_html/ojs/lib/pkp/classes/core/Dispatcher.inc.php on line 245
[28-Jul-2019 19:00:25 UTC] ojs2: 404 Not Found
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of CustomBlockPlugin::getBlockContext() should be compatible with BlockPlugin::getBlockContext($contextId = NULL) in /home/public_html/ojs/plugins/generic/customBlockManager/CustomBlockPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of DRIVERDAO::setOAI(&$oai) should be compatible with PKPOAIDAO::setOAI($oai) in /home/public_html/ojs/plugins/generic/driver/DRIVERDAO.inc.php on line 19
[28-Jul-2019 19:00:25 UTC] PHP Warning: Declaration of SwordImportExportPlugin::register($category, $path) should be compatible with Plugin::register($category, $path, $mainContextId = NULL) in /home/public_html/ojs/plugins/generic/sword/SwordImportExportPlugin.inc.php on line 0
[28-Jul-2019 19:00:25 UTC] PHP Deprecated: Non-static method PKPRequest::_checkThis() should not be called statically in /home/public_html/ojs/lib/pkp/classes/core/Dispatcher.inc.php on line 245
[28-Jul-2019 19:00:25 UTC] ojs2: 404 Not Found

Posts: 1

Participants: 1

Read full topic

OJS3 upgrade issue list

$
0
0

@marc wrote:

Hi,

Is there a list of issues and solutions for OJS3 migration?
I’m helping some fellows with the task, and forum is fine, but I think it will be easier for everybody if we sort the information in a wiki in a QA index page.

Cheers,
m.

Posts: 1

Participants: 1

Read full topic

What is Galley and how to create Galley in Quick submit plugin?

$
0
0

@4ndi_r4h4di wrote:

Before you post your question, check out the user guides and video tutorials at PKP Docs and search the forum to see if someone else had the same question.

When you post your question give as much detail as possible, including the following:

  • Application Version - e.g., OJS 3.1.2
  • Description of issue
  • Steps you took leading up to the issue
  • What you tried to resolve the issue
  • Screenshots
  • Error log messages if applicable

You can post in any language, but please note there is a Spanish OJS forum and a German category on this forum.

Posts: 1

Participants: 1

Read full topic

Viewing all 27292 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>