All your above fixes are already done in the zip...
struja wrote: [View Post]DWho wrote: [View Post]
the upload image uses mg_themes/images/ice/lang_english/upload.gif... if you are using another theme then you may have to make the image..
I believe that problem is in music_cat.php on line 522
Should be
the line for the image is already in music_cat.php
Toa wrote: [View Post]When i look in the install file it says..
Files To Edit: 7
## viewonline.php
## admin/index.php
## includes/constants.php
## includes/page_header.php
## language/lang_english/lang_main.php
## templates/mg_themes/overall_header.tpl
## templates/mgthemes/mgthemes.cfg
But in the insatll file there is no edits for..
## viewonline.php
## admin/index.php
## templates/mg_themes/overall_header.tpl
## templates/mgthemes/mgthemes.cfg
For my blank pages in ACP.could it be due to the fact is that i have not done the edit for admin/index.php file seeing as the edit is not there?
Spoiler: [ Show ]Spoiler: [ Hide ]################################################################
## This MOD is released under the GPL License.
################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
################################################################
#
#-----[ OPEN ]--------------------------------------------------
#
includes/constants.php
#
#-----[ FIND ]--------------------------------------------------
#
// User Levels <- Do not change the values of USER or ADMIN
define('DELETED', -1);
define('ANONYMOUS', -1);
#
#-----[ AFTER, ADD ]--------------------------------------------
#
define('MEDIA_MOD_PATH', 'includes/media_mod/');
define('MEDIA_FILES_PATH', 'includes/media_mod/upload/');
define('SONG_MUSIC_PATH', 'includes/media_mod/upload/song_image/');
include_once($phpbb_root_path . MEDIA_MOD_PATH . 'music_constants.' . $phpEx);
#
#-----[ OPEN ]--------------------------------------------------
#
includes/page_header.php
#
#-----[ FIND ]--------------------------------------------------
#
'U_GROUP_CP' => append_sid('groupcp.' . $phpEx),
#
#-----[ AFTER, ADD ]--------------------------------------------
#
'L_MUSIC' => $lang['Music'],
'U_MUSIC' => append_sid('music.'.$phpEx),
#
#-----[ OPEN ]--------------------------------------------------
# also for other templates
templates/mg_themes/nav_quick_links.tpl
#
#-----[ FIND ]--------------------------------------------------
#
<tr>
<td width="8" align="left">{IMG_NAV_MENU_SEP}</td>
<td class="genmed" align="left"><a href="{U_ALBUM}">{L_ALBUM}</a></td>
</tr>
#
#-----[ AFTER, ADD ]--------------------------------------------
# this step will add a link into your side menu
<tr>
<td width="8" align="left">{IMG_NAV_MENU_SEP}</td>
<td class="genmed" align="left"><a href="{U_MUSIC}">{L_MUSIC}</a></td>
</tr>
#
#-----[ OPEN ]--------------------------------------------------
# also for all other language packs
language/lang_english/lang_main.php
#
#-----[ FIND ]--------------------------------------------------
#
//
// Errors (not related to a
// specific failure on a page)
//
$lang['Information'] = 'Information';
$lang['Critical_Information'] = 'Critical Information';
#
#-----[ BEFORE, ADD ]-------------------------------------------
#
$lang['Music'] = 'Media Center';
#
#-----[ COPY ]--------------------------------------------------
# Copy the following file and folder to root folder on your host
copy root/*.php to *.php
copy root/admin/*.php to admin/
copy root/music_box/*.* to music_box/
copy root/language/lang_english/*.php to language/lang_english/
copy root/templates/mg_themes/*.* to templates/mg_themes/
copy root/templates/common/ACP*.* to templates/common/ACP/
#
#-----[ ACTION ]-----------------------------------------------
# Require for Unix-like host (you can use your FTP client to do this)
#
# CHMOD 777 media_mod/upload
# CHMOD 777 media_mod/upload/song_image
#
#-----[ SQL ]--------------------------------------------------
# This Music Online will add 5 tables into your database.
#
#
# If you do not want to run music_db_install.php you can run the SQL
# queries manually in music_mysql.sql
#
#
#
################################################################
################################################################
#
#-----[ HAVE FUN! ALL MY USERS ]--------------------------------
#
# EoM
The file edits that are missing are basically to show you were your members are on your site.... I felt you they were not needed and just waste resources..

