特别提示:本代码至少需百度应用引擎(BAE)中的百度云存储(BCS)支持
安装:
config.php 填写BAE数据库名称
通过平台提供的phpMyAdmin访问
导入baefile.sql或使用install.php
不支持URL Rewrite请自行将no-rewrite-index.php重命名
本地或其它空间大文件上传,修改php.ini配置例如:
post_max_size = 320M
upload_max_filesize = 320M
max_execution_time = 300
max_input_time = 600
memory_limit = 512M
default_socket_timeout = 600
特别说明:
使用非BAE环境请将localhost-config.php重命名为config.php 配置数据库及百度云存储相关
1、请自行修改config.php里的配置
①请将 $dbname 改为你的数据库名字
关于如何查看自己的数据库名,可在BAE后台点击各项菜单,切换到相应的页面查看数据库名。或者在登录BAE的状态下直接打开这个网址http://developer.baidu.com/bae/bdbs/db
②请在 $ak $sk 填写你的密匙对。关于查看自己的密匙对【如果没有则请创建】,请在登录BAE的状态下打开 http://developer.baidu.com/bae/ref/key
2、请在BAE后台手动创建一个bucket
http://developer.baidu.com/bae/bcs/bucket 请注意自行修改config.php里的$bucket
附:
nginx的URL Rewrite规则,请将下面规则加入到站点配置中,重启nginx即可
rewrite ^/page-([0-9]+)/?$ /index.php?page=$1 last;
rewrite ^/del-list-([0-9]+)/?$ /del-list.php?page=$1 last;
rewrite ^/share-([0-9]+)/?$ /share.php?page=$1 last;