Search found 108 matches

by mohal_04
12 Nov 2018, 04:53
Forum: Laravel package
Topic: Item Save Error (Product, Service, Attribute, etc)
Replies: 4
Views: 2646

Re: Item Save Error (Product, Service, Attribute, etc)

Questions: - Did you overwrite the service manager? - Did you add a sub-panel to the service panel? - Did you changed the templates of the service panel and/or sub-panels? If you know it occurs around the $manager->saveItem( clone $view->item ); code, check if $view->item is available after calling...
by mohal_04
07 Nov 2018, 05:08
Forum: Laravel package
Topic: Aimeos Orders - Revised Orders!
Replies: 2
Views: 1639

Re: Aimeos Orders - Revised Orders!

aimeos wrote:No, you can't change orders after they are being placed for various reasons but it's easy to copy them and add the old order ID as related ID in the mshop_order table.
Hello,

Thanks for your reply! So, how do we manage returned orders?

Thanks!
by mohal_04
20 Oct 2018, 11:08
Forum: Laravel package
Topic: Max # of Connections Error!
Replies: 3
Views: 2029

Re: Max # of Connections Error!

Did you extend from an existing manager and replace parts of the code? This error happens if you acquire() a connection but don't call the appropriate release(). Hi, Thank you very much for your guidance. You really helped me fix this issue. Actually, we had a custom Setup Task that was using depre...
by mohal_04
15 Oct 2018, 15:51
Forum: Laravel package
Topic: Max # of Connections Error!
Replies: 3
Views: 2029

Max # of Connections Error!

Laravel: 5.6 Aimeos: 2018.07 PHP: 7.1.18 Hi, Lately, we are facing following error when we run "php artisan aimeos:setup." In DBAL.php line 114: Maximum number of connections (3) for "db" exceeded And there is no log entry related to this error. So, please advise! It displays rig...
by mohal_04
15 Oct 2018, 12:06
Forum: Laravel package
Topic: Users Table: Changing Table Schema
Replies: 4
Views: 2835

Re: Users Table: Changing Table Schema

You are also right but it's not managed by the Aimeos Core and by the ai-laravel extension instead. Your own extension has to depend on 'ai-laravel' in the manifest.php of your extension so it's definition is available when you try to access it. Hi, Thanks again for your help! Each time I learn som...
by mohal_04
12 Oct 2018, 12:26
Forum: Laravel package
Topic: Order/Invoice Printing
Replies: 1
Views: 1407

Order/Invoice Printing

Laravel: 5.6
Aimeos: 2018.07
PHP: 7.1.18

Hi guys,

So, my client wants to know, how we, as an administrator, print an order/invoice? We have looked everywhere in administration panel but couldn't find it.

Help required!

Thanks!
by mohal_04
12 Oct 2018, 10:45
Forum: Laravel package
Topic: Item Save Error (Product, Service, Attribute, etc)
Replies: 4
Views: 2646

Re: Item Save Error (Product, Service, Attribute, etc)

Questions: - Did you overwrite the service manager? - Did you add a sub-panel to the service panel? - Did you changed the templates of the service panel and/or sub-panels? If you know it occurs around the $manager->saveItem( clone $view->item ); code, check if $view->item is available after calling...
by mohal_04
11 Oct 2018, 11:14
Forum: Laravel package
Topic: Users Table: Changing Table Schema
Replies: 4
Views: 2835

Re: Users Table: Changing Table Schema

The "users" table is a Laravel not managed by Aimeos. You have to use Laravel migrations to change the table but we would strongly recommend to keep the unique index on the email column! Hey, thanks for the help! Laravel migration file doesn't have all the fields for `users` table that I ...
by mohal_04
11 Oct 2018, 10:50
Forum: Laravel package
Topic: Aimeos Orders - Manual Order Entry
Replies: 8
Views: 3906

Re: Aimeos Orders - Manual Order Entry

aimeos wrote:Implementing that feature is a bit difficult but if all can join forces and to help get this done, we would appreciate that very much! :-)
Hey, count me in. I would love to be part of something this much amazing. :)
by mohal_04
10 Oct 2018, 17:05
Forum: Laravel package
Topic: Users Table: Changing Table Schema
Replies: 4
Views: 2835

Users Table: Changing Table Schema

Laravel: 5.6 Aimeos: 2018.07 PHP: 7.1.18 Hi, I want to change unique index on email field in users table. So, I created a Schema file inside my extension. The name of the file is "customer.php" and it has the following lines of code: <?php return array( 'table' => array( 'users' => functio...