Algorithman

Results 22 comments of Algorithman
trafficstars

Should also fix #998, X-Forwarded-Prefix is supported by aspnet core 8

Sorry to bother again: On install I get endless redirects to https://my.domain/shop/install. More debugging: In `InstallationStarter.cs` line 50 I get for `context.Request.Path.Value`: /shop/install - correct `context.Request.PathBase.Value`: /shop - correct but...

nginx config: ``` location ~ ^/shop { client_max_body_size 10M; proxy_pass http://127.0.0.1:5000; proxy_set_header X-Original-URL $request_uri; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection keep-alive; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;...

Sadly no. Since the path is still `/shop/install` and not `/install`, the path check never fits. I removed the if clause for testing and directly called `/shop/install`. But then I'm...

Thx :) I'll remove my PR

That's why I only asked for export/import and listing of the stories :)

~~A simple retry mechanism in `UpdateSlug` or locking with a static object (on controller level) could be enough to fix this.~~ ~~The same problem exists in every Post method which...

I'll try it on friday probably. Need to fix up some other stuff first. As for the code itself (after a quick look) it will work with 2 concurrent threads,...

I was merely asking why it wasn't mapped for both. Wishlist gets the quantityunit mapping, but minishoppingcartmodel does not.

Bit background: I added my logo and favicon via SampleMediaUtility.CreateMediaFileAsync which does not set the pixel width/height in ApplyToStorage since it throws in GetPixelSizeFromSvg so it remains NULL. This in...