PS3 webMAN MOD 1.41.30 Released

A few updates have been made to webMAN Mod since we last reported it. Since just over a week ago developer Aldostools had added some http commands, a great idea, that allows you to rebuild database, enter 'recovery mode' and reboot your PS3. In version 1.41.30, which was released yesterday, you will notice the inclusion of the ps3mapi updates and also some style sheet fixes and improvements.


webmanmodred.png


Changelog 1.41.30:
  • Merged ps3mapi updates to webMAN MOD (2015-03-10) by _NzV_ (commit d12ca0f)
  • Commented CD sector detection for PSX iso on ps3netsvr (only 2352 is supported)
  • Merged ps3mapi updates to webMAN MOD (2015-03-09) by _NzV_ (commit b70eb37)
  • CSS: Improved display on FireFox for Android.
  • CSS: Fixed no-wrapping description on index.ps3
  • Display current IDPS/PSID when no spoofing in /setup.ps3.

Recent Updates
Changelog 1.41.29:
- /rebuild.ps3 - rebuild database
- /recovery.ps3 - pseudo recovery mode (NOR consoles only)
- /reboot.ps3 - hard reboot
- PSID spoofing fixed on 4.70 CEX

Changelog 1.41.28:
- Plugged a memory leak accessing Slider webGUI
- Improved memory usage when games are scanned.
- Reverted the MAX usage to 1280KB.

Changelog 1.41.27:
- Reduced allocated memory in MAX memory usage setting from 1280KB to 1152KB.
- Updater: the files are copied, if the shadow copy fails.

Changelog 1.41.26:
- Added display of Play time & startup time to SELECT+START and /cpursx.ps3
- Use SELECT+START+R2 to display Game ID, Title, play time and more in-Game info

Download: webMAN Mod 1.41.30

Source: brewology

 
Thanks for the feedback... It seems that the fix worked :)

The spoof idps/psid and remove syscalls were removed from the lite edition in this commit:
https://github.com/NzV/webMAN-MOD/commit/7ebf18f30d5b2ef430fa1da42177b1d90b412fab

The removed features are available on psnpatch or SEN Enabler and in the non-lite editions of webMAN MOD.

Is the fix for the show ps2 classic launcher in brewologys 1.41.31
It still doesn't work for me.

Edit: I deleted ps2 classic placeholder r3 and installed ps2 launcher rebug edition which works.
 
Last edited:
I don't understand why r3 didn't work for you. I did my tests with r3 and it worked. AFAIK both ps2 clasic placeholders are the same with different icons.

No idea. I tried to restore default settings and rebuild database but now I cant reactivate my ps3. 80029519 (forgot I deactivated all systems online the other day)
Really don't want to create a new user and lose 8 years worth of auto text entries and screw around with copy protected saves and whatnot so I've given up on it for tonight until I can come up with a better solution.
The sooner my cecha01 I bought arrives the better!

Edit: Might backup my most recent saves n restore from my full backup tomorrow and go from there.
Hopefully my controller will sync wirelessly again then. Maybe something got corrupted... *shrugs*
 
Last edited:
I'm restoring my backup now and will try again in the morning.
Starting to think that this 1.5tb drive might be slowly corrupting itself or something.
Seems to work fine normally but restore file system in safe mode will format it everytime.

Put up a wanted to trade ad on it lol.
Might be more trouble then its worth.
 
[MENTION=89]aldostools[/MENTION] in your all "flags.h"
https://github.com/aldostools/webMAN-MOD/blob/master/flags.h#L23
is commented because of your R2+triangle /\ -> L22
and a syscall table offset is missing but i think it's normal :D

Thanks... wow it's a really weird bug :) EditPlus showed the line 23 uncommented, but GitHub shows it commented. Anyway I replaced characters /\ with the word TRIANGLE to avoid this issue.

Changes: https://github.com/aldostools/webMAN-MOD/commit/037900c9e36c1f69d049ddb921713c0ce730007c

The missing sycall table offset is intentional.
 
[MENTION=89]aldostools[/MENTION]

Two Little issues:

1. I'm on Habib Cobra 4.70, when i press the "cobra toggle" combo, it show "cobra toggle activated" but nothing happens.

2. On PS3MAPI Section everything works fine but it show "Firmware: 446 CEX COBRA | PS3MAPI: webUI v120, Server v111, Core v120 | By NzV" but as i wrote i'm on 4.70.
 
[MENTION=89]aldostools[/MENTION]

2. On PS3MAPI Section everything works fine but it show "Firmware: 446 CEX COBRA | PS3MAPI: webUI v120, Server v111, Core v120 | By NzV" but as i wrote i'm on 4.70.

I think that's error in source code of cobra itself, habib sometimes forgets to edit some codes, webMAN shows my version [I'm not using HABIB] correctly.

hxug2sxiru6rcxdzg.jpg


There is nothing wrong with detection code itself.
 
[MENTION=89]aldostools[/MENTION]

Two Little issues:

1. I'm on Habib Cobra 4.70, when i press the "cobra toggle" combo, it show "cobra toggle activated" but nothing happens.

2. On PS3MAPI Section everything works fine but it show "Firmware: 446 CEX COBRA | PS3MAPI: webUI v120, Server v111, Core v120 | By NzV" but as i wrote i'm on 4.70.

1. I don't know why habib like to put stage2.bin on different locations each time that he releases a new CFW.... it's really annoying (the last time was a "shity" folder)... This time he decided to use:

/dev_flash/habib/cobra/stage2.cex

but stage2 always has been defined to be in /dev_blind/sys/stage2.bin

Maybe habib could fix that in future releases or maybe he will release his own forks of webMAN, because I do not have plans to support non standard locations for any particular CFW because a dev wants his name written in dev_flash.

The path is clearly defined in webMAN:
Code:
#define SYS_COBRA_PATH		"/dev_blind/sys/"

2. There should be some issue detecting the FW version in the opcode PS3MAPI_OPCODE_GET_FW_VERSION of PS3MAPI. Maybe you're using an old version of PS3MAPI or as Joonie said it could be an issue in Cobra.

Code:
	int versionfw = 0;
	if (syscall8_state>=0) {system_call_2(8, SYSCALL8_OPCODE_PS3MAPI, PS3MAPI_OPCODE_GET_FW_VERSION); versionfw = (int)(p1);}

	sprintf(templn, "<hr color=\"#FF0000\"/>"
						"Firmware: %X %s | PS3MAPI: webUI v%X, Server v%X, Core v%X | By NzV", versionfw, fwtype, PS3MAPI_WEBUI_VERSION, PS3MAPI_SERVER_VERSION, version);

As you can see in the code, the FW version displayed is obtained directly from PS3MAPI... it could be fixed easily changing the variable to c_firmware, but the issue would still remain.

So it's better that [strike]_NzV_[/strike] Habib review the issues...
 
Formatted and reloaded my main backup last night.
Fortunately activated again fine after the restore.

webman .31 is working with the r3 placeholder on my system now so something must of been corrupted.

Think I'll extract the 500gb hdd out of my external for the ps3 and see if I have better luck with the 1500 on the cecha01 when it shows up.
If not it can go in my sons ps4 :P
 
Last edited:
Formatted and reloaded my main backup last night.
Fortunately activated again fine after the restore.

webman .31 is working with the r3 placeholder on my system now so something must of been corrupted.

Think I'll extract the 500gb hdd out of my external for the ps3 and see if I have better luck with the 1500 on the cecha01 when it shows up.
If not it can go in my sons ps4 :P
put the 1500 in your external to replace the 500
 
2. There should be some issue detecting the FW version in the opcode PS3MAPI_OPCODE_GET_FW_VERSION of PS3MAPI. Maybe you're using an old version of PS3MAPI or as Joonie said it could be an issue in Cobra.
I agree with [MENTION=29]Joonie[/MENTION] as I downgraded back to REBUG 4.65.2 from Habib 4.70 Starbucks and installed PS3mapi, it shows CFW version correctly it's only incorrect on Habib 4.70 Starbucks
 
I agree with [MENTION=29]Joonie[/MENTION] as I downgraded back to REBUG 4.65.2 from Habib 4.70 Starbucks and installed PS3mapi, it shows CFW version correctly it's only incorrect on Habib 4.70 Starbucks

In that case, it seems that habib has some to-do's... both issues reported by Metion are related only to 4.70 HABIB Cobra v1.0.


Here is a new test build for PS3 phat owners... In this build I have added scanning of content stored on /dev_sd, /dev_ms, /dev_cf.
http://aldostools.org/temp/test/webftp_server.sprx
 
Holy crap I'm loving the clean system. 500Gb drive works brilliantly, can restore file system now without it detecting as corrupt and forcing a format.
Shame my internet sucks or I'd leave it and just re download my psn games.
So nice having no singstar or Netflix or all this other garbage that is normally installed with no way to delete.
 

Featured content

Trending content

Back
Top