Log files
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Log files
Hi
I got Aimeos exception at checkout page:
img: https://drive.google.com/file/d/1q8Cyso ... DHnOe/view
It's not Laravel exception, and storage/logs/laravel.log does not contain any information about the error.
Is there some place where i can find Aimeos log about what happened?
I got Aimeos exception at checkout page:
img: https://drive.google.com/file/d/1q8Cyso ... DHnOe/view
It's not Laravel exception, and storage/logs/laravel.log does not contain any information about the error.
Is there some place where i can find Aimeos log about what happened?
Laravel 6.18.19 | php 7.4.7 | Xubuntu | Aimeos Laravel 2019.10.5
Re: Log files
More information might be available in the madmin_log table.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: Log files
There are no one row about the error.



Laravel 6.18.19 | php 7.4.7 | Xubuntu | Aimeos Laravel 2019.10.5
Re: Log files
In your case the error occurs because the factory can't create your manager object. Do you have an \Aimeos\MShop\Subsciption\Manager\Standard class too that is able to create the \Aimeos\MShop\Subsciption\Manager\Status\Standard object?
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: Log files
I'm trying to create new data domain and calling it from my service provider on the checkout page. The problem is there are no good step-by-step info about it at docs. I'm close to goal. I want to create an aimeos: new-domain command at future for easy creating new data domain. 

Laravel 6.18.19 | php 7.4.7 | Xubuntu | Aimeos Laravel 2019.10.5
Re: Log files
I don't need \Aimeos\MShop\Subsciption\Manager\Status\Standard. It's calling because of i copied class file from Order manager and then rewrite it partially. It has submanager Status, and call it somewhere here:
$this->searchItemsBase( $conn, $search, $cfgPathSearch, $cfgPathCount, $required, $total, $sitelevel );
I'm trying to cut it's calling.
$this->searchItemsBase( $conn, $search, $cfgPathSearch, $cfgPathCount, $required, $total, $sitelevel );
I'm trying to cut it's calling.
Laravel 6.18.19 | php 7.4.7 | Xubuntu | Aimeos Laravel 2019.10.5
Re: Log files
Okay i did it. I deleted 'status' here:
Now i have "A non-recoverable error occured"
https://drive.google.com/file/d/1jk2DgC ... PapfW/view
Any ideas how to debug checkout page in this case?
Code: Select all
public function getSearchAttributes( $withsub = true )
{
$path = 'mshop/subscription/manager/submanagers';
$default = array( 'base', 'status' );
return $this->getSearchAttributesBase( $this->searchConfig, $path, $default, $withsub );
}
https://drive.google.com/file/d/1jk2DgC ... PapfW/view
Any ideas how to debug checkout page in this case?
Laravel 6.18.19 | php 7.4.7 | Xubuntu | Aimeos Laravel 2019.10.5
Re: Log files
Error messages and stack traces of "Non-recoverable errors" are written to the madmin_log table.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,
