Support Forums - Classified Ads Script Osclass

General osclass questions => General discussion => Topic started by: Lee Nielsen on December 20, 2021, 10:44:43 AM

Title: file_get_contents failed to open stream: No such file or directory plugins 452
Post by: Lee Nielsen on December 20, 2021, 10:44:43 AM
Why do I kep getting this lopping PHP warning message on my Windows Dev server

Warning: file_get_contents(C:/laragon/www/osclass/oc-content/plugins/): failed to open stream: No such file or directory in C:\laragon\www\osclass\oc-includes\osclass\classes\Plugins.php on line 452
Title: Re: file_get_contents failed to open stream: No such file or directory plugins 452
Post by: MB Themes on December 20, 2021, 03:35:43 PM
That sounds like you are missing essential directories or file permission on them are incorrect
Title: Re: file_get_contents failed to open stream: No such file or directory plugins 452
Post by: Lee Nielsen on December 20, 2021, 09:04:58 PM
it's a standard install, I only just downloaded the zip file and extracted the contents onto my Laragon server, ran the installation - everything got the green tick to say permissions and everything was correct. Go to Market > Plugins and get warnings, very slow loading aswell.
The directory exist.

I may change server from Apache to Nginx to see if this makes a difference
Title: Re: file_get_contents failed to open stream: No such file or directory plugins 452
Post by: MB Themes on December 21, 2021, 07:35:13 AM
@Lee
Thank you. I think problem is that in some cases there is search for product that already does not exists.
Problem will be fixed in 8.0.1

You can also fix it quickly in oc-includes/osclass/classes/Plugins.php

Find:
Code: [Select]
  public static function getInfo( $plugin )
  {

    if(!file_exists(osc_plugins_path() . $plugin)) {

Replace with:
Code: [Select]
  public static function getInfo( $plugin )
  {

    if($plugin == '' || !file_exists(osc_plugins_path() . $plugin)) {
Title: Re: file_get_contents failed to open stream: No such file or directory plugins 452
Post by: Lee Nielsen on December 21, 2021, 09:48:17 AM
Thanks MB Themes, that's it. working now, no php warnings.
Title: Re: file_get_contents failed to open stream: No such file or directory plugins 452
Post by: MB Themes on December 21, 2021, 11:17:07 AM
Glad to hear that  :-*