Page 1 of 1

Error on homepage

Posted: 11 Jun 2019, 01:15
by Indra
Hi, after I install the aimeos, I receive this error.
Anyone know the errors?

Thanks

Environment : MAC using MAMP

Re: Error on homepage

Posted: 11 Jun 2019, 07:36
by aimeos
Guess you changed the configuration and this isn't a valid array any more:
https://github.com/aimeos/aimeos-larave ... op.php#L27

Re: Error on homepage

Posted: 11 Jun 2019, 14:22
by Indra
Hi aimeos, actually I just finish the fresh install by following the documentation on aimeos laravel github, haven't change any configuration, I saw also the line you said commented on my file. Any idea on that error?

Thanks

Re: Error on homepage

Posted: 11 Jun 2019, 21:58
by aimeos
Not yet. Can you add a

Code: Select all

error_log( var_export( app( 'config' )->get( 'shop.page.catalog-stock' ) ) );
at
https://github.com/aimeos/aimeos-larave ... er.php#L87
and post the output from the console or Apache error log?

Re: Error on homepage

Posted: 17 Jun 2019, 08:48
by Indra
Hi aimeos, I already put the error log, but the output is empty. Any more idea?

Thanks

Re: Error on homepage

Posted: 17 Jun 2019, 09:03
by aimeos
Sorry, must be:

Code: Select all

error_log( var_export( app( 'config' )->get( 'shop.page.catalog-stock' ), true ) );
Without the "true", you won't get any output in the error log because it's directly written to the response.