webMAN-MOD icon indicating copy to clipboard operation
webMAN-MOD copied to clipboard

Possible errors

Open Dronnis opened this issue 3 years ago • 2 comments

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/.iso

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

Dronnis avatar Sep 30 '21 23:09 Dronnis

+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

aldostools avatar Oct 01 '21 00:10 aldostools

Thanks for the help, I went to fix my code and check the work of my idea.

Dronnis avatar Oct 01 '21 00:10 Dronnis