Search found 28 matches

by Wall0fDeath
28 Nov 2023, 13:34
Forum: Laravel package
Topic: Customer's email change on his profile
Replies: 2
Views: 1769

Customer's email change on his profile

Php : 8.2 Os: Debian GNU/Linux 11 (Bullseye) Aimeos 22.10.12 Laravel 9.52.16 Dear Aimeos Team, I have a task to make the customer's email and password changeable. As I say the remember your password part is working, so it can be used for the pw, but what about the email address? On the admin page I ...
by Wall0fDeath
28 Nov 2023, 13:25
Forum: Laravel package
Topic: Losing session at basket modification
Replies: 3
Views: 20900

Re: Losing session at basket modification

Thank you for your answer! The problem was the following: I added session creation for api midlewares to be able to use the jsonadm calls. (bc. of the csrf protection) That made some problems in the force... So i added the same routes with different middlewares and different names, so they can live ...
by Wall0fDeath
16 Oct 2023, 10:20
Forum: Laravel package
Topic: Losing session at basket modification
Replies: 3
Views: 20900

Re: Losing session at basket modification

Nginx conf relevant part for php: location ~ \.php$ { satisfy any; ## -- allowed ip addresses -- allow 10.13.248.0/24; allow 192.168.254.0/24; deny all; auth_basic "Restricted"; auth_basic_user_file /etc/nginx/.htpasswd-devel; include snippets/my-fastcgi-php.conf; fastcgi_intercept_errors ...
by Wall0fDeath
16 Oct 2023, 09:35
Forum: Laravel package
Topic: Losing session at basket modification
Replies: 3
Views: 20900

Losing session at basket modification

Php : 8.2 Os: Debian GNU/Linux 11 (Bullseye) Aimeos 22.10.12 Laravel 9.52.16 Dear Aimeos Team, I have a weird problem when I try to run the shop with "nginx and php 8.2 fpm": - When I click to add a product to the basket(or any basket action, or checkout), it does, but i will lose my sessi...
by Wall0fDeath
04 Sep 2023, 09:21
Forum: Laravel package
Topic: JsonAdm Problem
Replies: 3
Views: 17450

Re: JsonAdm Problem

Thank your for your answer! It works fine now. :))
If you don't recommend using jsonadm for rest api calls because of the security risks, than what would you recommend to use to manage products etc. from could erp?
by Wall0fDeath
01 Sep 2023, 09:16
Forum: Laravel package
Topic: JsonAdm Problem
Replies: 3
Views: 17450

JsonAdm Problem

Php : 8.2 Os: Debian GNU/Linux 11 (Bullseye) Aimeos 22.10.12 Laravel 9.37.0 Dear Aimeos Team, I have a task to send data(product, price, stock) from cloud erp to the shop and I have to give back the orders and the products, customers etc. I could make the login part, api tokens etc. I changed middle...
by Wall0fDeath
26 May 2023, 12:00
Forum: Laravel package
Topic: User cache problem
Replies: 2
Views: 2097

Re: User cache problem

Thank you! It saved my day! ^^
by Wall0fDeath
26 May 2023, 10:24
Forum: Laravel package
Topic: User cache problem
Replies: 2
Views: 2097

User cache problem

Php : 8.2 Os: Debian GNU/Linux 11 (Bullseye) Aimeos 22.10.12 Laravel 9.37.0 Hi! :)) I have a task, to make a review with more functions. ( send email after some hours, upload images, give order reviews not just product etc... ) I've managed to do most parts, but I had to make a page, where they can ...
by Wall0fDeath
26 May 2023, 10:07
Forum: Laravel package
Topic: Abandoned Basket Notification
Replies: 4
Views: 3416

Re: Abandoned Basket Notification

Thank you!

This part works fine now. :))
I managed to make it with a little change:

namespace Aimeos\MShop\Order\Manager\Base\Decorator;

class Abandoned
extends \Aimeos\MShop\Common\Manager\Decorator\Base
{
...
}
by Wall0fDeath
30 Mar 2023, 15:29
Forum: Laravel package
Topic: Abandoned Basket Notification
Replies: 4
Views: 3416

Re: Abandoned Basket Notification

Php : 8.2 Os: Debian GNU/Linux 11 (Bullseye) Aimeos 22.10.12 Laravel 9.37.0 Hi! Thank you for your previous answer! I am about to finish the extension. I almost finished the functionality for the notification, but I have a problem with the install and the . // I had to load the old seassion basket/o...