Search found 70 matches

by Travin
23 Jan 2018, 19:30
Forum: Laravel package
Topic: Stripe subscriptions
Replies: 11
Views: 4637

Re: Stripe subscriptions

The main idea is to separate html code from diferent Providers, and separate JS code from diferent Providers :?
by Travin
23 Jan 2018, 19:26
Forum: Laravel package
Topic: Stripe subscriptions
Replies: 11
Views: 4637

Re: Stripe subscriptions

Embed the Stripe JS into the page (using the HTML client template for the checkout payment part) to get the token I am creating my first Stripe payment integration. When i'm trying to use Omnipay without token, it responds me message from Stripe: "Sending credit card numbers directly to the St...
by Travin
21 Jan 2018, 20:11
Forum: Laravel package
Topic: Stripe subscriptions
Replies: 11
Views: 4637

Re: Stripe subscriptions

I am added some fields at my private $feConfig . So now it's new field at a payment form. Can you please tell me how can i take data from these fields at my process() function? I tried print_r($feConfig = $this->feConfig); print_r($this->getConfigFE($order)); It does not work for me. My getConfigFE(...
by Travin
21 Jan 2018, 16:50
Forum: Laravel package
Topic: custom order id
Replies: 5
Views: 2273

Re: custom order id

Hey
I think you can extend it by placing here your custom version. I hope so, i'm not sure :roll:
\ext\your-ext\lib\custom\src\MShop\Order\Manager\Base\Address\Standard.php
by Travin
21 Jan 2018, 15:22
Forum: Laravel package
Topic: New aimeos installation, page expired error
Replies: 23
Views: 12215

Re: New aimeos installation, page expired error

did you try to disable temporary CSRF at laravel?
by Travin
13 Jan 2018, 13:07
Forum: Help
Topic: Temporary order limit reached
Replies: 8
Views: 5429

Re: Temporary order limit reached

Thanks!
by Travin
13 Jan 2018, 12:57
Forum: Help
Topic: Temporary order limit reached
Replies: 8
Views: 5429

Temporary order limit reached

I have error at the checkout page: Temporary order limit reached. Could i change the limit?
by Travin
13 Jan 2018, 12:45
Forum: Laravel package
Topic: Log files
Replies: 7
Views: 3452

Re: Log files

Okay i did it. I deleted 'status' here: public function getSearchAttributes( $withsub = true ) { $path = 'mshop/subscription/manager/submanagers'; $default = array( 'base', 'status' ); return $this->getSearchAttributesBase( $this->searchConfig, $path, $default, $withsub ); } Now i have "A non-r...
by Travin
13 Jan 2018, 12:35
Forum: Laravel package
Topic: Log files
Replies: 7
Views: 3452

Re: Log files

I don't need \Aimeos\MShop\Subsciption\Manager\Status\Standard . It's calling because of i copied class file from Order manager and then rewrite it partially. It has submanager Status, and call it somewhere here: $this->searchItemsBase( $conn, $search, $cfgPathSearch, $cfgPathCount, $required, $tota...
by Travin
13 Jan 2018, 12:26
Forum: Laravel package
Topic: Log files
Replies: 7
Views: 3452

Re: Log files

I'm trying to create new data domain and calling it from my service provider on the checkout page. The problem is there are no good step-by-step info about it at docs. I'm close to goal. I want to create an aimeos: new-domain command at future for easy creating new data domain. :idea: