The file was not created by Scriptcase version 9

I want look the inventory demo, but got an error. Someone has encountered this mistake ?

sc9_inventorymanagement_project_files.zip
“The file was not created by Scriptcase version 9”
Google drive link

I recently rebuilt VM for ScriptCase and ran in to this issue.

In my case this was caused by 7zip binary not having permissions

Logs showed
sh: 1: /var/www/html/scriptcase/prod/third/zip/linux-amd64/bin/7za: Permission denied

Running
sudo chmod +x /var/www/html/scriptcase/prod/third/zip/linux-amd64/bin/7za

resolved the issue.

Keep in mind this is on ubuntu, command maybe different on distro you have

What effectively happened is binary fails to extract contents of the package being loaded and then code that reads contents fails to locate files it needs returning this error.

It would be nice if check was first made to make sure files extracted and if not correct warning was issued.

Hope this helps someone