Describe the issue or problem
Unable to create remote URL from admin page
Steps I took leading up to the issue
For example:
I will check and create but its always stuck may its bug pls check any one check so its help other also
What application are you using?
For example, OJS 3.3.0.14
Additional information
Hi @acspublisher,
You’ll want to check your PHP error log and report back on errors found there.
-Roger
PKP team
Hi @acspublisher,
Also, make sure you’re using a complete URL, including the http://
or https://
prefix.
Regards,
Alec Smecher
Public Knowledge Project Team
Hi rcgillis
Hope bleow error help to resolve the problem
public_html/journals/lib/pkp/controllers/grid/navigationMenus/form/PKPNavigationMenuItemsForm.inc.php on line 227
Hi asmecher,
I will try both option and it stuck on both ways
The following change will solve your problem.
lib/pkp/controllers/grid/navigationMenus/form/PKPNavigationMenuItemsForm.inc.php
Replace the codes in this line (227)
if($locale !== $context->getPrimaryLocale() && $remoteUrl == '') continue;
with this
if (!empty($context)) {
if($locale !== $context->getPrimaryLocale() && $remoteUrl == '') continue;
}
Hi, Kerimsarigul
Changes in code is also not work, Error Screenshot attached for your reference
Are you sure your codes are as follows?
If the problem is not resolved after the change, can you share the php error logs again?
Hi kerimsarigul,
Your Knowledge against PKP is really appreciated, its work thanks a lot for your help
regards,
Ashwin
ACS Publisher
1 Like