Search found 4 matches

by etienne.bonnin
07 Jun 2018, 16:04
Forum: Symfony bundle
Topic: Bug in aimeos.js
Replies: 1
Views: 3256

Bug in aimeos.js

In my environment the ajax calls setupWatchAction and setupFavoriteAction do not work! I suggest adding: dataType: 'html' inside ajax calls. I do not know why in my environment the script does not work but I imagine it may depend on some versions of jquery. Maybe in your jquery version the html type...
by etienne.bonnin
04 Jun 2018, 09:43
Forum: Symfony bundle
Topic: Aimeos + postgresql: boolean column type problem
Replies: 5
Views: 6611

Re: Aimeos + postgresql: boolean column type problem

I found a temporary solution in: vendor/aimeos/aimeos-core/lib/mwlib/src/MW/DB/Statement/DBAL/Simple.php 59c59 < $this->binds[$position] = (int) (bool) $value; break; --- > $this->binds[$position] = ((bool) $value)?"true":"false"; break; Hope this helps! Thanks
by etienne.bonnin
04 Jun 2018, 09:24
Forum: Symfony bundle
Topic: Aimeos + postgresql: boolean column type problem
Replies: 5
Views: 6611

Re: Aimeos + postgresql: boolean column type problem

Sorry but the patch you provided doesn't work in my environment. It seems that "true" value is translated to "1" and "false" to "0" in the bind (?) method. The error is the same.
by etienne.bonnin
30 May 2018, 18:15
Forum: Symfony bundle
Topic: Aimeos + postgresql: boolean column type problem
Replies: 5
Views: 6611

Aimeos + postgresql: boolean column type problem

I followed the default aimeos symfony bundle installation. Symfony version 3.4.11 Aimeos version: 2018.04 My config.yml is: ... ... fos_user: db_driver: orm firewall_name: main user_class: AppBundle\Entity\User from_email: address: email@mycompany.zzz sender_name: 'My sender name' ... ... doctrine: ...