├── LICENSE ├── README.md ├── readme.txt ├── rewrite ├── .htaccess ├── httpd.ini └── web.config └── upload ├── admin.php ├── attachment ├── backup │ └── index.html ├── index.html ├── logo.png ├── nan_nopic.jpg ├── nopic.gif ├── nv_nopic.jpg └── other │ └── index.html ├── cache ├── .htaccess ├── cscms_time │ ├── day.txt │ ├── home-day.txt │ ├── home-month.txt │ ├── home-week.txt │ └── time.txt ├── index.html ├── session │ └── index.html └── sql │ └── index.html ├── cscms ├── .htaccess ├── app │ ├── .htaccess │ ├── config │ │ ├── autoload.php │ │ ├── config.php │ │ ├── constants.php │ │ ├── database.php │ │ ├── doctypes.php │ │ ├── foreign_chars.php │ │ ├── hooks.php │ │ ├── index.html │ │ ├── memcached.php │ │ ├── migration.php │ │ ├── mimes.php │ │ ├── profiler.php │ │ ├── redis.php │ │ ├── routes.php │ │ ├── smileys.php │ │ └── user_agents.php │ ├── core │ │ ├── CS_Controller.php │ │ ├── CS_Input.php │ │ ├── CS_Lang.php │ │ ├── CS_Loader.php │ │ ├── CS_Router.php │ │ ├── CS_URI.php │ │ └── index.html │ ├── helpers │ │ ├── common_helper.php │ │ ├── index.html │ │ ├── link_helper.php │ │ └── vod_helper.php │ ├── hooks │ │ └── index.html │ ├── index.html │ ├── language │ │ ├── english │ │ │ ├── dance │ │ │ │ ├── admin │ │ │ │ │ └── admin_lang.php │ │ │ │ └── plub_lang.php │ │ │ └── sys │ │ │ │ ├── admin │ │ │ │ ├── admin_basedb_lang.php │ │ │ │ ├── admin_blog_lang.php │ │ │ │ ├── admin_check_lang.php │ │ │ │ ├── admin_collect_lang.php │ │ │ │ ├── admin_field_lang.php │ │ │ │ ├── admin_gbook_lang.php │ │ │ │ ├── admin_home_lang.php │ │ │ │ ├── admin_html_lang.php │ │ │ │ ├── admin_label_lang.php │ │ │ │ ├── admin_lang.php │ │ │ │ ├── admin_links_lang.php │ │ │ │ ├── admin_login_lang.php │ │ │ │ ├── admin_mail_lang.php │ │ │ │ ├── admin_msg_lang.php │ │ │ │ ├── admin_pay_lang.php │ │ │ │ ├── admin_pl_lang.php │ │ │ │ ├── admin_plugins_lang.php │ │ │ │ ├── admin_setting_lang.php │ │ │ │ ├── admin_share_lang.php │ │ │ │ ├── admin_skin_lang.php │ │ │ │ ├── admin_sms_lang.php │ │ │ │ ├── admin_sys_lang.php │ │ │ │ ├── admin_tags_lang.php │ │ │ │ ├── admin_upgrade_lang.php │ │ │ │ ├── admin_upload_lang.php │ │ │ │ └── admin_user_lang.php │ │ │ │ ├── cscms_lang.php │ │ │ │ ├── home_lang.php │ │ │ │ ├── pay_lang.php │ │ │ │ ├── plub_lang.php │ │ │ │ └── user_lang.php │ │ ├── index.html │ │ └── zh_cn │ │ │ ├── dance │ │ │ ├── admin │ │ │ │ └── admin_lang.php │ │ │ └── plub_lang.php │ │ │ └── sys │ │ │ ├── admin │ │ │ ├── admin_basedb_lang.php │ │ │ ├── admin_blog_lang.php │ │ │ ├── admin_check_lang.php │ │ │ ├── admin_collect_lang.php │ │ │ ├── admin_field_lang.php │ │ │ ├── admin_gbook_lang.php │ │ │ ├── admin_home_lang.php │ │ │ ├── admin_html_lang.php │ │ │ ├── admin_label_lang.php │ │ │ ├── admin_lang.php │ │ │ ├── admin_links_lang.php │ │ │ ├── admin_login_lang.php │ │ │ ├── admin_mail_lang.php │ │ │ ├── admin_msg_lang.php │ │ │ ├── admin_pay_lang.php │ │ │ ├── admin_pl_lang.php │ │ │ ├── admin_plugins_lang.php │ │ │ ├── admin_setting_lang.php │ │ │ ├── admin_share_lang.php │ │ │ ├── admin_skin_lang.php │ │ │ ├── admin_sms_lang.php │ │ │ ├── admin_sys_lang.php │ │ │ ├── admin_tags_lang.php │ │ │ ├── admin_upgrade_lang.php │ │ │ ├── admin_upload_lang.php │ │ │ └── admin_user_lang.php │ │ │ ├── cscms_lang.php │ │ │ ├── home_lang.php │ │ │ ├── pay_lang.php │ │ │ ├── plub_lang.php │ │ │ └── user_lang.php │ ├── libraries │ │ ├── Cache.php │ │ ├── Caiji.php │ │ ├── Card.php │ │ ├── Code.php │ │ ├── Cookie.php │ │ ├── Csapp.php │ │ ├── Csup.php │ │ ├── Cszip.php │ │ ├── Denglu.php │ │ ├── Ip.php │ │ ├── Mp3clip.php │ │ ├── Mp3file.php │ │ ├── Pinyin.php │ │ ├── Slpic.php │ │ ├── Smstel.php │ │ ├── Watermark.php │ │ ├── Xsshtml.php │ │ └── index.html │ ├── models │ │ ├── Csadmin.php │ │ ├── Csbackup.php │ │ ├── Cscache.php │ │ ├── Csdb.php │ │ ├── Csemail.php │ │ ├── Csskins.php │ │ ├── Cstpl.php │ │ ├── Csuser.php │ │ └── index.html │ └── third_party │ │ └── index.html ├── config │ ├── dance │ │ ├── bind.php │ │ ├── day.txt │ │ ├── install.php │ │ ├── jumpurl.txt │ │ ├── menu.php │ │ ├── month.txt │ │ ├── rewrite.php │ │ ├── routes.php │ │ ├── setting.php │ │ ├── site.php │ │ ├── uninstall.php │ │ └── week.txt │ ├── news │ │ ├── day.txt │ │ ├── install.php │ │ ├── menu.php │ │ ├── month.txt │ │ ├── rewrite.php │ │ ├── routes.php │ │ ├── setting.php │ │ ├── site.php │ │ ├── uninstall.php │ │ └── week.txt │ ├── pic │ │ ├── day.txt │ │ ├── install.php │ │ ├── menu.php │ │ ├── month.txt │ │ ├── rewrite.php │ │ ├── routes.php │ │ ├── setting.php │ │ ├── site.php │ │ ├── uninstall.php │ │ └── week.txt │ ├── singer │ │ ├── day.txt │ │ ├── install.php │ │ ├── menu.php │ │ ├── month.txt │ │ ├── rewrite.php │ │ ├── routes.php │ │ ├── setting.php │ │ ├── site.php │ │ ├── uninstall.php │ │ └── week.txt │ ├── sys │ │ ├── CS_Memcached.php │ │ ├── CS_Redis.php │ │ ├── Cs_Config.php │ │ ├── Cs_Cscms.php │ │ ├── Cs_DB.php │ │ ├── Cs_Denglu.php │ │ ├── Cs_Domain.php │ │ ├── Cs_Field.php │ │ ├── Cs_Ftp.php │ │ ├── Cs_FtpSm.php │ │ ├── Cs_Home.php │ │ ├── Cs_Mail.php │ │ ├── Cs_Menu.php │ │ ├── Cs_Oss.php │ │ ├── Cs_Pay.php │ │ ├── Cs_Qiniu.php │ │ ├── Cs_Rewrite.php │ │ ├── Cs_Sms.php │ │ ├── Cs_Ucenter.php │ │ ├── Cs_Upyun.php │ │ ├── Cs_User.php │ │ ├── Cs_Version.php │ │ ├── Cs_Water.php │ │ └── index.html │ └── vod │ │ ├── bind.php │ │ ├── day.txt │ │ ├── down.php │ │ ├── install.php │ │ ├── jumpurl.txt │ │ ├── menu.php │ │ ├── month.txt │ │ ├── player.php │ │ ├── rewrite.php │ │ ├── routes.php │ │ ├── setting.php │ │ ├── site.php │ │ ├── uninstall.php │ │ └── week.txt ├── pay │ ├── alipay_direct │ │ ├── alipay.config.php │ │ ├── cacert.pem │ │ ├── index.html │ │ ├── lib │ │ │ ├── alipay_core.function.php │ │ │ ├── alipay_md5.function.php │ │ │ ├── alipay_notify.class.php │ │ │ └── alipay_submit.class.php │ │ └── log.txt │ ├── alipay_trade │ │ ├── alipay.config.php │ │ ├── cacert.pem │ │ ├── index.html │ │ ├── lib │ │ │ ├── alipay_core.function.php │ │ │ ├── alipay_md5.function.php │ │ │ ├── alipay_notify.class.php │ │ │ └── alipay_submit.class.php │ │ └── log.txt │ ├── index.html │ ├── tenpay │ │ ├── RequestHandler.class.php │ │ ├── ResponseHandler.class.php │ │ ├── client │ │ │ ├── ClientResponseHandler.class.php │ │ │ └── TenpayHttpClient.class.php │ │ └── index.html │ ├── wxpay │ │ ├── WxPay.NativePay.php │ │ ├── cert │ │ │ ├── apiclient_cert.pem │ │ │ └── apiclient_key.pem │ │ ├── lib │ │ │ ├── WxPay.Api.php │ │ │ ├── WxPay.Config.php │ │ │ ├── WxPay.Data.php │ │ │ ├── WxPay.Exception.php │ │ │ └── WxPay.Notify.php │ │ ├── log.php │ │ ├── native_notify.php │ │ ├── notify.php │ │ └── wxpays.php │ └── yeepay │ │ ├── YeePay_HTML.log │ │ ├── httpclient.class.php │ │ ├── index.html │ │ ├── merchantProperties.php │ │ └── yeepaycommon.php ├── system │ ├── .htaccess │ ├── core │ │ ├── Benchmark.php │ │ ├── CodeIgniter.php │ │ ├── Common.php │ │ ├── Config.php │ │ ├── Controller.php │ │ ├── Exceptions.php │ │ ├── Hooks.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Loader.php │ │ ├── Log.php │ │ ├── Model.php │ │ ├── Output.php │ │ ├── Router.php │ │ ├── Security.php │ │ ├── URI.php │ │ ├── Utf8.php │ │ ├── compat │ │ │ ├── hash.php │ │ │ ├── index.html │ │ │ ├── mbstring.php │ │ │ ├── password.php │ │ │ └── standard.php │ │ └── index.html │ ├── database │ │ ├── DB.php │ │ ├── DB_cache.php │ │ ├── DB_driver.php │ │ ├── DB_forge.php │ │ ├── DB_query_builder.php │ │ ├── DB_result.php │ │ ├── DB_utility.php │ │ ├── drivers │ │ │ ├── cubrid │ │ │ │ ├── cubrid_driver.php │ │ │ │ ├── cubrid_forge.php │ │ │ │ ├── cubrid_result.php │ │ │ │ ├── cubrid_utility.php │ │ │ │ └── index.html │ │ │ ├── ibase │ │ │ │ ├── ibase_driver.php │ │ │ │ ├── ibase_forge.php │ │ │ │ ├── ibase_result.php │ │ │ │ ├── ibase_utility.php │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── mssql │ │ │ │ ├── index.html │ │ │ │ ├── mssql_driver.php │ │ │ │ ├── mssql_forge.php │ │ │ │ ├── mssql_result.php │ │ │ │ └── mssql_utility.php │ │ │ ├── mysql │ │ │ │ ├── index.html │ │ │ │ ├── mysql_driver.php │ │ │ │ ├── mysql_forge.php │ │ │ │ ├── mysql_result.php │ │ │ │ └── mysql_utility.php │ │ │ ├── mysqli │ │ │ │ ├── index.html │ │ │ │ ├── mysqli_driver.php │ │ │ │ ├── mysqli_forge.php │ │ │ │ ├── mysqli_result.php │ │ │ │ └── mysqli_utility.php │ │ │ ├── oci8 │ │ │ │ ├── index.html │ │ │ │ ├── oci8_driver.php │ │ │ │ ├── oci8_forge.php │ │ │ │ ├── oci8_result.php │ │ │ │ └── oci8_utility.php │ │ │ ├── odbc │ │ │ │ ├── index.html │ │ │ │ ├── odbc_driver.php │ │ │ │ ├── odbc_forge.php │ │ │ │ ├── odbc_result.php │ │ │ │ └── odbc_utility.php │ │ │ ├── pdo │ │ │ │ ├── index.html │ │ │ │ ├── pdo_driver.php │ │ │ │ ├── pdo_forge.php │ │ │ │ ├── pdo_result.php │ │ │ │ ├── pdo_utility.php │ │ │ │ └── subdrivers │ │ │ │ │ ├── index.html │ │ │ │ │ ├── pdo_4d_driver.php │ │ │ │ │ ├── pdo_4d_forge.php │ │ │ │ │ ├── pdo_cubrid_driver.php │ │ │ │ │ ├── pdo_cubrid_forge.php │ │ │ │ │ ├── pdo_dblib_driver.php │ │ │ │ │ ├── pdo_dblib_forge.php │ │ │ │ │ ├── pdo_firebird_driver.php │ │ │ │ │ ├── pdo_firebird_forge.php │ │ │ │ │ ├── pdo_ibm_driver.php │ │ │ │ │ ├── pdo_ibm_forge.php │ │ │ │ │ ├── pdo_informix_driver.php │ │ │ │ │ ├── pdo_informix_forge.php │ │ │ │ │ ├── pdo_mysql_driver.php │ │ │ │ │ ├── pdo_mysql_forge.php │ │ │ │ │ ├── pdo_oci_driver.php │ │ │ │ │ ├── pdo_oci_forge.php │ │ │ │ │ ├── pdo_odbc_driver.php │ │ │ │ │ ├── pdo_odbc_forge.php │ │ │ │ │ ├── pdo_pgsql_driver.php │ │ │ │ │ ├── pdo_pgsql_forge.php │ │ │ │ │ ├── pdo_sqlite_driver.php │ │ │ │ │ ├── pdo_sqlite_forge.php │ │ │ │ │ ├── pdo_sqlsrv_driver.php │ │ │ │ │ └── pdo_sqlsrv_forge.php │ │ │ ├── postgre │ │ │ │ ├── index.html │ │ │ │ ├── postgre_driver.php │ │ │ │ ├── postgre_forge.php │ │ │ │ ├── postgre_result.php │ │ │ │ └── postgre_utility.php │ │ │ ├── sqlite │ │ │ │ ├── index.html │ │ │ │ ├── sqlite_driver.php │ │ │ │ ├── sqlite_forge.php │ │ │ │ ├── sqlite_result.php │ │ │ │ └── sqlite_utility.php │ │ │ ├── sqlite3 │ │ │ │ ├── index.html │ │ │ │ ├── sqlite3_driver.php │ │ │ │ ├── sqlite3_forge.php │ │ │ │ ├── sqlite3_result.php │ │ │ │ └── sqlite3_utility.php │ │ │ └── sqlsrv │ │ │ │ ├── index.html │ │ │ │ ├── sqlsrv_driver.php │ │ │ │ ├── sqlsrv_forge.php │ │ │ │ ├── sqlsrv_result.php │ │ │ │ └── sqlsrv_utility.php │ │ └── index.html │ ├── fonts │ │ ├── arrusbt.ttf │ │ ├── ggbi.ttf │ │ ├── index.html │ │ └── texb.ttf │ ├── helpers │ │ ├── array_helper.php │ │ ├── captcha_helper.php │ │ ├── cookie_helper.php │ │ ├── date_helper.php │ │ ├── directory_helper.php │ │ ├── download_helper.php │ │ ├── email_helper.php │ │ ├── file_helper.php │ │ ├── form_helper.php │ │ ├── html_helper.php │ │ ├── index.html │ │ ├── inflector_helper.php │ │ ├── language_helper.php │ │ ├── number_helper.php │ │ ├── path_helper.php │ │ ├── security_helper.php │ │ ├── smiley_helper.php │ │ ├── string_helper.php │ │ ├── text_helper.php │ │ ├── typography_helper.php │ │ ├── url_helper.php │ │ └── xml_helper.php │ ├── index.html │ ├── language │ │ ├── english │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── index.html │ │ └── zh_cn │ │ │ ├── calendar_lang.php │ │ │ ├── date_lang.php │ │ │ ├── db_lang.php │ │ │ ├── email_lang.php │ │ │ ├── error_lang.php │ │ │ ├── form_validation_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── imglib_lang.php │ │ │ ├── index.html │ │ │ ├── migration_lang.php │ │ │ ├── number_lang.php │ │ │ ├── profiler_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ └── libraries │ │ ├── Cache │ │ ├── Cache.php │ │ ├── drivers │ │ │ ├── Cache_apc.php │ │ │ ├── Cache_dummy.php │ │ │ ├── Cache_file.php │ │ │ ├── Cache_memcached.php │ │ │ ├── Cache_redis.php │ │ │ ├── Cache_wincache.php │ │ │ └── index.html │ │ └── index.html │ │ ├── Calendar.php │ │ ├── Cart.php │ │ ├── Driver.php │ │ ├── Email.php │ │ ├── Encrypt.php │ │ ├── Encryption.php │ │ ├── Form_validation.php │ │ ├── Ftp.php │ │ ├── Image_lib.php │ │ ├── Javascript.php │ │ ├── Javascript │ │ ├── Jquery.php │ │ └── index.html │ │ ├── Migration.php │ │ ├── Pagination.php │ │ ├── Parser.php │ │ ├── Profiler.php │ │ ├── Session │ │ ├── Session.php │ │ ├── SessionHandlerInterface.php │ │ ├── Session_driver.php │ │ ├── drivers │ │ │ ├── Session_database_driver.php │ │ │ ├── Session_files_driver.php │ │ │ ├── Session_memcached_driver.php │ │ │ ├── Session_redis_driver.php │ │ │ └── index.html │ │ └── index.html │ │ ├── Table.php │ │ ├── Trackback.php │ │ ├── Typography.php │ │ ├── Unit_test.php │ │ ├── Upload.php │ │ ├── User_agent.php │ │ ├── Xmlrpc.php │ │ ├── Xmlrpcs.php │ │ ├── Zip.php │ │ └── index.html ├── uc_client │ ├── client.php │ ├── control │ │ ├── app.php │ │ ├── cache.php │ │ ├── domain.php │ │ ├── feed.php │ │ ├── friend.php │ │ ├── index.htm │ │ ├── mail.php │ │ ├── pm.php │ │ ├── tag.php │ │ └── user.php │ ├── data │ │ ├── cache │ │ │ ├── apps.php │ │ │ ├── badwords.php │ │ │ ├── index.htm │ │ │ └── settings.php │ │ └── index.htm │ ├── index.html │ ├── lib │ │ ├── db.class.php │ │ ├── index.htm │ │ ├── sendmail.inc.php │ │ ├── uccode.class.php │ │ └── xml.class.php │ └── model │ │ ├── app.php │ │ ├── base.php │ │ ├── cache.php │ │ ├── domain.php │ │ ├── friend.php │ │ ├── index.htm │ │ ├── mail.php │ │ ├── misc.php │ │ ├── note.php │ │ ├── pm.php │ │ ├── tag.php │ │ └── user.php └── uploads │ ├── index.html │ ├── kdisk │ ├── acc.php │ ├── index.html │ └── kuaipan.class.php │ ├── oss │ ├── conf.inc.php │ ├── index.html │ ├── lang │ │ └── zh.inc.php │ ├── lib │ │ └── requestcore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── requestcore.class.php │ ├── sdk.class.php │ └── util │ │ └── mimetypes.class.php │ ├── qiniu │ ├── auth_digest.php │ ├── conf.php │ ├── fop.php │ ├── http.php │ ├── index.html │ ├── io.php │ ├── resumable_io.php │ ├── rs.php │ ├── rs_utils.php │ ├── rsf.php │ └── utils.php │ └── upyun │ ├── index.html │ └── upyun.class.php ├── favicon.ico ├── index.php ├── install.php ├── packs ├── admin │ ├── css │ │ ├── font.css │ │ ├── login.css │ │ ├── style.css │ │ └── zoomin.cur │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── images │ │ ├── ext │ │ │ ├── dir.gif │ │ │ ├── html.gif │ │ │ ├── mp3.gif │ │ │ ├── mp4.gif │ │ │ ├── no.gif │ │ │ ├── php.gif │ │ │ ├── pic.gif │ │ │ └── rar.gif │ │ ├── load.gif │ │ ├── loading.gif │ │ ├── log-form-bg.png │ │ ├── login_bg.jpg │ │ ├── rect.gif │ │ └── skin_bg.png │ ├── index.html │ └── js │ │ ├── cscms.js │ │ └── setcolor.js ├── font │ ├── font.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 ├── images │ ├── faces │ │ ├── e1.gif │ │ ├── e10.gif │ │ ├── e11.gif │ │ ├── e12.gif │ │ ├── e13.gif │ │ ├── e14.gif │ │ ├── e15.gif │ │ ├── e16.gif │ │ ├── e17.gif │ │ ├── e18.gif │ │ ├── e19.gif │ │ ├── e2.gif │ │ ├── e20.gif │ │ ├── e21.gif │ │ ├── e22.gif │ │ ├── e23.gif │ │ ├── e24.gif │ │ ├── e25.gif │ │ ├── e26.gif │ │ ├── e27.gif │ │ ├── e28.gif │ │ ├── e29.gif │ │ ├── e3.gif │ │ ├── e30.gif │ │ ├── e31.gif │ │ ├── e32.gif │ │ ├── e33.gif │ │ ├── e34.gif │ │ ├── e35.gif │ │ ├── e36.gif │ │ ├── e37.gif │ │ ├── e38.gif │ │ ├── e39.gif │ │ ├── e4.gif │ │ ├── e40.gif │ │ ├── e41.gif │ │ ├── e42.gif │ │ ├── e43.gif │ │ ├── e44.gif │ │ ├── e45.gif │ │ ├── e46.gif │ │ ├── e47.gif │ │ ├── e48.gif │ │ ├── e49.gif │ │ ├── e5.gif │ │ ├── e50.gif │ │ ├── e51.gif │ │ ├── e52.gif │ │ ├── e53.gif │ │ ├── e54.gif │ │ ├── e55.gif │ │ ├── e56.gif │ │ ├── e6.gif │ │ ├── e7.gif │ │ ├── e8.gif │ │ └── e9.gif │ ├── index.html │ ├── load.gif │ ├── msg.css │ ├── msg_bg.gif │ ├── skins.jpg │ ├── stars1.gif │ ├── stars2.gif │ ├── stars3.gif │ ├── tags.css │ ├── tip.png │ ├── tip_back.png │ └── warning.png ├── index.html ├── install │ ├── cscms_data.php │ ├── cscms_table.php │ ├── images │ │ ├── bg.png │ │ ├── btn.png │ │ ├── complete.png │ │ ├── css.css │ │ ├── header.png │ │ ├── icon.png │ │ ├── icon_install.png │ │ ├── icon_update.png │ │ ├── ignore.png │ │ ├── index.html │ │ ├── loading.gif │ │ ├── logo.png │ │ ├── pop_loading.gif │ │ ├── step.png │ │ └── tips_system.png │ └── index.html ├── ipdata │ ├── .htaccess │ ├── index.html │ └── mini.dat ├── js │ ├── cscms.js │ ├── index.html │ ├── jquery.lazyload.js │ ├── jquery.min.js │ ├── jquery.zclip.min.js │ └── tags.js ├── layui │ ├── css │ │ ├── layui.css │ │ ├── layui.mobile.css │ │ └── modules │ │ │ ├── code.css │ │ │ ├── laydate │ │ │ └── default │ │ │ │ └── laydate.css │ │ │ └── layer │ │ │ └── default │ │ │ ├── icon-ext.png │ │ │ ├── icon.png │ │ │ ├── layer.css │ │ │ ├── loading-0.gif │ │ │ ├── loading-1.gif │ │ │ └── loading-2.gif │ ├── font │ │ ├── iconfont.eot │ │ ├── iconfont.svg │ │ ├── iconfont.ttf │ │ └── iconfont.woff │ ├── images │ │ └── face │ │ │ ├── 0.gif │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 11.gif │ │ │ ├── 12.gif │ │ │ ├── 13.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 2.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ ├── 26.gif │ │ │ ├── 27.gif │ │ │ ├── 28.gif │ │ │ ├── 29.gif │ │ │ ├── 3.gif │ │ │ ├── 30.gif │ │ │ ├── 31.gif │ │ │ ├── 32.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 35.gif │ │ │ ├── 36.gif │ │ │ ├── 37.gif │ │ │ ├── 38.gif │ │ │ ├── 39.gif │ │ │ ├── 4.gif │ │ │ ├── 40.gif │ │ │ ├── 41.gif │ │ │ ├── 42.gif │ │ │ ├── 43.gif │ │ │ ├── 44.gif │ │ │ ├── 45.gif │ │ │ ├── 46.gif │ │ │ ├── 47.gif │ │ │ ├── 48.gif │ │ │ ├── 49.gif │ │ │ ├── 5.gif │ │ │ ├── 50.gif │ │ │ ├── 51.gif │ │ │ ├── 52.gif │ │ │ ├── 53.gif │ │ │ ├── 54.gif │ │ │ ├── 55.gif │ │ │ ├── 56.gif │ │ │ ├── 57.gif │ │ │ ├── 58.gif │ │ │ ├── 59.gif │ │ │ ├── 6.gif │ │ │ ├── 60.gif │ │ │ ├── 61.gif │ │ │ ├── 62.gif │ │ │ ├── 63.gif │ │ │ ├── 64.gif │ │ │ ├── 65.gif │ │ │ ├── 66.gif │ │ │ ├── 67.gif │ │ │ ├── 68.gif │ │ │ ├── 69.gif │ │ │ ├── 7.gif │ │ │ ├── 70.gif │ │ │ ├── 71.gif │ │ │ ├── 8.gif │ │ │ └── 9.gif │ ├── lay │ │ └── modules │ │ │ ├── carousel.js │ │ │ ├── code.js │ │ │ ├── element.js │ │ │ ├── flow.js │ │ │ ├── form.js │ │ │ ├── jquery.js │ │ │ ├── laydate.js │ │ │ ├── layedit.js │ │ │ ├── layer.js │ │ │ ├── laypage.js │ │ │ ├── laytpl.js │ │ │ ├── mobile.js │ │ │ ├── table.js │ │ │ ├── tree.js │ │ │ ├── upload.js │ │ │ └── util.js │ ├── layui.all.js │ └── layui.js ├── mbupload │ ├── Huploadify.css │ └── jquery.Huploadify.js ├── swf │ ├── ZeroClipboard.swf │ ├── avatar.swf │ └── index.html ├── swfupload │ ├── images │ │ ├── cross.png │ │ ├── msg_bg.png │ │ ├── off.png │ │ └── swfBnt.png │ ├── index.html │ ├── swfupload.css │ ├── swfupload.js │ └── swfupload.swf ├── swiper │ ├── jquery.bxslider.css │ ├── jquery.bxslider.js │ ├── swiper.css │ └── swiper.js ├── vod_player │ ├── 56.js │ ├── acfun.js │ ├── baofeng.js │ ├── bdhd.js │ ├── bilibili.js │ ├── ckplayer.html │ ├── ckplayer.js │ ├── ckplayer │ │ ├── ckplayer.js │ │ ├── ckplayer.swf │ │ ├── ckplayer.xml │ │ ├── index.html │ │ ├── language.xml │ │ ├── related.xml │ │ ├── share.xml │ │ ├── share │ │ │ ├── feixin.png │ │ │ ├── google.png │ │ │ ├── kaixin001.png │ │ │ ├── msn.png │ │ │ ├── qq.png │ │ │ ├── qq2.png │ │ │ ├── qzone.png │ │ │ ├── rr.png │ │ │ ├── sina.png │ │ │ ├── sohu.png │ │ │ └── tianya.png │ │ └── style.swf │ ├── cmp.js │ ├── cmp │ │ ├── cmp.swf │ │ ├── index.html │ │ ├── mp3.swf │ │ ├── sharing.swf │ │ └── vplayer.swf │ ├── cntv.js │ ├── css │ │ └── play.css │ ├── ffhd.html │ ├── ffhd.js │ ├── flv.js │ ├── funshion.js │ ├── ifeng.js │ ├── images │ │ ├── btn_1.gif │ │ ├── btn_2.gif │ │ └── down.jpg │ ├── index.html │ ├── iva.html │ ├── iva.js │ ├── jjvod.js │ ├── jplayer.js │ ├── jplayer │ │ ├── index.html │ │ ├── js │ │ │ ├── Jplayer.swf │ │ │ ├── jquery.jplayer.min.js │ │ │ ├── jquery.js │ │ │ └── lrc.js │ │ └── skin │ │ │ ├── blue │ │ │ ├── css.css │ │ │ └── player.png │ │ │ └── lrc │ │ │ ├── css.css │ │ │ ├── lrcbg.png │ │ │ └── player.png │ ├── kankan.js │ ├── letv.js │ ├── loading.html │ ├── m1905.js │ ├── maxtv.js │ ├── media.js │ ├── mgtv.js │ ├── play.html │ ├── pptv.js │ ├── qiyi.js │ ├── qq.js │ ├── qvod.js │ ├── sina.js │ ├── sinahd.js │ ├── sohu.js │ ├── swf.js │ ├── tudou.js │ ├── xgvod.js │ ├── ydisk.js │ ├── youku.js │ ├── yyt.js │ └── yyxf.js └── webupload │ ├── Moxie.swf │ ├── Moxie.xap │ ├── images │ ├── cross.png │ ├── msg_bg.png │ ├── off.png │ └── swfBnt.png │ ├── moxie.js │ ├── moxie.min.js │ ├── plupload.css │ ├── plupload.dev.js │ ├── plupload.full.min.js │ └── plupload.min.js ├── plugins ├── .htaccess ├── dance │ ├── Ajax.php │ ├── Down.php │ ├── Hits.php │ ├── Index.php │ ├── Lists.php │ ├── Opt.php │ ├── Play.php │ ├── Playsong.php │ ├── Search.php │ ├── Topic.php │ ├── admin │ │ ├── Apiku.php │ │ ├── Dance.php │ │ ├── Html.php │ │ ├── Lists.php │ │ ├── Opt.php │ │ ├── Saomiao.php │ │ ├── Server.php │ │ └── Topic.php │ ├── home │ │ ├── Album.php │ │ └── Dance.php │ └── user │ │ ├── Album.php │ │ ├── Dance.php │ │ ├── Down.php │ │ └── Fav.php ├── news │ ├── Hits.php │ ├── Index.php │ ├── Lists.php │ ├── Opt.php │ ├── Search.php │ ├── Show.php │ ├── Topic.php │ ├── admin │ │ ├── Html.php │ │ ├── Lists.php │ │ ├── Look.php │ │ ├── News.php │ │ └── Topic.php │ ├── home │ │ └── News.php │ └── user │ │ ├── Look.php │ │ └── News.php ├── pic │ ├── Ajax.php │ ├── Hits.php │ ├── Index.php │ ├── Lists.php │ ├── Opt.php │ ├── Search.php │ ├── Show.php │ ├── admin │ │ ├── Html.php │ │ ├── Lists.php │ │ ├── Pic.php │ │ └── Type.php │ ├── home │ │ └── Pic.php │ └── user │ │ ├── Pic.php │ │ └── Picadd.php ├── singer │ ├── Album.php │ ├── Hits.php │ ├── Index.php │ ├── Info.php │ ├── Lists.php │ ├── Music.php │ ├── Mv.php │ ├── Opt.php │ ├── Pic.php │ ├── Search.php │ ├── Show.php │ ├── admin │ │ ├── Html.php │ │ ├── Lists.php │ │ └── Singer.php │ └── user │ │ └── Singer.php ├── sys │ ├── Gbook.php │ ├── Hits.php │ ├── Index.php │ ├── Install.php │ ├── Locoy.php │ ├── Opt.php │ ├── Page.php │ ├── Pl.php │ ├── Tags.php │ ├── Upload.php │ ├── Upload_wap.php │ ├── admin │ │ ├── Basedb.php │ │ ├── Blog.php │ │ ├── Check.php │ │ ├── Collect.php │ │ ├── Field.php │ │ ├── Gbook.php │ │ ├── Homes.php │ │ ├── Html.php │ │ ├── Index.php │ │ ├── Label.php │ │ ├── Links.php │ │ ├── Login.php │ │ ├── Mail.php │ │ ├── Msg.php │ │ ├── Opt.php │ │ ├── Pay.php │ │ ├── Pl.php │ │ ├── Plugins.php │ │ ├── Setting.php │ │ ├── Share.php │ │ ├── Skin.php │ │ ├── Sms.php │ │ ├── Sys.php │ │ ├── Tags.php │ │ ├── Upgrade.php │ │ ├── Upload.php │ │ └── User.php │ ├── api │ │ ├── Baidu.php │ │ ├── Codes.php │ │ ├── Count.php │ │ ├── Google.php │ │ ├── Pic.php │ │ ├── S360.php │ │ ├── Share.php │ │ ├── Short.php │ │ ├── Sitemap.php │ │ ├── Uc.php │ │ └── Ulog.php │ ├── home │ │ ├── Ajax.php │ │ ├── Blog.php │ │ ├── Fans.php │ │ ├── Feed.php │ │ ├── Friend.php │ │ ├── Funco.php │ │ ├── Gbook.php │ │ ├── Hits.php │ │ ├── Index.php │ │ └── Info.php │ ├── pay │ │ ├── Alipay.php │ │ ├── Cspay.php │ │ ├── Tenpay.php │ │ ├── Wxpay.php │ │ ├── Wypay.php │ │ └── Ybpay.php │ └── user │ │ ├── Ajax.php │ │ ├── Blog.php │ │ ├── Edit.php │ │ ├── Fans.php │ │ ├── Friend.php │ │ ├── Funco.php │ │ ├── Gbook.php │ │ ├── Index.php │ │ ├── Journal.php │ │ ├── Login.php │ │ ├── Logout.php │ │ ├── Msg.php │ │ ├── Open.php │ │ ├── Pass.php │ │ ├── Pay.php │ │ ├── Reg.php │ │ ├── Share.php │ │ ├── Space.php │ │ └── Web.php └── vod │ ├── Ajax.php │ ├── Down.php │ ├── Hits.php │ ├── Index.php │ ├── Lists.php │ ├── Opt.php │ ├── Play.php │ ├── Search.php │ ├── Show.php │ ├── Topic.php │ ├── admin │ ├── Apiku.php │ ├── Html.php │ ├── Lists.php │ ├── Opt.php │ ├── Topic.php │ ├── Type.php │ └── Vod.php │ ├── home │ └── Vod.php │ └── user │ ├── Fav.php │ ├── Look.php │ └── Vod.php ├── robots.txt └── tpl ├── .htaccess ├── admin ├── dance │ ├── apiku_list.html │ ├── dance.html │ ├── dance_edit.html │ ├── dance_list.html │ ├── dance_server.html │ ├── dance_server_add.html │ ├── down.html │ ├── fav.html │ ├── html.html │ ├── html_down.html │ ├── html_opt.html │ ├── html_play.html │ ├── html_topic.html │ ├── html_type.html │ ├── list_edit.html │ ├── pl_edit.html │ ├── play.html │ ├── saomiao.html │ ├── saomiao_ftp.html │ ├── saomiao_ftp_config.html │ ├── saomiao_look.html │ ├── saomiao_ruku.html │ ├── topic.html │ └── topic_edit.html ├── news │ ├── html.html │ ├── html_opt.html │ ├── html_show.html │ ├── html_topic.html │ ├── html_type.html │ ├── list_edit.html │ ├── look.html │ ├── news.html │ ├── news_edit.html │ ├── news_list.html │ ├── pl_edit.html │ ├── topic.html │ └── topic_edit.html ├── pic │ ├── html.html │ ├── html_opt.html │ ├── html_show.html │ ├── html_type.html │ ├── list_edit.html │ ├── pic.html │ ├── pic_edit.html │ ├── pic_list.html │ ├── pic_res.html │ ├── pic_type.html │ ├── pic_type_edit.html │ └── pl_edit.html ├── singer │ ├── html.html │ ├── html_opt.html │ ├── html_show.html │ ├── html_type.html │ ├── list_edit.html │ ├── singer.html │ ├── singer_edit.html │ └── singer_list.html ├── sys │ ├── admin_card.html │ ├── admin_edit.html │ ├── admin_edit_pass.html │ ├── admin_edit_zu.html │ ├── admin_index.html │ ├── admin_log.html │ ├── admin_zu.html │ ├── basedb.html │ ├── basedb_field.html │ ├── basedb_hy.html │ ├── blog.html │ ├── cache.html │ ├── check.html │ ├── collect.html │ ├── collect_caiji.html │ ├── collect_daoru.html │ ├── collect_edit.html │ ├── collect_edit2.html │ ├── collect_edit3.html │ ├── collect_edit4.html │ ├── collect_edit5.html │ ├── collect_lists.html │ ├── collect_look.html │ ├── collect_ruku.html │ ├── denglu_setting.html │ ├── field_edit.html │ ├── field_list.html │ ├── ftp_setting.html │ ├── gbook.html │ ├── gbook_hf.html │ ├── home.html │ ├── home_pay.html │ ├── html.html │ ├── index.html │ ├── label.html │ ├── label_deldata.html │ ├── label_edit.html │ ├── label_editdata.html │ ├── label_js.html │ ├── label_js_edit.html │ ├── label_page.html │ ├── label_page_edit.html │ ├── links.html │ ├── links_edit.html │ ├── login.html │ ├── login_card.html │ ├── mail_add.html │ ├── mail_setting.html │ ├── main.html │ ├── msg.html │ ├── msg_look.html │ ├── myattach.html │ ├── pay_card.html │ ├── pay_card_add.html │ ├── pay_card_look.html │ ├── pay_income.html │ ├── pay_list.html │ ├── pay_setting.html │ ├── pay_spend.html │ ├── pl.html │ ├── plugins.html │ ├── plugins_role.html │ ├── plugins_setting.html │ ├── rule.html │ ├── setting.html │ ├── share.html │ ├── skin.html │ ├── skin_add.html │ ├── skin_edit.html │ ├── skin_look.html │ ├── skin_show.html │ ├── skin_tags_s.html │ ├── skin_tags_t.html │ ├── skin_upload.html │ ├── sms_add.html │ ├── sms_list.html │ ├── sms_setting.html │ ├── tags.html │ ├── tb_setting.html │ ├── upgrade.html │ ├── upgrade_look.html │ ├── upgrade_md5.html │ ├── upgrade_tips.html │ ├── upload.html │ ├── upload_dir.html │ ├── user.html │ ├── user_edit.html │ ├── user_level.html │ ├── user_level_edit.html │ ├── user_log.html │ ├── user_logo.html │ ├── user_setting.html │ ├── user_verify.html │ ├── user_zu.html │ └── user_zu_edit.html └── vod │ ├── apiku.html │ ├── apiku_list.html │ ├── fav.html │ ├── html.html │ ├── html_opt.html │ ├── html_show.html │ ├── html_topic.html │ ├── html_type.html │ ├── list_edit.html │ ├── look.html │ ├── pl_edit.html │ ├── topic.html │ ├── topic_edit.html │ ├── type_edit.html │ ├── vod.html │ ├── vod_caiji.html │ ├── vod_edit.html │ ├── vod_list.html │ └── vod_type.html ├── errors ├── cli │ ├── error_404.php │ ├── error_db.php │ ├── error_exception.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── html │ ├── error_404.php │ ├── error_db.php │ ├── error_exception.php │ ├── error_general.php │ ├── error_php.php │ ├── index.html │ ├── mbmsg.php │ └── pcmsg.php └── index.html ├── install ├── temp_1.html ├── temp_2.html ├── temp_3.html ├── temp_4.html ├── temp_5.html ├── temp_6.html └── temp_7.html ├── mobile ├── common │ ├── 360.html │ ├── baidu.html │ ├── google.html │ ├── msgurl.html │ ├── sitemap.html │ ├── tags.html │ ├── upload.html │ └── wxpay.html ├── home │ └── skin01 │ │ ├── config.php │ │ ├── css │ │ ├── manage.css │ │ ├── more.css │ │ ├── public.css │ │ ├── song.css │ │ ├── space.css │ │ └── style.css │ │ ├── html │ │ ├── dance │ │ │ ├── album.html │ │ │ └── dance.html │ │ ├── news │ │ │ └── news.html │ │ ├── pic │ │ │ └── pic.html │ │ ├── sys │ │ │ ├── blog.html │ │ │ ├── bottom.html │ │ │ ├── fans.html │ │ │ ├── feed.html │ │ │ ├── friend.html │ │ │ ├── funco.html │ │ │ ├── gbook-ajax.html │ │ │ ├── gbook.html │ │ │ ├── head.html │ │ │ ├── index.html │ │ │ ├── info.html │ │ │ ├── pl.html │ │ │ ├── uinfo.html │ │ │ └── ulogin.html │ │ └── vod │ │ │ └── vod.html │ │ ├── images │ │ ├── a_icon.png │ │ ├── al_space.png │ │ ├── b_ico.png │ │ ├── banner_bg.jpg │ │ ├── center_logo.png │ │ ├── close_ie6.png │ │ ├── dj_icon.png │ │ ├── headbox_bg.png │ │ ├── headboxsprite.png │ │ ├── icon │ │ │ ├── realname.gif │ │ │ ├── recommend.gif │ │ │ ├── star.gif │ │ │ ├── urealname.gif │ │ │ ├── urecommend.gif │ │ │ ├── ustar.gif │ │ │ ├── uvip.gif │ │ │ └── vip.gif │ │ ├── icon_liwu2.png │ │ ├── indexsprite.png │ │ ├── logo.png │ │ ├── m_icon.png │ │ ├── msg.gif │ │ ├── null_song.png │ │ ├── pinglun_icon.png │ │ ├── praise.gif │ │ ├── share_icon.png │ │ ├── t_bg.png │ │ └── t_icon.png │ │ ├── js │ │ ├── common.js │ │ └── wap.js │ │ ├── preview.jpg │ │ └── skins.php ├── skins │ └── default │ │ ├── config.php │ │ ├── css │ │ ├── dance.css │ │ ├── news.css │ │ ├── pic.css │ │ ├── singer.css │ │ ├── style.css │ │ └── vod.css │ │ ├── html │ │ ├── dance │ │ │ ├── bottom.html │ │ │ ├── down.html │ │ │ ├── head.html │ │ │ ├── index.html │ │ │ ├── list.html │ │ │ ├── pl.html │ │ │ ├── play-lrc.html │ │ │ ├── play.html │ │ │ ├── playsong.html │ │ │ ├── search.html │ │ │ ├── topic-show.html │ │ │ ├── topic.html │ │ │ ├── uinfo.html │ │ │ └── ulogin.html │ │ ├── news │ │ │ ├── bottom.html │ │ │ ├── head.html │ │ │ ├── index.html │ │ │ ├── list.html │ │ │ ├── pl.html │ │ │ ├── search.html │ │ │ ├── show.html │ │ │ ├── uinfo.html │ │ │ └── ulogin.html │ │ ├── pic │ │ │ ├── bottom.html │ │ │ ├── head.html │ │ │ ├── index.html │ │ │ ├── list.html │ │ │ ├── pl.html │ │ │ ├── search.html │ │ │ ├── show.html │ │ │ ├── uinfo.html │ │ │ └── ulogin.html │ │ ├── singer │ │ │ ├── album.html │ │ │ ├── bottom.html │ │ │ ├── head.html │ │ │ ├── index.html │ │ │ ├── list.html │ │ │ ├── music.html │ │ │ ├── mv.html │ │ │ ├── pic.html │ │ │ ├── pl.html │ │ │ ├── search.html │ │ │ ├── show.html │ │ │ ├── uinfo.html │ │ │ └── ulogin.html │ │ ├── sys │ │ │ ├── bottom.html │ │ │ ├── gbook.html │ │ │ ├── gbook_ajax.html │ │ │ ├── head.html │ │ │ ├── index.html │ │ │ ├── uinfo.html │ │ │ └── ulogin.html │ │ └── vod │ │ │ ├── bottom.html │ │ │ ├── head.html │ │ │ ├── index.html │ │ │ ├── list.html │ │ │ ├── pl.html │ │ │ ├── play.html │ │ │ ├── search.html │ │ │ ├── show.html │ │ │ ├── uinfo.html │ │ │ └── ulogin.html │ │ ├── images │ │ ├── ad.jpg │ │ ├── baidu_icon.gif │ │ ├── close_ie6.png │ │ ├── douban_icon.gif │ │ ├── kaixin_icon.gif │ │ ├── logo.png │ │ ├── lv.png │ │ ├── mdnxt.png │ │ ├── mdpause.png │ │ ├── mdplay.png │ │ ├── mdpre.png │ │ ├── playbar.png │ │ ├── qq_icon.gif │ │ ├── renren_icon.gif │ │ ├── sex.png │ │ ├── share_icon.png │ │ └── weibo_icon.gif │ │ ├── js │ │ ├── dance.js │ │ ├── iscroll.js │ │ ├── news.js │ │ ├── pic.js │ │ ├── singer.js │ │ ├── vod.js │ │ └── wap.js │ │ ├── preview.jpg │ │ └── skins.php └── user │ └── default │ ├── config.php │ ├── css │ ├── dance.css │ ├── news.css │ ├── pic.css │ ├── singer.css │ ├── user.css │ └── vod.css │ ├── html │ ├── dance │ │ ├── add.html │ │ ├── album-add.html │ │ ├── album-verify.html │ │ ├── album.html │ │ ├── bottom.html │ │ ├── dance.html │ │ ├── down.html │ │ ├── fav-album.html │ │ ├── fav.html │ │ ├── field.html │ │ ├── head.html │ │ ├── left.html │ │ ├── right.html │ │ ├── singer.html │ │ ├── upload.html │ │ └── verify.html │ ├── news │ │ ├── add.html │ │ ├── bottom.html │ │ ├── field.html │ │ ├── head.html │ │ ├── left.html │ │ ├── look.html │ │ ├── news.html │ │ ├── right.html │ │ └── verify.html │ ├── pic │ │ ├── add-type.html │ │ ├── add.html │ │ ├── bottom.html │ │ ├── field.html │ │ ├── head.html │ │ ├── left.html │ │ ├── pic-res.html │ │ ├── pic-type.html │ │ ├── pic-verify.html │ │ ├── pic.html │ │ ├── right.html │ │ └── upload.html │ ├── singer │ │ ├── add.html │ │ ├── bottom.html │ │ ├── field.html │ │ ├── head.html │ │ ├── left.html │ │ ├── right.html │ │ ├── singer.html │ │ └── verify.html │ ├── sys │ │ ├── blog.html │ │ ├── bottom.html │ │ ├── change.html │ │ ├── edit-logo.html │ │ ├── edit-open.html │ │ ├── edit-pass.html │ │ ├── edit.html │ │ ├── fans.html │ │ ├── feed-ajax.html │ │ ├── field.html │ │ ├── friend.html │ │ ├── funco.html │ │ ├── gbook.html │ │ ├── group.html │ │ ├── head.html │ │ ├── index.html │ │ ├── journal.html │ │ ├── left.html │ │ ├── login.html │ │ ├── msg-add.html │ │ ├── msg-show.html │ │ ├── msg.html │ │ ├── open.html │ │ ├── pass-edit.html │ │ ├── pass.html │ │ ├── pay-card.html │ │ ├── pay-cardlist.html │ │ ├── pay-income.html │ │ ├── pay-list.html │ │ ├── pay-spend.html │ │ ├── pay.html │ │ ├── reg.html │ │ ├── right.html │ │ ├── share-list.html │ │ ├── share.html │ │ ├── space.html │ │ ├── uinfo.html │ │ ├── ulogin.html │ │ ├── web-pic.html │ │ └── web.html │ └── vod │ │ ├── add.html │ │ ├── bottom.html │ │ ├── fav.html │ │ ├── field.html │ │ ├── head.html │ │ ├── left.html │ │ ├── look.html │ │ ├── right.html │ │ ├── verify.html │ │ └── vod.html │ ├── images │ ├── baidu_icon.gif │ ├── douban_icon.gif │ ├── emot.gif │ ├── kaixin_icon.gif │ ├── logo.png │ ├── new.gif │ ├── qq_icon.gif │ ├── renren_icon.gif │ ├── sex.png │ ├── skin_bg.png │ ├── sync_weibo.png │ ├── wall.gif │ ├── weibo_icon.gif │ └── xt.gif │ ├── js │ ├── city.js │ ├── jquery.emot.js │ ├── jquery.poshytip.js │ ├── jquery.validform.js │ ├── user.js │ └── wap.js │ ├── preview.jpg │ └── skins.php └── pc ├── common ├── 360.html ├── baidu.html ├── google.html ├── sitemap.html ├── tags.html ├── upload.html └── wxpay.html ├── home └── skin01 │ ├── config.php │ ├── css │ ├── manage.css │ ├── more.css │ ├── public.css │ ├── song.css │ └── space.css │ ├── html │ ├── dance │ │ ├── album.html │ │ └── dance.html │ ├── news │ │ └── news.html │ ├── pic │ │ └── pic.html │ ├── sys │ │ ├── blog.html │ │ ├── bottom.html │ │ ├── fans.html │ │ ├── feed.html │ │ ├── friend.html │ │ ├── funco.html │ │ ├── gbook-ajax.html │ │ ├── gbook.html │ │ ├── head.html │ │ ├── index.html │ │ ├── info.html │ │ ├── pl.html │ │ ├── uinfo.html │ │ └── ulogin.html │ └── vod │ │ └── vod.html │ ├── images │ ├── a_icon.png │ ├── al_space.png │ ├── b_ico.png │ ├── banner_bg.jpg │ ├── center_logo.png │ ├── close_ie6.png │ ├── dj_icon.png │ ├── headbox_bg.png │ ├── headboxsprite.png │ ├── icon │ │ ├── realname.gif │ │ ├── recommend.gif │ │ ├── star.gif │ │ ├── urealname.gif │ │ ├── urecommend.gif │ │ ├── ustar.gif │ │ ├── uvip.gif │ │ └── vip.gif │ ├── icon_liwu2.png │ ├── indexsprite.png │ ├── m_icon.png │ ├── msg.gif │ ├── null_song.png │ ├── pinglun_icon.png │ ├── praise.gif │ ├── share_icon.png │ ├── t_bg.png │ └── t_icon.png │ ├── js │ └── common.js │ ├── preview.jpg │ └── skins.php ├── skins └── default │ ├── config.php │ ├── css │ ├── dance.css │ ├── index.css │ ├── news.css │ ├── pic.css │ ├── singer.css │ ├── style.css │ └── vod.css │ ├── html │ ├── dance │ │ ├── bottom.html │ │ ├── down.html │ │ ├── head.html │ │ ├── index.html │ │ ├── list.html │ │ ├── pl.html │ │ ├── play-lrc.html │ │ ├── play.html │ │ ├── playsong.html │ │ ├── search.html │ │ ├── topic-show.html │ │ ├── topic.html │ │ ├── uinfo.html │ │ └── ulogin.html │ ├── news │ │ ├── bottom.html │ │ ├── head.html │ │ ├── index.html │ │ ├── list.html │ │ ├── pl.html │ │ ├── search.html │ │ ├── show.html │ │ ├── topic-show.html │ │ ├── topic.html │ │ ├── uinfo.html │ │ └── ulogin.html │ ├── pic │ │ ├── bottom.html │ │ ├── head.html │ │ ├── index.html │ │ ├── list.html │ │ ├── pl.html │ │ ├── search.html │ │ ├── show.html │ │ ├── uinfo.html │ │ └── ulogin.html │ ├── singer │ │ ├── album.html │ │ ├── bottom.html │ │ ├── head.html │ │ ├── index.html │ │ ├── info.html │ │ ├── list.html │ │ ├── music.html │ │ ├── mv.html │ │ ├── pic.html │ │ ├── pl.html │ │ ├── search.html │ │ ├── show.html │ │ ├── uinfo.html │ │ └── ulogin.html │ ├── sys │ │ ├── bottom.html │ │ ├── gbook.html │ │ ├── gbook_ajax.html │ │ ├── head.html │ │ ├── index.html │ │ ├── uinfo.html │ │ └── ulogin.html │ └── vod │ │ ├── bottom.html │ │ ├── down.html │ │ ├── head.html │ │ ├── index.html │ │ ├── list.html │ │ ├── opt-hot.html │ │ ├── opt-new.html │ │ ├── opt-tv.html │ │ ├── opt-yue.html │ │ ├── opt-zhou.html │ │ ├── pl.html │ │ ├── play.html │ │ ├── search.html │ │ ├── show.html │ │ ├── topic-show.html │ │ ├── topic.html │ │ ├── uinfo.html │ │ └── ulogin.html │ ├── images │ ├── ad.jpg │ ├── bottom_logo.png │ ├── close_ie6.png │ ├── default_avatar.jpg │ ├── iconall.png │ ├── logo.png │ ├── loop.png │ ├── msg.gif │ ├── music.png │ ├── playNow.gif │ ├── player.png │ └── share_icon.png │ ├── js │ ├── dance.js │ ├── jquery.slimscroll.min.js │ ├── lrc.js │ ├── pic.js │ ├── singer.js │ └── vod.js │ ├── preview.jpg │ └── skins.php └── user └── default ├── config.php ├── css └── user.css ├── html ├── dance │ ├── add.html │ ├── album-add.html │ ├── album-verify.html │ ├── album.html │ ├── dance.html │ ├── down.html │ ├── fav-album.html │ ├── fav.html │ ├── field.html │ ├── singer.html │ └── verify.html ├── news │ ├── add.html │ ├── field.html │ ├── look.html │ ├── news.html │ └── verify.html ├── pic │ ├── add-type.html │ ├── add.html │ ├── field.html │ ├── pic-res.html │ ├── pic-type.html │ ├── pic-verify.html │ ├── pic.html │ └── upload.html ├── singer │ ├── add.html │ ├── field.html │ ├── singer.html │ └── verify.html ├── sys │ ├── blog.html │ ├── bottom.html │ ├── change.html │ ├── edit-logo.html │ ├── edit-open.html │ ├── edit-pass.html │ ├── edit.html │ ├── fans.html │ ├── feed-ajax.html │ ├── field.html │ ├── friend.html │ ├── funco.html │ ├── gbook.html │ ├── group.html │ ├── head.html │ ├── index.html │ ├── journal.html │ ├── left.html │ ├── login.html │ ├── msg-add.html │ ├── msg-show.html │ ├── msg.html │ ├── open.html │ ├── pass-edit.html │ ├── pass.html │ ├── pay-card.html │ ├── pay-cardlist.html │ ├── pay-income.html │ ├── pay-list.html │ ├── pay-spend.html │ ├── pay.html │ ├── reg.html │ ├── right.html │ ├── share-list.html │ ├── share.html │ ├── space.html │ ├── uinfo.html │ ├── ulogin.html │ ├── web-pic.html │ └── web.html └── vod │ ├── add.html │ ├── fav.html │ ├── field.html │ ├── look.html │ ├── verify.html │ └── vod.html ├── images ├── emot.gif ├── load.gif ├── logo.png ├── lv.png ├── msg.gif ├── new.gif ├── sex.png ├── skin_bg.png ├── sync_weibo.png ├── wall.gif ├── wall.png ├── xitong_icon.gif └── xt.gif ├── js ├── city.js ├── jquery.emot.js ├── jquery.poshytip.js ├── jquery.validform.js └── user.js ├── preview.jpg └── skins.php /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | Cscms多元化内容管理系统 4 | 5 |
6 | --- 7 | 8 | Cscms 采用PHP5+MYSQL做为技术基础进行开发,采用OOP(面向对象)方式进行基础运行框架搭建,模块化开发方式做为功能开发形式,五年开发经验的团队,勇于创新追求完美的设计理念,被更多的政府机构、教育机构、事业单位、商业企业、个人站长所认可,V4.x在保留3.5版的特点的同时,对新版本作出重大的创新,为此我们做出了巨大的努力,希望能为更多的站长提供优质的建站系统! 9 | 10 | ## [阅读文档](https://music.chshcms.com/doc/cscms_v4/html/index.html) 11 | -------------------------------------------------------------------------------- /rewrite/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteBase / 3 | RewriteCond %{REQUEST_FILENAME} !-f 4 | RewriteCond %{REQUEST_FILENAME} !-d 5 | RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] -------------------------------------------------------------------------------- /rewrite/httpd.ini: -------------------------------------------------------------------------------- 1 | [ISAPI_Rewrite] 2 | CacheClockRate 3600 3 | RepeatLimit 32 4 | 5 | #要过滤的文件名和文件夹方法 (?!/要过滤的文件名或者目录名) 如后台入口文件 (?!/admin.php) 6 | #直接加到下面 ^的后面即可 7 | 8 | RewriteRule ^(?!/admin.php)(?!/favicon.ico)(?!/attachment)(?!/packs)(?!/cscms)(?!/index.php)(.*)$ /index\.php/$1 [I] -------------------------------------------------------------------------------- /rewrite/web.config: -------------------------------------------------------------------------------- 1 | 2 |Directory access is forbidden.
8 | 9 | 10 |