Kodi Community Forum
MySql Database Manager (Edit library mysql frodo in PHP) - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Web Interfaces (https://forum.kodi.tv/forumdisplay.php?fid=156)
+---- Thread: MySql Database Manager (Edit library mysql frodo in PHP) (/showthread.php?tid=160501)



MySql Database Manager (Edit library mysql frodo in PHP) - masterziggy - 2013-03-26

Hello, I made a web interface to edit php mysql libraries in version frodo. If you wish, I can upload, only have to edit the Connection string and upload it to a web server that supports PHP, such as Apache

Download from here:

http://dl.dropbox.com/u/14325465/xbmc_database_manager.zip

You can download the php files, the file you are editing is ewcfg9.php in line 42-47: (add your parameters of string connection to your mysql database)

// Database connection info
define("EW_CONN_HOST", 'ip host mysql', TRUE);
define("EW_CONN_PORT", 3306, TRUE);
define("EW_CONN_USER", 'user', TRUE);
define("EW_CONN_PASS", 'password', TRUE);
define("EW_CONN_DB", 'MyVideos75', TRUE);


RE: Edit library mysql frodo in PHP - danmedhurst - 2013-03-26

I'd be interested.


RE: Edit library mysql frodo in PHP - masterziggy - 2013-03-28

Hi, from here:

http://dl.dropbox.com/u/14325465/xbmc_database_manager.zip

You can download the php files, the file you are editing this ewcfg9.php in line 42-47:

// Database connection info
define("EW_CONN_HOST", 'ip host mysql', TRUE);
define("EW_CONN_PORT", 3306, TRUE);
define("EW_CONN_USER", 'user', TRUE);
define("EW_CONN_PASS", 'password', TRUE);
define("EW_CONN_DB", 'MyVideos75', TRUE);


RE: MySql Database Manager (Edit library mysql frodo in PHP) - danmedhurst - 2013-04-01

Thanks.. Have given it a try.. it's a little limited.. for example there are no entries for fanart thumbnails trailers etc.. but it's a good start.

I'll stick to phpmyadmin for now though.