Search found 53 matches

by swpierce
25 Dec 2015, 14:17
Forum: Laravel package
Topic: Class Input not found?
Replies: 2
Views: 2664

Re: Class Input not found?

In addition to the above errors, if I do a clean install of 1.1 that works fine, change composer to "require": { "aimeos/aimeos-laravel": "1.2", ... }, and then run composer update , I get an error trying to open the admin panel. The problem is on line 44: undefined jsF...
by swpierce
24 Dec 2015, 14:35
Forum: Laravel package
Topic: Class Input not found?
Replies: 2
Views: 2664

Class Input not found?

Fresh installs of composer (1.0-dev), Laravel (5.2.4), and Aimeos (1.2). Unable to open the storefront or the admin panels. Both result in this: Admin error: FatalErrorException in AdminController.php line 31: Class 'Input' not found Storefront error: FatalErrorException in View.php line 35: Class '...
by swpierce
15 Dec 2015, 21:42
Forum: Help
Topic: How to load media associated with an attribute?
Replies: 2
Views: 2399

Re: How to load media associated with an attribute?

Found it. Forgot to add the media references to the searchItems so the references would get loaded. Need more coffee. :shock:
by swpierce
15 Dec 2015, 18:50
Forum: Help
Topic: How to load media associated with an attribute?
Replies: 2
Views: 2399

How to load media associated with an attribute?

I have an attribute with code 'attr-code1' I have a media entry defined and associated with that attribute. Everything in the admin panel looks fine. If I open that attribute and click on the media tab, I see the media. In the database, the appropriate stuff is in mshop_attribute_list, etc. I try to...
by swpierce
11 Dec 2015, 20:18
Forum: Laravel package
Topic: Getting ai-filesystem to work
Replies: 1
Views: 2210

Getting ai-filesystem to work

I'm having trouble getting the ai-filesystem extension to work. First problem: I can't get it to install using composer. Here's my composer.json file: "prefer-stable": true, "minimum-stability": "dev", "require": { "php": ">=5.5.9", "l...
by swpierce
07 Dec 2015, 15:42
Forum: Help
Topic: Workaround for short search terms?
Replies: 1
Views: 1960

Workaround for short search terms?

Our hosting server has the mysql configuration set to ft_min_word_len = 4 and we have product names with 3-letter words (such as 'May'). When a customer tries to search for the word 'May' that word is ignored. I thought I remembered seeing in the documentation somewhere a workaround for dealing with...
by swpierce
05 Dec 2015, 14:13
Forum: Help
Topic: Multiple payment types for a single order
Replies: 2
Views: 2469

Re: Multiple payment types for a single order

Aimeos can at least store more than one payment type for an order but I would use a basket plugin that adds a discount product to the basket with a negative price. Thus, you don't have to adapt the whole system to work with several payment providers flawlessly. Sounds great. We were leaning towards...
by swpierce
05 Dec 2015, 01:59
Forum: Help
Topic: Multiple payment types for a single order
Replies: 2
Views: 2469

Multiple payment types for a single order

We are working on building a customer loyalty program. At some point, customers will have built up a point value that we want them to be able to use for purchases. Let's say, for example, that 1 point is worth $1.00. Customer A has 15 points in their account and wants to purchase $35 of product. I n...
by swpierce
01 Dec 2015, 01:34
Forum: Laravel package
Topic: Updating cart address at login
Replies: 10
Views: 7049

Re: Updating cart address at login

The mini basket is cached in the session for performance reasons: https://github.com/aimeos/aimeos-core/blob/master/client/html/src/Client/Html/Basket/Base.php The simplest way is to discard the session completely. This will also wipe out the cached basket. I figured that out after a walk around th...
by swpierce
30 Nov 2015, 18:20
Forum: Laravel package
Topic: Updating cart address at login
Replies: 10
Views: 7049

Re: Updating cart address at login

OK. Got the cart clearing thing to work on logout. One little annoyance I can't figure out... If, after logout, I redirect to /list, the mini basket still shows product. Clicking on the mini basket to go to the standard basket confirms the basket is empty. Similarly, if I redirect to /basket after l...