PHP Fatal error: web feed plugin

Hi @salman20054,

Something on your server is preventing PHP from using HTTPS URLs in the copy function. There are some additional PHP configuration suggestions on this StackOverflow thread.

Regards,
Alec Smecher
Public Knowledge Project Team

i tried but i dont know hoe to do so

Please anybody help me on this use

i downloaded the plugin from GitHub - pkp/customBlockManager at ec5838a0c601d75c86f6d72a0ed8ac9f0cd09bba

Hi @salman20054,

This is a PHP configuration problem, not an OJS configuration problem. You can try removing OJS from the equation by using the following test script:

<?php
ini_set('display_errors', E_ALL);
copy('https://github.com/pkp/translator/releases/download/ojs-3_1_0-0/translator-ojs-3_1_0-0.tar.gz', 'tmp.tgz');
if (file_exists('tmp.tgz')) echo 'It works.';
else echo 'It doesn\'t work.';

If this works, then the issue may be with OJS. If it doesn’t work, then you’ll need to adjust your PHP configuration. Another site like stackoverflow.com might be more helpful.

Regards,
Alec Smecher
Public Knowledge Project Team

Please check php.ini file on your server or ask administrator to help you in this regard.