mirror of
https://github.com/adminsyspro/proxcenter-ui.git
synced 2026-04-25 06:25:57 +03:00
[GH-ISSUE #106] [Bug]: White Labeling image upload is broken (?) #133
Labels
No labels
bug
enhancement
feature-request
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/proxcenter-ui#133
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @nothing-fr on GitHub (Mar 10, 2026).
Original GitHub issue: https://github.com/adminsyspro/proxcenter-ui/issues/106
Bug Description
A picture is worth a thousand words :
Steps to Reproduce
Expected Behavior
Actual Behavior
ProxCenter Version
7eb7a1bProxmox VE Version
9.1.6
Browser
Version 145.0.7632.116 (Build officiel) (64 bits)
Logs / Screenshots
No response
@adminsyspro commented on GitHub (Mar 10, 2026):
Fixed in
ce34cb0.The issue was that uploaded images were saved to
public/uploads/branding/and served as static files. Next.js doesn't serve files added topublic/at runtime in production (the static manifest is built at build time), so the images were never accessible.Fix: Uploads now go to
data/uploads/branding/and are served through a dynamic API route (/api/v1/settings/branding/uploads/[filename]). Existing URLs stored in the database are automatically migrated on read, so no re-upload is needed.This will be available in the next build. Thanks for the report!