Update: Bug fix v0.32 has been released, the developer request that v0.30 user's update as there was a bug discovered.(see update tab)/ Update 2: A bug was squashed and version v0.33 is now available (See "Update 2" tab for additional details) Update 3: (see Update 3 tab for additional details)
Developer Francesco Fazio has a new release for PS3 Custom Firmware user's with the release of PS3 Game Manager v0.30 (Beta). PS3GM is in the developer words "a completely new and revolutionary managers for the Playstation 3", time will tell if user's agree with that assessment. Using PHP and Javascript the software provides a "LAMP environment" some remote features using webMAN's API but while adding several other features in what the developer ambitiously describes as 'administration of your games and your console a completely new experience", Checkout full project details and view a Live Demo of this release in action..
What do you think of this release? Let us know in the comments below..
Translated Release Quote (via Ps3Ita)
About: PS3 Game Manager
Features
Requirements
How to Install PS3 Manager
UPDATE 1
UPDATE 2
UPDATE 3
-
Hello to all,
I am the developer of PS3 New Game Manager and are happy to announce I finished all operations on the code, and I completed the documentation thus making 'the software now available for download.
E 'gives me great pleasure to contribute to the community' PS3 with my application and I am sure that like me you will find it really useful.
PS3 Games Manager v0:30 (beta), is a completely new and revolutionary managers for the Playstation 3.
The software written in PHP and Javascript contains a number of new features that will make the 'administration of your games and your console a completely new experience
You can visit the website to 'address http://ps3-demo.fazionet.com/ .
On the site and 'you can also use the demo software and test its functions.
PS3 Game Manager and 'available for download on GitHub, find the link on the download page on the site.
Please let me know what you think and open requests for evenutali bugs or problems with l 'installation.
Thanks so much,
Francesco Fazio
-
PS3 Game Manager v0.30 (BETA)
via ReadMe
: "PS3 Games Manager version 0.30 (beta) is a totally new and revolutionary manager application for the Playstation 3, that features a lot of new functions and makes managing your games a totally new experience.
The software is written in PHP and Javascript, runs on Apache webserver (or any other webserver supporting PHP and running on Linux) and uses Webman APIs to control the PS3 remotely from any computer browser and any mobile device.
It completely eliminates the need to use Webman or Multiman with the joypad to launch games from the PS3 itself.
A version that will be able to run on a Windows webserver supporting PHP will be also released soon." -
A brief list of the features is:- Automatic recognition of the game ISO fle and automatic download of the CD cover and all the game details from Metacritic (Game name, Release date, Score, Description, Publisher, Developer, Category)
- Very nice web graphic interface and extremely easy to use.
- Launch and Umount games straight from the web interface.
- Reboot and Shutdown the PS3 from the web interface.
- Enable disable game data for external USB drive connected to the PS3.
- Monitors and displays CPU temp, Internal PS3 hd free space, USB external PS3 hd free space, Total number of games ISOs added.
- Automatically keeps track of every time you play a game and counts the times adding a IOS style badge to the CD cover displayed on the web page search results.
- Ajax js interface to search for game name, description, category, publisher, developer in real time.
- Order results by Metacritic Score, Last played Games, Date Added Games, Games Never Played Yet, Name and Random selection.
- Easy configuration and installation.
- Voice recognition (English only so far).
- Lots more features to come.
-
Requirements:
- LAMP environment (Linux+MySQL+Apache+PHP) in a VM or on a real machine.
- Network share folder containing the PS3 ISO files and PS3Netsrv++ to share the files with the PS3.
- PS3 modded and Webman installed.
- PS3 accessible via the internal network.
- A lot of joy of playing
-
HOW TO INSTALL PS3 MANAGER
[ PLAYSTATION 3 ]
- Install WebMan on the PS3 (tested on version 1.43.16).
- Enable the PS3MAPI from webMan setup settings.
- Configure webMan under Setup to use the network share that we will share later:
Change IP to the IP Address of the machine running PS3NetSrv++ and sharing the ISOs files to the PS3.
[ LINUX WEB SERVER ]Install PS3NetSrv++:
- Follow the steps to compile it that are on the website on GitHub and share the directory that contains the PS3 ISOs files.
- Once the PS3NetSrv++ is installed launch it like follows: For example I run PS3NetSrv++ from the command line like that:
Code:
root@linuxbox:~# ./ps3netsrv-- /path/to/your/ps3/games/PS3/ & - The typical structure of a directory to be used by PS3NetSrv++ is:
- drwxrwxrwx 2 99 nogroup 4096 Feb 7 03:12 BDISO
- drwxrwxrwx 2 99 nogroup 4096 Feb 7 03:12 DVDISO
- drwxrwxrwx 2 99 nogroup 4096 Feb 7 03:12 GAMES
- drwxrwxrwx 2 99 nogroup 4096 Feb 7 03:12 MUSIC
- drwxrwxrwx 2 99 nogroup 4096 Feb 7 03:12 PICTURE
- drwxrwxrwx 2 99 nogroup 4096 Feb 7 03:13 PKG
- drwxrwxrwx 2 99 nogroup 4096 Apr 6 12:05 PS2ISO
- drwxrwxrwx 2 99 nogroup 81920 Jun 22 09:02 PS3ISO
Where PS3ISO is the directory containing the PS3 Games ISOs files.
- drwxrwxrwx 2 99 nogroup 4096 Feb 7 03:12 BDISO
- When creating the Games ISOs for the PS ISO Tools remember the format for the ISO file to be used by PS3 Manager is like the following example:
- YAKUZA_3_[BLES00834].iso
- Dont use spaces in the game name and leave the unique game code (for example [BLES00834]) inside the square brackets. This is will be used by the scripts that you will add to the crontab to recognize the game and to download cover image and all the game details from Metacritic.
*** VERY IMPORTANT ***- The directory containing the ISOs must be accessible in reading and writing by PS3 Manager. In order to do this issue the following command:
Code:
root@linuxbox:~# ln -s /path/to/isos/files/PS3/PS3ISO /path/to/www/ps3-manager/html/covers root@linuxbox:~# chmod -R 755 /path/to/isos/files/PS3/PS3ISO
- Edit the file config.php as it follows:
Edit the file mysql_conf.php as it follows:Code:// PS3 IP ADDRESS (Put the LAN IP Address of your PS3) $ps3_ip = "PS3_IP_ADDRESS"; // PS3 SHARE WHERE THE ISOs ARE (shared also with PS3NetSrv++) $ps3_folder = "/path/to/isos/files/PS3/PS3ISO"; // FORCE EXTERNAL GAME DATA OR DISABLE IT // Enable it only if you have an external USB drive connected to the PS3 that you use to install the GameData files. // Default is "N". $game_data_force = "N"; // WWW LOCAL PATH (The WWW path where your PS3 Manager files are) $local_path = "/path//to/www/ps3-manager/html";
Code:// MYSQL Server Details $mysql_host = "MYSQL_SERVER_IP"; $mysql_user = "MYSQL_USER"; $mysql_password = "MYSQL_PASSWORD"; $mysql_db = "ps3-games"; <---- change this only if you want to call the database in a different way
- The MySQL server can be installed on the same box or in another box reachable by your web server.
- I suggest (not required) also the installation of PHPMyAdmin. This is in case you might need to correct a game record in the database when something did not work the way you want.
- You will find the file ps3-games.sql inside the directory "sql".
- Import the sql file with the following command:
Code:root@linuxbox:~# mysqldump -h MYSQL_SERVER_IP -u USER -pPASSWORD ps3-games < ps3-games.sql
- In order to run automatic commands and to add automatically a new game present in the ISOs PS3 Manager needs to have the following crons added to the linux box.
Issue the following command:
Once it is opened edit the following lines on a text editor and paste into it:Code:root@linuxbox:~# crontab -e
Code:*/2 * * * * /usr/bin/php /path/to/www/ps3-manager/html/covers_resize.php > /dev/null 2>&1 */2 * * * * /usr/bin/php /path/to/www/ps3-manager/html/covers_downloader.php > /dev/null 2>&1 */2 * * * * /usr/bin/php /path/to/www/ps3-manager/html/sql_import.php > /dev/null 2>&1 */5 * * * * /usr/bin/php /path/to/www/ps3-manager/html/ps3_status_checker.php > /dev/null 2>&1 */10 * * * * /usr/bin/perl -le 'map { $sum += -s } @ARGV; print $sum' -- /path/to/isos/files/PS3/PS3ISO/*.iso > /path/to/www/ps3-manager/html/glob_iso_size.txt 2>&1 */2 * * * * /usr/bin/php /path/to/www/ps3-manager/html/date_conv.php > /dev/null 2>&1
-
UPDATE
francesco2013 released v0.32
- To everybody that downloaded the previous version PLEASE DOWNLOAD THIS ONE and delete the previous one ! There were some bugs I have fixed now and the previous release simply doesn't work. Sorry for this I haven't notice them before.
-
Update 2 (June 25)
Hello,
I have noticed a little bug in the mobile version that it has been now fixed.
Please download again mobile.html, games_mobile.html, about.html and games.html from the main branch and overwrite those files into your web directory or download again the new release.
Thanks.
Francesco
-
v0.34
- Solved a small bug with the mobile version of the website.
- (NEW) Added voice search to the mobile version.
- Some little styling of the html.
- Live Demo: ps3-demo.fazionet.com/index.php
- Source Code & Download : github.com/francesco2013
Last edited: