phpSound is a Social Music Sharing Platform similar with SoundCloud, that allows users to upload their music online and share them with the world.
phpSound是一款社会化音乐分享平台代码,基于著名的SoundCloud,用户可以在线分享自己创作的歌曲或者喜欢的歌曲!
任何注册的用户均可分享,所有访客可在线收听!
reishi做了测试,该程序没有在线安装,安装方法如下:
将文件下载解压缩,将Script目录下的文件全部上传到服务器上,然后建立数据库,打开includes/config.php
<?php
error_reporting(0);
#error_reporting(E_ALL ^ E_NOTICE);
$CONF = $TMPL = array();
// The MySQL credentials
$CONF['host'] = 'localhost';
$CONF['user'] = 'YOURDBUSER';
$CONF['pass'] = 'YOURDBPASS';
$CONF['name'] = 'YOURDBNAME';
// The Installation URL
$CONF['url'] = 'http://yourdomain.com';
// The Notifications e-mail
$CONF['email'] = 'notifications@yourdomain.com';
// The themes directory
$CONF['theme_path'] = 'themes';
$action = array('admin' => 'admin',
'explore' => 'explore',
'stream' => 'stream',
'settings' => 'settings',
'messages' => 'messages',
'track' => 'track',
'playlist' => 'playlist',
'upload' => 'upload',
'recover' => 'recover',
'profile' => 'profile',
'stats' => 'stats',
'pro' => 'pro',
'notifications' => 'notifications',
'search' => 'search',
'page' => 'page',
'welcome' => 'welcome'
);
?>
在第8-11行内设置数据库信息,修改14行为你的网址,修改17行为你的
邮件地址,然后保存上传并覆盖原文件。
然后登录phpmyadmin导入MySQL里的phpSound.sql文件,然后就可以在前台登录了。登录地址在页脚,点击admin,然后使用用户名
admin
密码
pricop2008@yahoo.com
进行登录,登录后在后台的Password选项里设置新管理密码保存即可!
使用中存在的问题:
必须保证cache文件夹和upload文件夹属性为777,Windows服务器无视该项!否则无法上传音乐和图片!
缩略图如果无法正常生成,请在cache里将index.html文件删除即可!
演示地址下载地址镜像下载 (提取码:07a2)
phpSound v1.0.2 – PHP音乐分享平台
评论(0)