Search found 8062 matches

by aimeos
22 Jul 2015, 14:41
Forum: Laravel package
Topic: Placing subparts somewhere else
Replies: 3
Views: 5238

Re: Placing subparts somewhere else

Ok So no other way to retrieve a part of the aimeos_nav, put it in another section and yield it? :) No, subparts are not viable on their own but you can put the "aimeos_nav" component twice in your template. The only downside in Laravel compared to e.g. TYPO3 is that you can't configure b...
by aimeos
22 Jul 2015, 13:47
Forum: Laravel package
Topic: Error running composer update with fresh install of Laravel
Replies: 13
Views: 16847

Re: Error running composer update with fresh install of Lara

Everything is up and running, so now the fun begins! Thanks for all your help. You are welcome :-) I know this is off topic, but have you done any PCI compliance tests on your checkout process? Aimeos doesn't support storing credit card details locally out of the box, so the necessity for PCI compl...
by aimeos
22 Jul 2015, 13:41
Forum: Laravel package
Topic: Placing subparts somewhere else
Replies: 3
Views: 5238

Re: Placing subparts somewhere else

Looks like it would be the easiest to add your buttons to the templates of the filter component if you don't need Laravel specific code there. If you need to rearrange the subparts of the component itself, you can do it by configuration. It would be also possible to add the component twice and hide ...
by aimeos
22 Jul 2015, 08:25
Forum: Laravel package
Topic: Error running composer update with fresh install of Laravel
Replies: 13
Views: 16847

Re: Error running composer update with fresh install of Lara

I am relatively still new to Laravel 5.x and still much accustomed to 4.x so pardon my stumbling around a bit here, but is the app.blade.php an already existing file or one that needs to be created? There was no app.blade.php file in resources/views/ so I created one and added the html code but I h...
by aimeos
21 Jul 2015, 19:24
Forum: Laravel package
Topic: Error running composer update with fresh install of Laravel
Replies: 13
Views: 16847

Re: Error running composer update with fresh install of Lara

All is well now, except I'm getting a blank page when opening in my browser. I should have the demo right? I think I still need to make the csrf edits though. Please continue with the setup. You need to add a base template, then you can test: https://aimeos.org/docs/Laravel/Adapt_base_template http...
by aimeos
21 Jul 2015, 19:09
Forum: Laravel package
Topic: Error running composer update with fresh install of Laravel
Replies: 13
Views: 16847

Re: Error running composer update with fresh install of Lara

No. I'm still getting the unknown column lvu.company in the select statement. Can you execute the following commands by hand: php artisan vendor:publish php artisan migrate Then, the user table should get updated. Check if "./database/migrations/2015_03_06_000000_aimeos_users_table.php" i...
by aimeos
21 Jul 2015, 18:43
Forum: Laravel package
Topic: Error running composer update with fresh install of Laravel
Replies: 13
Views: 16847

Re: Error running composer update with fresh install of Lara

I wasn't paying attention and just noticed that I have two publish directives in the post update section: "post-update-cmd": [ "php artisan vendor:publish --tag=public --force", "php artisan vendor:publish", "php artisan migrate", "php artisan optimize&q...
by aimeos
21 Jul 2015, 17:53
Forum: Laravel package
Topic: Error running composer update with fresh install of Laravel
Replies: 13
Views: 16847

Re: Error running composer update with fresh install of Lara

Removing that line corrected the error, but I noticed that the syntax of the app.php providers array seems to have changed from what you are showing in your documentation. That's essentially the same, just another way to get the class name. Anyway, now when running php artisan aimeos:setup --option...
by aimeos
21 Jul 2015, 16:47
Forum: Laravel package
Topic: Error running composer update with fresh install of Laravel
Replies: 13
Views: 16847

Re: Error running composer update with fresh install of Lara

> cp -r ext/*/client/extjs/deploy/* public/packages/aimeos/shop/client/extjs/deploy/ cp: cannot stat ‘ext/*/client/extjs/deploy/*’: No such file or directory Script cp -r ext/*/client/extjs/deploy/* public/packages/aimeos/shop/client/extjs/deploy/ handling the post-update-cmd event returned with an...
by aimeos
21 Jul 2015, 16:41
Forum: Laravel package
Topic: Best way to create a custom template and structure
Replies: 4
Views: 6332

Re: Best way to create a custom template and structure

I'm using a pre-built template with its own css class names for various containers so changing the templates seems easier than fiddling with the css styles because that would mean duplicating a lot of the styles to give them aimeos specific names. OK, that's a valid point and a weak part of CSS bec...