Search found 53 matches

by swpierce
27 Nov 2015, 19:25
Forum: Laravel package
Topic: Storing images, etc. on Amazon S3
Replies: 6
Views: 4784

Re: Storing images, etc. on Amazon S3

Awesome! I'll pull it down and see if I can get it working.

Thanks!!
by swpierce
27 Nov 2015, 02:02
Forum: Laravel package
Topic: Adapting existing routes
Replies: 7
Views: 5444

Re: Adapting existing routes

So I got it working but not ideally. If I upgrade Aimeos, I'll lose it. I started out trying to override the AdminController in the aimeos-laravel package but that seemed too much of a hassle. Here's what worked (not an ideal solution but something that lets us deploy this week): 1) Created a Larave...
by swpierce
25 Nov 2015, 17:45
Forum: Laravel package
Topic: Adapting existing routes
Replies: 7
Views: 5444

Adapting existing routes

Trying to secure the /admin routes. Not working at all. Here's what I've tried: Attempt #1: Put this in App\Http\routes.php: Route::get('admin', array( 'as' => 'aimeos_shop_admin', 'middleware' => 'auth', 'uses' => 'Aimeos\Shop\Controller\AdminController@indexAction', )); Route::get('admin/do', arra...
by swpierce
25 Nov 2015, 12:46
Forum: Laravel package
Topic: Storing images, etc. on Amazon S3
Replies: 6
Views: 4784

Re: Storing images, etc. on Amazon S3

I'll work on that this weekend and see what I can do :)
by swpierce
24 Nov 2015, 23:31
Forum: Laravel package
Topic: [REQ] Possible system for slugs
Replies: 5
Views: 4156

Re: [REQ] Possible system for slugs

Apologies for digging up an old thread, but anyone know if the referenced URL generator bug is fixed in Laravel 5.1? I'm guessing not looking at the laravel repository but I could be missing it too ;)
by swpierce
24 Nov 2015, 22:59
Forum: Laravel package
Topic: Storing images, etc. on Amazon S3
Replies: 6
Views: 4784

Re: Storing images, etc. on Amazon S3

Almost! :D Missing one part. When someone is creating a product via the admin interface and needs to upload an image for that product, we want the image to get stored in the S3 bucket - not in the uploads directory. Pulling images from S3 is simple enough - just put the full URL in the mshop_media f...
by swpierce
24 Nov 2015, 14:23
Forum: Laravel package
Topic: Storing images, etc. on Amazon S3
Replies: 6
Views: 4784

Storing images, etc. on Amazon S3

We're going to be storing our product images on Amazon S3. Just wanted to make sure that I don't need to do anything specific for Aimeos to work with S3. All I need to do is configure the Laravel filesystem provider and all will be well?

Thanks!
by swpierce
21 Nov 2015, 00:17
Forum: Help
Topic: Single Delivery Provider with multiple prices?
Replies: 4
Views: 17048

Single Delivery Provider with multiple prices?

Is there a simple way to build a drop-down on the checkout page to allow the user to select a particular delivery service? I can easily build a select box based on multiple providers by changing the radio selects to a select drop-down. What I need to do is display a drop-down of multiple services fr...
by swpierce
18 Nov 2015, 22:32
Forum: Laravel package
Topic: Adding a Subpart
Replies: 14
Views: 8409

Re: Adding a Subpart

Now that is a WAY better idea AND I don't have to write any code. Thanks!!
by swpierce
18 Nov 2015, 14:04
Forum: Laravel package
Topic: Adding a Subpart
Replies: 14
Views: 8409

Re: Adding a Subpart

As I'm looking at where to put the code for this (displaying products from subcategories in parent category list), I'm thinking a Decorator would be best option? I don't really want to write another layout. I want to use the current catalog list layout. I just need to inject additional information b...