-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stuck on Loading Database after adding urls #1
Comments
How did you insert the url? Urls must be appended at the end and not in the middle. You added one at index 111, which shifts all other indices and thus invalidates their links. Maybe there is your problem already. Also, you dont need to push it github if you want to test it locally, just run |
Tip: try it with a very small archive first. Then you wont wait so long until it finishes. ... And you probably need to delete your changes and start again from my branch |
ok, nevermind my last two comments. The structure is as intended, I just run it myself and it ran without errors on the first url ./ipa_archive.py add https://archive.org/download/geometry-dash-ios-archive
./ipa_archive.py run
./tools/image_optim.sh
./ipa_archive.py export json Which produced 48 changes. So I guess the second url produced errors. Can you reset |
Well when I ran the commands it outputted this
Ok after that as I was looking into it I found the solution to the issue, and I don't know why it happened. In the ipa.json file, on the last row it ends with ],] and after deleting the Also, the image_optim.sh script doesn't seem to work, basically repeats: |
By the way, the issue with the comma seems to be reintroduced every time the json is updated |
What system you are using? The fp.write(json.dumps(entry, separators=(',', ':')) + ',\n')
fp.seek(max(fp.tell(), 3) - 2)
fp.write(']') I assume on your system the Regarding the |
fixed with 34fa43a |
I forked this repo and followed the instructions on adding urls, and I added a large archive.org ipa page. However, after pushing and trying to open in github pages, the page just gets stuck on loading database.
Any solution to this?
The text was updated successfully, but these errors were encountered: