webMAN-MOD
webMAN-MOD copied to clipboard
Possible errors
It all started with the fact that I wanted to do something similar to LastGame14 by deank, but only for WebMan, I would fix the problems myself and send Pull requests, but alas, so far my knowledge in C/C++/ASM and so on is not enough
the command does not work
GET /mount.ps3/unmount;/mount.ps3/dev_hdd0/PS3ISO/
As I understand it, GET /mount.ps3/unmount cannot unload a running game, but only unloads games or applications launched by WebMan itself
the command does not work GET /play.ps3/dev_hdd0/tmp/ if the game is running, any requires unloading the game
The /dev_hdd0/onxmb.bat script content
beep1
/mount.ps3/dev_hdd0/PS3ISO/<file>.iso
del /dev_hdd0/onxmb.bat
the last command does not delete the script after its completion what makes it impossible for many scenarios of this script to work
sorry for my english translated by dictionary
+webMAN MOD uses a safety check that prevents mounting games if a game is playing. This is to prevent accidental mount. To bypass this check you should use the web command /mount_ps3 instead of /mount.ps3
When an ISO or folder is mounted, the previous game is unmounted automatically. So there is not need for GET /mount.ps3/unmount;/mount.ps3/dev_hdd0/PS3ISO/game.iso GET /mount.ps3/dev_hdd0/PS3ISO/game.iso should be enough.
/play.ps3 was originally designed to be executed from XMB For .bat files you can play them also using /mount_ps3
if del /dev_hdd0/onxmb.bat is not working, you should check the chmod attributes of the file. also you could try using /delete.ps3/dev_hdd0/onxmb.bat
Thanks for the help, I went to fix my code and check the work of my idea.