Hi all,
Im trying to run a website made using October 3 in my local environment but Im getting this really weird error
I cloned the project, ran composer install, everything went without errors
But I try to load the website, I get this:
Cannot access "parent" when current class scope has no parent
~/vendor/october/rain/src/Extension/ExtendableTrait.php line 509
if ($callable !== null) {
return call_user_func_array($callable, $params);
}
$parent = get_parent_class($this);
if ($parent !== false && method_exists($parent, '__call')) {
return parent::__call($name, $params);
}
throw new BadMethodCallException(sprintf(
'Call to undefined method %s::%s()',
static::class,
$name
php artisan october:about gives me this
Environment ......................................................................................................................................
Application Name ..................................................................................................................... October CMS
Laravel Version .......................................................................................................................... 9.52.16
PHP Version ............................................................................................................................... 8.2.15
Composer Version ........................................................................................................................... 2.7.2
Environment .................................................................................................................................. dev
Debug Mode ............................................................................................................................... ENABLED
URL .................................................................................................................................... localhost
Maintenance Mode ............................................................................................................................. OFF
Cache ............................................................................................................................................
Config ................................................................................................................................ NOT CACHED
Events ................................................................................................................................ NOT CACHED
Routes ................................................................................................................................ NOT CACHED
Views ................................................................................................................................. NOT CACHED
Drivers ..........................................................................................................................................
Broadcasting .............................................................................................................................. pusher
Cache ....................................................................................................................................... file
Database ................................................................................................................................... mysql
Logs ...................................................................................................................................... single
Queue ....................................................................................................................................... sync
Session ..................................................................................................................................... file
October CMS ......................................................................................................................................
October CMS Version ........................................................................................................................ 3.6.9
Plugin Updates Count ........................................................................................................................... 0
Im stuck here. Tried clearing the lavarel cache, no changes. Dont know what else to try
Im running PHP 8.2 inside a docker, everything seems to be set correctly
Same website is running also on php 8.2 on an aws server with no issues, but here I get this
Any clues? Any help will be much appreciated