- Client and FXServer version: N/A (Portal / Asset Escrow issue)
- What you expected to happen: The updated asset zip file should process, encrypt, and switch to “Active” status within a few minutes to a couple of hours.
- What actually happens: The resource has been completely stuck in the “Processing” stage for more than a week.
- Category of bug: Portal / Asset Escrow System
- Reproducible steps: 1. Go to
portal.cfx.re→ Created Assets. 2. Click Add Asset. 3. Upload the zipped resource. 4. The status remains stuck on “Processing” indefinitely.
Are you sure it’s actually a .zip file with no other archives or documents inside of it? A .rar is not a zip file.
1 Like
Yes, it’s a .zip with no other archives inside. Plus, if it were the wrong file type, it should really reject it with an error message instead of just hanging
What’s the ID of the asset that’s stuck on processing?
I managed to fix it, the issue was that my fxmanifest.lua didn’t have a version defined. It allowed me to upload without throwing an error, which caused it to get stuck
Do you have a copy of the previous manifest? I’m surprised how it was let through.
Here it is:
fx_version 'cerulean'
game 'gta5'
lua54 'yes'
author 'Wari'
description 'Mizime Battlepass UI'
shared_scripts {
'@ox_lib/init.lua',
'game/src/sh/config.lua'
}
client_scripts {
'game/src/cl/main.lua'
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
'game/src/sv/main.lua'
}
ui_page 'web/dist/index.html'
files {
'web/dist/index.html',
'web/dist/favicon.svg',
'web/dist/icons.svg',
'web/dist/mizime-logo.png',
'web/dist/assets/*'
}