No item found for conditions: Array ( [locale.site.code] => default )

Questions around the TYPO3 integration and plugins
Forum rules
Always add your TYPO3, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
mahrez
Posts: 8
Joined: 22 Apr 2020, 11:06

No item found for conditions: Array ( [locale.site.code] => default )

Post by mahrez » 23 Apr 2020, 12:49

I'm setup Aimeos 19.10.5 on TYPO 9.5.3.

I followed all the steps, and I executed the update script of the Aimeos extension in the extension manager

but I get this error :

Code: Select all

(1/1) Aimeos\MShop\Exception
No item found for conditions: Array ( [locale.site.code] => default )
I installed and uninstalled the extension several times but still the same problem.

Image

thanks in advance for the support

mahrez
Posts: 8
Joined: 22 Apr 2020, 11:06

Re: No item found for conditions: Array ( [locale.site.code] => default )

Post by mahrez » 23 Apr 2020, 16:27

I fixed my problem with this solution :
1. I changed the fe_users table Engine, from

Code: Select all

MyISAM 
to

Code: Select all

InnoDB

2. and then run the SQL again :

Code: Select all

ALTER TABLE fe_users_address 
ADD CONSTRAINT fk_t3feuad_pid 
FOREIGN KEY (parentid) 
REFERENCES fe_users (uid) ON UPDATE CASCADE ON DELETE CASCADE
3. executed again the update script of the Aimeos extension in the extension manager

Post Reply