Control Panel Assets views not loading. No "source" url param #15574
-
On my live server I'm having trouble loading assets in the admin assets view The If I change the view (display as thumbs, display as cards, display as table) the asset list shows up, but it's all the assets, not filtered by volume. Everything works as expected in the local instance running on dev. All of the other CP routes (entries, users, etc) work as expected Has anyone run into this before? Any ideas on how to fix it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Turns out this was caused by the chunked file upload plugin. Right now I'm trying to figure out why it works fine in one env and not in the other. For Posterity: This was an issue with Cloudflare and Chunked Uploads.
We disabled the CF analytics script for the control panel subdomain and we're good to go. |
Beta Was this translation helpful? Give feedback.
Turns out this was caused by the chunked file upload plugin. Right now I'm trying to figure out why it works fine in one env and not in the other.
For Posterity:
This was an issue with Cloudflare and Chunked Uploads.
<body>
Craft.Uploader
at what it assumes right before the end of<body>
<script>
element and fetched viadocument.scripts[document.scripts.length - 1]
... only now the plugin script is not the last one on the page, the Cloudflare script is.We disabled the CF…