6.28梦网首发在
http://www.socool.ca/viewthread.php?tid=4070
dream
首先,本播放器是韩国sarangbi播放器,有完善的后台管理系统,dream把它置入dz后台管理中,在后台设置中可以控制首页是否显示电台播放,为方便管理链接,dream在后台的插件控制一栏添加了电台管理链接。
安装方法:
1.下载压缩包,打开socool.sql,复制全部内容,用dz后台数据库升级方式升级数据库。
2.将indexradio.htm模板放入到dz的模板中,然后在index.htm模板中相应位置进行模板调用,调用语句为
3.安装完后,管理密码为sarangbi,请登录后自行修改
4.电台界面请自行在目录sarangbi\skin\pink下做调整,或google搜索下载其他皮肤。
5.设置db_conn.php
dz后台控制的安装步骤如下:
D2.5 SP1 梦网文章系统后台控制hack
梦网首发
http://www.socool.ca
作者dream
1.后台升级数据库
- INSERT INTO `cdb_settings` VALUES ('allowradio', '0');
复制代码
2.打开admin/settings.php
找到
- $settings['timeformat'] == 'H:i' ? $check24 = 'checked' : $check12 = 'checked';
复制代码
后面添加
- $settings['allowradio'] == '1' ? $checkradio = 'checked' : $checknoradio = 'checked';
复制代码
找到
- showsetting('settings_smcols', 'settingsnew[smcols]', $settings['smcols'], 'text');
复制代码
后面添加
- showsetting('settings_allowradio', '', '', '<input type="radio" name="settingsnew[allowradio]" value="1" '.$checkradio.'> 是 <input type="radio" name="settingsnew[allowradio]" value="0" '.$checknoradio.'> 否</td>');
复制代码
3.打开 templates/default/admincp.lang.php
找到
后面添加
找到
- 'settings_smcols_comment' => '发帖页面每行显示 Smilies 的个数',
复制代码
后面添加
- 'settings_allowradio' =>'设置论坛首页是否显示网络电台',
- 'settings_allowradio_comment' =>'本设置的目的是让论坛首页显示播放网络电台',
复制代码
找到
- 'maxavatarpixel', 'maxpolloptions', 'smcols'
复制代码
后面添加
4.打开admin/menu.php
找到
- $pluginsarray[] = array('name' => $lang['plug_center'], 'url' => 'admincp.php?action=plugin&mod=list');
复制代码
后面添加
- $pluginsarray[] = array('name' => $lang['plug_radio'], 'url' => 'sarangbi/sarangbi_bgm_admin.php');
复制代码
OK!
[ 本帖最后由 dreamnet 于 2005-9-5 01:20 编辑 ] |