├── 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 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /upload/admin.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/attachment/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/attachment/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/attachment/logo.png -------------------------------------------------------------------------------- /upload/attachment/nan_nopic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/attachment/nan_nopic.jpg -------------------------------------------------------------------------------- /upload/attachment/nopic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/attachment/nopic.gif -------------------------------------------------------------------------------- /upload/attachment/nv_nopic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/attachment/nv_nopic.jpg -------------------------------------------------------------------------------- /upload/attachment/other/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /upload/cache/cscms_time/day.txt: -------------------------------------------------------------------------------- 1 | 14 -------------------------------------------------------------------------------- /upload/cache/cscms_time/home-day.txt: -------------------------------------------------------------------------------- 1 | 13 -------------------------------------------------------------------------------- /upload/cache/cscms_time/home-month.txt: -------------------------------------------------------------------------------- 1 | 06 -------------------------------------------------------------------------------- /upload/cache/cscms_time/home-week.txt: -------------------------------------------------------------------------------- 1 | 24 -------------------------------------------------------------------------------- /upload/cache/cscms_time/time.txt: -------------------------------------------------------------------------------- 1 | 1497510885 -------------------------------------------------------------------------------- /upload/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cache/session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cache/sql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /upload/cscms/app/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /upload/cscms/app/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/app/config/memcached.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | */ 21 | $config['default'] = require CSCMS.'sys'.FGF.'CS_Memcached.php'; 22 | -------------------------------------------------------------------------------- /upload/cscms/app/config/profiler.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/app/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/app/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/app/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/app/language/english/dance/admin/admin_lang.php: -------------------------------------------------------------------------------- 1 | %s 坐标的数字'; 23 | $lang['lcard_03'] = '请输入口令'; 24 | $lang['lcard_04'] = '提交验证'; 25 | $lang['lcard_05'] = '取消重置'; -------------------------------------------------------------------------------- /upload/cscms/app/language/english/sys/admin/admin_pl_lang.php: -------------------------------------------------------------------------------- 1 | 主标签'; 14 | $lang['tpl_06'] = '人气'; 15 | $lang['tpl_07'] = '操作'; 16 | $lang['tpl_08'] = '确定新增'; 17 | $lang['tpl_09'] = '新增子标签'; 18 | $lang['tpl_10'] = '删除'; 19 | $lang['tpl_11'] = '全选/反选'; 20 | $lang['tpl_12'] = '修改选中'; -------------------------------------------------------------------------------- /upload/cscms/app/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/app/language/zh_cn/dance/admin/admin_lang.php: -------------------------------------------------------------------------------- 1 | %s 坐标的数字'; 23 | $lang['lcard_03'] = '请输入口令'; 24 | $lang['lcard_04'] = '提交验证'; 25 | $lang['lcard_05'] = '取消重置'; -------------------------------------------------------------------------------- /upload/cscms/app/language/zh_cn/sys/admin/admin_pl_lang.php: -------------------------------------------------------------------------------- 1 | 主标签'; 14 | $lang['tpl_06'] = '人气'; 15 | $lang['tpl_07'] = '操作'; 16 | $lang['tpl_08'] = '确定新增'; 17 | $lang['tpl_09'] = '新增子标签'; 18 | $lang['tpl_10'] = '删除'; 19 | $lang['tpl_11'] = '全选/反选'; 20 | $lang['tpl_12'] = '修改选中'; -------------------------------------------------------------------------------- /upload/cscms/app/language/zh_cn/sys/plub_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/app/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/app/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/config/dance/bind.php: -------------------------------------------------------------------------------- 1 | 1, 4 | 'cscms_3' => 4, 5 | );?> -------------------------------------------------------------------------------- /upload/cscms/config/dance/day.txt: -------------------------------------------------------------------------------- 1 | 13 -------------------------------------------------------------------------------- /upload/cscms/config/dance/jumpurl.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /upload/cscms/config/dance/month.txt: -------------------------------------------------------------------------------- 1 | 06 -------------------------------------------------------------------------------- /upload/cscms/config/dance/rewrite.php: -------------------------------------------------------------------------------- 1 | 20, //版块ID ,开发者填写1 11 | 'name' => '音乐', //版块名称 12 | 'author' => 'CSCMS官方', //开发者名称 13 | 'version' => '2.3', //版块版本号 14 | 'description' => '诠释音乐门户', //板块说明200字以内 15 | ); 16 | -------------------------------------------------------------------------------- /upload/cscms/config/dance/uninstall.php: -------------------------------------------------------------------------------- 1 | 21, //版块ID ,开发者填写1 11 | 'name' => '新闻', //版块名称 12 | 'author' => 'CSCMS官方', //开发者名称 13 | 'version' => '1.1', //版块版本号 14 | 'description' => 'CSCMS新闻板块', //板块说明200字以内 15 | ); 16 | -------------------------------------------------------------------------------- /upload/cscms/config/news/uninstall.php: -------------------------------------------------------------------------------- 1 | 22, //版块ID ,开发者填写1 11 | 'name' => '图库', //版块名称 12 | 'author' => 'CSCMS官方', //开发者名称 13 | 'version' => '1.1', //版块版本号 14 | 'description' => 'CSCMS图库板块', //板块说明200字以内 15 | ); 16 | -------------------------------------------------------------------------------- /upload/cscms/config/pic/uninstall.php: -------------------------------------------------------------------------------- 1 | 23, //版块ID ,开发者填写1 11 | 'name' => '歌手', //版块名称 12 | 'author' => 'CSCMS官方', //开发者名称 13 | 'version' => '1.2', //版块版本号 14 | 'description' => 'CSCMS歌手板块', //板块说明200字以内 15 | ); 16 | -------------------------------------------------------------------------------- /upload/cscms/config/singer/uninstall.php: -------------------------------------------------------------------------------- 1 | '127.0.0.1', 4 | 'port' => 11211, 5 | 'weight' => 1, 6 | );?> -------------------------------------------------------------------------------- /upload/cscms/config/sys/CS_Redis.php: -------------------------------------------------------------------------------- 1 | 'tcp', //`tcp` or `unix` 4 | 'socket' => '/var/run/redis.sock', // in case of `unix` socket type 5 | 'host' => '127.0.0.1', 6 | 'password' => NULL, 7 | 'port' => 6379, 8 | 'timeout' => 0, 9 | ); -------------------------------------------------------------------------------- /upload/cscms/config/sys/Cs_Domain.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/cscms/config/sys/Cs_Field.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/cscms/config/sys/Cs_Ftp.php: -------------------------------------------------------------------------------- 1 | 'music', 4 | 'singer' => 'singer', 5 | 'news' => 'news', 6 | 'pic' => 'pic', 7 | 'vod' => 'vod', 8 | );?> -------------------------------------------------------------------------------- /upload/cscms/config/sys/Cs_Sms.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/config/vod/day.txt: -------------------------------------------------------------------------------- 1 | 12 -------------------------------------------------------------------------------- /upload/cscms/config/vod/jumpurl.txt: -------------------------------------------------------------------------------- 1 | http://192.168.1.3/admin.php/vod/admin/apiku?api=aHR0cDovL3d3dy5teXp5enkuY29tL2FwaS9tYXguYXNw&rid=0&op=24&ac=xgvod&do=caiji&key=&cid=0&page=4 -------------------------------------------------------------------------------- /upload/cscms/config/vod/month.txt: -------------------------------------------------------------------------------- 1 | 06 -------------------------------------------------------------------------------- /upload/cscms/config/vod/rewrite.php: -------------------------------------------------------------------------------- 1 | 24, //版块ID ,开发者填写1 11 | 'name' => '视频', //版块名称 12 | 'author' => 'CSCMS官方', //开发者名称 13 | 'version' => '1.9', //版块版本号 14 | 'description' => '诠释视频门户', //板块说明200字以内 15 | ); 16 | -------------------------------------------------------------------------------- /upload/cscms/config/vod/uninstall.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/pay/alipay_direct/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/cscms/pay/alipay_direct/log.txt -------------------------------------------------------------------------------- /upload/cscms/pay/alipay_trade/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/cscms/pay/alipay_trade/cacert.pem -------------------------------------------------------------------------------- /upload/cscms/pay/alipay_trade/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/pay/alipay_trade/log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/cscms/pay/alipay_trade/log.txt -------------------------------------------------------------------------------- /upload/cscms/pay/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/pay/tenpay/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/pay/wxpay/lib/WxPay.Config.php: -------------------------------------------------------------------------------- 1 | getMessage(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /upload/cscms/pay/yeepay/YeePay_HTML.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/cscms/pay/yeepay/YeePay_HTML.log -------------------------------------------------------------------------------- /upload/cscms/pay/yeepay/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/pay/yeepay/merchantProperties.php: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /upload/cscms/system/core/compat/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/database/drivers/ibase/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/database/drivers/pdo/subdrivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/database/drivers/sqlite3/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/fonts/arrusbt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/cscms/system/fonts/arrusbt.ttf -------------------------------------------------------------------------------- /upload/cscms/system/fonts/ggbi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/cscms/system/fonts/ggbi.ttf -------------------------------------------------------------------------------- /upload/cscms/system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/cscms/system/fonts/texb.ttf -------------------------------------------------------------------------------- /upload/cscms/system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/language/zh_cn/error_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /upload/cscms/system/language/zh_cn/migration_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/libraries/Cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/libraries/Javascript/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/libraries/Session/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/libraries/Session/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/uc_client/control/cache.php: -------------------------------------------------------------------------------- 1 | cachecontrol(); 16 | } 17 | 18 | function cachecontrol() { 19 | parent::__construct(); 20 | } 21 | 22 | function onupdate($arr) { 23 | $this->load("cache"); 24 | $_ENV['cache']->updatedata(); 25 | } 26 | 27 | } 28 | 29 | ?> 30 | -------------------------------------------------------------------------------- /upload/cscms/uc_client/control/domain.php: -------------------------------------------------------------------------------- 1 | domaincontrol(); 16 | } 17 | 18 | function domaincontrol() { 19 | parent::__construct(); 20 | $this->init_input(); 21 | $this->load('domain'); 22 | } 23 | 24 | function onls() { 25 | return $_ENV['domain']->get_list(1, 9999, 9999); 26 | } 27 | } 28 | 29 | ?> 30 | -------------------------------------------------------------------------------- /upload/cscms/uc_client/control/index.htm: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /upload/cscms/uc_client/data/cache/badwords.php: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /upload/cscms/uc_client/data/cache/index.htm: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /upload/cscms/uc_client/data/index.htm: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /upload/cscms/uc_client/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/uc_client/lib/index.htm: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /upload/cscms/uc_client/model/index.htm: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /upload/cscms/uploads/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/uploads/kdisk/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/uploads/oss/conf.inc.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/uploads/qiniu/conf.php: -------------------------------------------------------------------------------- 1 | '; 18 | $QINIU_SECRET_KEY = ''; 19 | 20 | 21 | -------------------------------------------------------------------------------- /upload/cscms/uploads/qiniu/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/cscms/uploads/qiniu/utils.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/favicon.ico -------------------------------------------------------------------------------- /upload/install.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/packs/images/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/images/load.gif -------------------------------------------------------------------------------- /upload/packs/images/msg_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/images/msg_bg.gif -------------------------------------------------------------------------------- /upload/packs/images/skins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/images/skins.jpg -------------------------------------------------------------------------------- /upload/packs/images/stars1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/images/stars1.gif -------------------------------------------------------------------------------- /upload/packs/images/stars2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/images/stars2.gif -------------------------------------------------------------------------------- /upload/packs/images/stars3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/images/stars3.gif -------------------------------------------------------------------------------- /upload/packs/images/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/images/tip.png -------------------------------------------------------------------------------- /upload/packs/images/tip_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/images/tip_back.png -------------------------------------------------------------------------------- /upload/packs/images/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/images/warning.png -------------------------------------------------------------------------------- /upload/packs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/packs/install/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/install/images/bg.png -------------------------------------------------------------------------------- /upload/packs/install/images/btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/install/images/btn.png -------------------------------------------------------------------------------- /upload/packs/install/images/complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/install/images/complete.png -------------------------------------------------------------------------------- /upload/packs/install/images/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/install/images/header.png -------------------------------------------------------------------------------- /upload/packs/install/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/install/images/icon.png -------------------------------------------------------------------------------- /upload/packs/install/images/icon_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/install/images/icon_install.png -------------------------------------------------------------------------------- /upload/packs/install/images/icon_update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/install/images/icon_update.png -------------------------------------------------------------------------------- /upload/packs/install/images/ignore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/install/images/ignore.png -------------------------------------------------------------------------------- /upload/packs/install/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/packs/install/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/install/images/loading.gif -------------------------------------------------------------------------------- /upload/packs/install/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/install/images/logo.png -------------------------------------------------------------------------------- /upload/packs/install/images/pop_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/install/images/pop_loading.gif -------------------------------------------------------------------------------- /upload/packs/install/images/step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/install/images/step.png -------------------------------------------------------------------------------- /upload/packs/install/images/tips_system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/install/images/tips_system.png -------------------------------------------------------------------------------- /upload/packs/install/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/packs/ipdata/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /upload/packs/ipdata/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/packs/ipdata/mini.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/ipdata/mini.dat -------------------------------------------------------------------------------- /upload/packs/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/packs/layui/css/modules/layer/default/icon-ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/css/modules/layer/default/icon-ext.png -------------------------------------------------------------------------------- /upload/packs/layui/css/modules/layer/default/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/css/modules/layer/default/icon.png -------------------------------------------------------------------------------- /upload/packs/layui/css/modules/layer/default/loading-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/css/modules/layer/default/loading-0.gif -------------------------------------------------------------------------------- /upload/packs/layui/css/modules/layer/default/loading-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/css/modules/layer/default/loading-1.gif -------------------------------------------------------------------------------- /upload/packs/layui/css/modules/layer/default/loading-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/css/modules/layer/default/loading-2.gif -------------------------------------------------------------------------------- /upload/packs/layui/font/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/font/iconfont.eot -------------------------------------------------------------------------------- /upload/packs/layui/font/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/font/iconfont.ttf -------------------------------------------------------------------------------- /upload/packs/layui/font/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/font/iconfont.woff -------------------------------------------------------------------------------- /upload/packs/layui/images/face/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/0.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/1.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/10.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/11.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/12.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/13.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/14.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/14.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/15.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/16.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/17.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/17.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/18.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/19.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/19.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/2.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/20.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/21.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/21.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/22.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/22.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/23.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/23.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/24.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/25.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/25.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/26.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/26.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/27.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/27.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/28.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/29.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/29.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/3.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/30.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/30.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/31.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/32.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/33.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/33.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/34.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/34.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/35.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/35.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/36.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/36.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/37.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/37.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/38.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/39.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/39.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/4.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/40.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/40.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/41.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/41.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/42.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/42.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/43.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/43.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/44.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/45.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/45.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/46.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/47.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/47.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/48.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/49.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/49.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/5.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/50.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/51.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/51.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/52.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/52.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/53.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/54.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/54.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/55.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/55.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/56.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/56.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/57.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/57.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/58.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/58.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/59.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/59.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/6.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/60.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/60.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/61.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/61.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/62.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/62.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/63.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/63.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/64.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/65.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/66.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/66.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/67.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/67.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/68.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/68.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/69.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/69.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/7.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/70.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/70.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/71.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/8.gif -------------------------------------------------------------------------------- /upload/packs/layui/images/face/9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/layui/images/face/9.gif -------------------------------------------------------------------------------- /upload/packs/swf/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/swf/ZeroClipboard.swf -------------------------------------------------------------------------------- /upload/packs/swf/avatar.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/swf/avatar.swf -------------------------------------------------------------------------------- /upload/packs/swf/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/packs/swfupload/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/swfupload/images/cross.png -------------------------------------------------------------------------------- /upload/packs/swfupload/images/msg_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/swfupload/images/msg_bg.png -------------------------------------------------------------------------------- /upload/packs/swfupload/images/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/swfupload/images/off.png -------------------------------------------------------------------------------- /upload/packs/swfupload/images/swfBnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/swfupload/images/swfBnt.png -------------------------------------------------------------------------------- /upload/packs/swfupload/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/packs/swfupload/swfupload.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/swfupload/swfupload.swf -------------------------------------------------------------------------------- /upload/packs/vod_player/56.js: -------------------------------------------------------------------------------- 1 | function $Showhtml(){ 2 | document.getElementById('playad').style.display = "none"; 3 | if(isWap){ 4 | var player = ''; 5 | }else{ 6 | var player = ''; 7 | } 8 | document.getElementById('playlist').innerHTML = player; 9 | } 10 | if(parent.cs_adloadtime){ 11 | setTimeout("$Showhtml();",parent.cs_adloadtime*1000); 12 | } 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /upload/packs/vod_player/acfun.js: -------------------------------------------------------------------------------- 1 | function $Showhtml(){ 2 | document.getElementById('playad').style.display = "none"; 3 | player = ''; 4 | document.getElementById('playlist').innerHTML = player; 5 | } 6 | if(parent.cs_adloadtime){ 7 | setTimeout("$Showhtml();",parent.cs_adloadtime*1000); 8 | } 9 | 10 | 11 | -------------------------------------------------------------------------------- /upload/packs/vod_player/baofeng.js: -------------------------------------------------------------------------------- 1 | function $Showhtml(){ 2 | document.getElementById('playad').style.display = "none"; 3 | player = ''; 4 | document.getElementById('playlist').innerHTML = player; 5 | } 6 | if(parent.cs_adloadtime){ 7 | setTimeout("$Showhtml();",parent.cs_adloadtime*1000); 8 | } 9 | 10 | 11 | -------------------------------------------------------------------------------- /upload/packs/vod_player/ckplayer.js: -------------------------------------------------------------------------------- 1 | function $Showhtml(){ 2 | document.getElementById('playad').style.display = "none"; 3 | player = ''; 4 | document.getElementById('playlist').innerHTML = player; 5 | } 6 | if(parent.cs_adloadtime){ 7 | setTimeout("$Showhtml();",parent.cs_adloadtime*1000); 8 | } 9 | 10 | -------------------------------------------------------------------------------- /upload/packs/vod_player/ckplayer/ckplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/ckplayer/ckplayer.swf -------------------------------------------------------------------------------- /upload/packs/vod_player/ckplayer/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/packs/vod_player/ckplayer/share/feixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/ckplayer/share/feixin.png -------------------------------------------------------------------------------- /upload/packs/vod_player/ckplayer/share/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/ckplayer/share/google.png -------------------------------------------------------------------------------- /upload/packs/vod_player/ckplayer/share/kaixin001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/ckplayer/share/kaixin001.png -------------------------------------------------------------------------------- /upload/packs/vod_player/ckplayer/share/msn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/ckplayer/share/msn.png -------------------------------------------------------------------------------- /upload/packs/vod_player/ckplayer/share/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/ckplayer/share/qq.png -------------------------------------------------------------------------------- /upload/packs/vod_player/ckplayer/share/qq2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/ckplayer/share/qq2.png -------------------------------------------------------------------------------- /upload/packs/vod_player/ckplayer/share/qzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/ckplayer/share/qzone.png -------------------------------------------------------------------------------- /upload/packs/vod_player/ckplayer/share/rr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/ckplayer/share/rr.png -------------------------------------------------------------------------------- /upload/packs/vod_player/ckplayer/share/sina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/ckplayer/share/sina.png -------------------------------------------------------------------------------- /upload/packs/vod_player/ckplayer/share/sohu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/ckplayer/share/sohu.png -------------------------------------------------------------------------------- /upload/packs/vod_player/ckplayer/share/tianya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/ckplayer/share/tianya.png -------------------------------------------------------------------------------- /upload/packs/vod_player/ckplayer/style.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/ckplayer/style.swf -------------------------------------------------------------------------------- /upload/packs/vod_player/cmp/cmp.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/cmp/cmp.swf -------------------------------------------------------------------------------- /upload/packs/vod_player/cmp/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/packs/vod_player/cmp/mp3.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/cmp/mp3.swf -------------------------------------------------------------------------------- /upload/packs/vod_player/cmp/sharing.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/cmp/sharing.swf -------------------------------------------------------------------------------- /upload/packs/vod_player/cmp/vplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/cmp/vplayer.swf -------------------------------------------------------------------------------- /upload/packs/vod_player/ifeng.js: -------------------------------------------------------------------------------- 1 | function $Showhtml(){ 2 | document.getElementById('playad').style.display = "none"; 3 | player = ''; 4 | document.getElementById('playlist').innerHTML = player; 5 | } 6 | if(parent.cs_adloadtime){ 7 | setTimeout("$Showhtml();",parent.cs_adloadtime*1000); 8 | } 9 | 10 | 11 | -------------------------------------------------------------------------------- /upload/packs/vod_player/images/btn_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/images/btn_1.gif -------------------------------------------------------------------------------- /upload/packs/vod_player/images/btn_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/images/btn_2.gif -------------------------------------------------------------------------------- /upload/packs/vod_player/images/down.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/images/down.jpg -------------------------------------------------------------------------------- /upload/packs/vod_player/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/packs/vod_player/iva.js: -------------------------------------------------------------------------------- 1 | function $Showhtml(){ 2 | document.getElementById('playad').style.display = "none"; 3 | player = ''; 4 | document.getElementById('playlist').innerHTML = player; 5 | } 6 | setTimeout("$Showhtml();",parent.cs_adloadtime*1000); 7 | -------------------------------------------------------------------------------- /upload/packs/vod_player/jplayer/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/packs/vod_player/jplayer/js/Jplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/jplayer/js/Jplayer.swf -------------------------------------------------------------------------------- /upload/packs/vod_player/jplayer/skin/blue/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/jplayer/skin/blue/player.png -------------------------------------------------------------------------------- /upload/packs/vod_player/jplayer/skin/lrc/lrcbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/jplayer/skin/lrc/lrcbg.png -------------------------------------------------------------------------------- /upload/packs/vod_player/jplayer/skin/lrc/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/vod_player/jplayer/skin/lrc/player.png -------------------------------------------------------------------------------- /upload/packs/vod_player/loading.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
正在加载播放中,请稍等....
8 | 9 | -------------------------------------------------------------------------------- /upload/packs/vod_player/maxtv.js: -------------------------------------------------------------------------------- 1 | function $Showhtml(){ 2 | document.getElementById('playad').style.display = "none"; 3 | player = ''; 4 | document.getElementById('playlist').innerHTML = player; 5 | } 6 | if(parent.cs_adloadtime){ 7 | setTimeout("$Showhtml();",parent.cs_adloadtime*1000); 8 | } 9 | 10 | 11 | -------------------------------------------------------------------------------- /upload/packs/vod_player/qiyi.js: -------------------------------------------------------------------------------- 1 | function $Showhtml(){ 2 | document.getElementById('playad').style.display = "none"; 3 | if(isWap){ 4 | var player = ''; 5 | }else{ 6 | var player = ''; 7 | } 8 | document.getElementById('playlist').innerHTML = player; 9 | } 10 | if(parent.cs_adloadtime){ 11 | setTimeout("$Showhtml();",parent.cs_adloadtime*1000); 12 | } 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /upload/packs/vod_player/qvod.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /upload/packs/vod_player/swf.js: -------------------------------------------------------------------------------- 1 | function $Showhtml(){ 2 | document.getElementById('playad').style.display = "none"; 3 | player = ''; 4 | document.getElementById('playlist').innerHTML = player; 5 | } 6 | if(parent.cs_adloadtime){ 7 | setTimeout("$Showhtml();",parent.cs_adloadtime*1000); 8 | } 9 | 10 | 11 | -------------------------------------------------------------------------------- /upload/packs/vod_player/ydisk.js: -------------------------------------------------------------------------------- 1 | function $Showhtml(){ 2 | document.getElementById('playad').style.display = "none"; 3 | player = ''; 4 | document.getElementById('playlist').innerHTML = player; 5 | } 6 | 7 | if(parent.cs_adloadtime){ 8 | setTimeout("$Showhtml();",parent.cs_adloadtime*1000); 9 | } 10 | -------------------------------------------------------------------------------- /upload/packs/webupload/Moxie.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/webupload/Moxie.swf -------------------------------------------------------------------------------- /upload/packs/webupload/Moxie.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/webupload/Moxie.xap -------------------------------------------------------------------------------- /upload/packs/webupload/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/webupload/images/cross.png -------------------------------------------------------------------------------- /upload/packs/webupload/images/msg_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/webupload/images/msg_bg.png -------------------------------------------------------------------------------- /upload/packs/webupload/images/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/webupload/images/off.png -------------------------------------------------------------------------------- /upload/packs/webupload/images/swfBnt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/packs/webupload/images/swfBnt.png -------------------------------------------------------------------------------- /upload/plugins/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /upload/plugins/sys/Opt.php: -------------------------------------------------------------------------------- 1 | load->model('Cstpl'); 15 | } 16 | 17 | public function index($name=''){ 18 | if(empty($name)){ 19 | msg_url(L('opt_01'),Web_Path); 20 | } 21 | //静态模式则跳转 22 | if(Web_Mode==3){ 23 | //获取静态路径 24 | $Htmllink = Web_Path.'opt/'.$name.'.html'; 25 | header("Location: ".$Htmllink); 26 | exit; 27 | } 28 | $this->Cstpl->opt($name); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /upload/plugins/sys/Page.php: -------------------------------------------------------------------------------- 1 | load->model('Cstpl'); 15 | } 16 | 17 | public function index($name=''){ 18 | if(empty($name)){ 19 | msg_url(L('opt_01'),Web_Path); 20 | } 21 | //获取数据 22 | $row=$this->Csdb->get_row_arr('page','*',$name,'name'); 23 | if(!$row){ 24 | msg_url(L('opt_02'),Web_Path); 25 | } 26 | $this->Cstpl->page($row); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /upload/plugins/sys/Tags.php: -------------------------------------------------------------------------------- 1 | input->get('fid',true); //返回ID,一个页面多个返回可以用到 18 | if($data['fid']=='undefined') $data['fid']='tags'; 19 | $data['tags']=$this->db->query("SELECT * FROM ".CS_SqlPrefix."tags where fid=0 order by xid asc")->result(); 20 | $this->load->get_templates('common'); 21 | $this->load->view('tags.html',$data); 22 | } 23 | } -------------------------------------------------------------------------------- /upload/plugins/sys/api/Baidu.php: -------------------------------------------------------------------------------- 1 | load->get_templates('common'); 20 | $Mark_Text=$this->load->view('baidu.html','',true); 21 | $Mark_Text=$this->Csskins->template_parse($Mark_Text,false); 22 | echo ''.$Mark_Text; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /upload/plugins/sys/api/Google.php: -------------------------------------------------------------------------------- 1 | load->get_templates('common'); 20 | $Mark_Text=$this->load->view('google.html','',true); 21 | $Mark_Text=$this->Csskins->template_parse($Mark_Text,false); 22 | echo ''.$Mark_Text; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /upload/plugins/sys/api/S360.php: -------------------------------------------------------------------------------- 1 | load->get_templates('common'); 20 | $Mark_Text=$this->load->view('360.html','',true); 21 | $Mark_Text=$this->Csskins->template_parse($Mark_Text,false); 22 | echo ''.$Mark_Text; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /upload/plugins/sys/api/Sitemap.php: -------------------------------------------------------------------------------- 1 | load->get_templates('common'); 20 | $Mark_Text=$this->load->view('sitemap.html','',true); 21 | $Mark_Text=$this->Csskins->template_parse($Mark_Text,false); 22 | echo ''.$Mark_Text; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /upload/plugins/sys/user/Index.php: -------------------------------------------------------------------------------- 1 | load->model('Cstpl'); 13 | } 14 | 15 | public function index(){ 16 | $title = "会员 - ".Web_Name; 17 | //当前会员 18 | $row = array(); 19 | if(!empty($_SESSION['cscms__id'])){ 20 | $row=$this->Csdb->get_row_arr('user','*',$_SESSION['cscms__id']); 21 | if(empty($row['nichen'])) $row['nichen']=$row['name']; 22 | } 23 | $this->Cstpl->user_list($row,'',1,'index.html',$title); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /upload/robots.txt: -------------------------------------------------------------------------------- 1 | # Robots For CSCMS 4.0 2 | User-agent: * 3 | Disallow: /attachment 4 | Disallow: /cache 5 | Disallow: /cscms 6 | Disallow: /plugins 7 | Disallow: /admin.php -------------------------------------------------------------------------------- /upload/tpl/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | order allow,deny 3 | deny from all 4 | -------------------------------------------------------------------------------- /upload/tpl/admin/sys/upgrade_look.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?=L('admin_title')?> 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 |
15 | 16 | 17 | -------------------------------------------------------------------------------- /upload/tpl/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | A PHP Error was encountered 4 | 5 | Severity: 6 | Message: 7 | Filename: 8 | Line Number: 9 | 10 | 11 | 12 | Backtrace: 13 | 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /upload/tpl/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/tpl/errors/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/tpl/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /upload/tpl/mobile/common/360.html: -------------------------------------------------------------------------------- 1 | 2 | {cscms:dance table="dance" loop="500" sort="addtime"} 3 | 4 | [dance:url zdy=dance,id,play,id] 5 | [dance:addtime style=Y-m-d] 6 | daily 7 | 0.8 8 | 9 | {/cscms:dance} 10 | -------------------------------------------------------------------------------- /upload/tpl/mobile/common/baidu.html: -------------------------------------------------------------------------------- 1 | 2 | {cscms:path} 3 | {cscms:webname} 4 | 1800 5 | {cscms:dance table="dance" loop="500" sort="addtime"} 6 | 7 | {cscmsphp}xml_string('[dance:name]');{/cscmsphp} 8 | [dance:url zdy=dance,id,play,id] 9 | {cscmsphp}xml_string('[dance:text len=200]');{/cscmsphp} 10 | {cscmsphp}xml_string('[dance:tags]');{/cscmsphp} 11 | {cscmsphp}xml_string('[dance:singer zd=name]');{/cscmsphp} 12 | {cscmsphp}xml_string('[dance:user zd=nichen]');{/cscmsphp} 13 | [dance:addtime] 14 | 15 | {/cscms:dance} 16 | 17 | 18 | -------------------------------------------------------------------------------- /upload/tpl/mobile/common/google.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {cscms:path} 4 | 5 | {cscms:dance table="dance" loop="500" sort="addtime"} 6 | 7 | [dance:url zdy=dance,id,play,id] 8 | [dance:addtime style=Y-m-d] 9 | 10 | {/cscms:dance} 11 | 12 | 13 | -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/config.php: -------------------------------------------------------------------------------- 1 | '2', 4 | 'dir' => 'skin01', 5 | 'path' => 'skin01/html/', 6 | 'name' => '默认会员主页模板', 7 | 'author' => 'cscms', 8 | 'version' => 'v3.5', 9 | 'description' => '程氏CMS官方 www.chshcms.com', 10 | 'vip' => 0, 11 | 'level' => 0, 12 | 'cion' => 0, 13 | );?> -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/html/sys/bottom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/html/sys/uinfo.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/html/sys/ulogin.html: -------------------------------------------------------------------------------- 1 | 注册登录 -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/a_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/a_icon.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/al_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/al_space.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/b_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/b_ico.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/banner_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/banner_bg.jpg -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/center_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/center_logo.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/close_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/close_ie6.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/dj_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/dj_icon.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/headbox_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/headbox_bg.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/headboxsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/headboxsprite.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/icon/realname.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/icon/realname.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/icon/recommend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/icon/recommend.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/icon/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/icon/star.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/icon/urealname.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/icon/urealname.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/icon/urecommend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/icon/urecommend.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/icon/ustar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/icon/ustar.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/icon/uvip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/icon/uvip.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/icon/vip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/icon/vip.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/icon_liwu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/icon_liwu2.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/indexsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/indexsprite.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/logo.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/m_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/m_icon.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/msg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/msg.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/null_song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/null_song.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/pinglun_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/pinglun_icon.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/praise.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/praise.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/share_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/share_icon.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/t_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/t_bg.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/images/t_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/images/t_icon.png -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/js/wap.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Cscms手机前台 3 | * www.chshcms.com 4 | */ 5 | var wap = { 6 | plutog : function(){ 7 | if($(".plugins").is(":hidden")){ 8 | $(".plugins").show(); 9 | $('.more i').html(''); 10 | }else{ 11 | $(".plugins").hide(); 12 | $('.more i').html(''); 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /upload/tpl/mobile/home/skin01/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/home/skin01/preview.jpg -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/config.php: -------------------------------------------------------------------------------- 1 | '1', //云平台ID(开发者可以留空) 6 | 'dir' => 'default', //模板唯一标示(模板目录名) 7 | 'path' => 'default/html/', //模板安装目录 8 | 'name' => '默认手机模板', //模板名称 9 | 'author' => 'cscms', //模板作者 10 | 'version' => '3.5', //模板版本 11 | 'description' => "程氏CMS官方 www.chshcms.com" //模板版权/介绍 12 | ); 13 | 14 | -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/html/dance/uinfo.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/html/dance/ulogin.html: -------------------------------------------------------------------------------- 1 | 注册登录 -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/html/news/uinfo.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/html/news/ulogin.html: -------------------------------------------------------------------------------- 1 | 注册登录 2 | -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/html/pic/uinfo.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/html/pic/ulogin.html: -------------------------------------------------------------------------------- 1 | 注册登录 2 | -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/html/singer/uinfo.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/html/singer/ulogin.html: -------------------------------------------------------------------------------- 1 | 注册登录 -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/html/sys/head.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | 主站 6 | {cscms:plu table="plugins" field="dir,name" order="asc"} 7 | [plu:name] 8 | {/cscms:plu} 9 | 会员 10 |
11 | {cscms:logkuang} 12 |
-------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/html/sys/uinfo.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/html/sys/ulogin.html: -------------------------------------------------------------------------------- 1 | 注册登录 -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/html/vod/uinfo.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/html/vod/ulogin.html: -------------------------------------------------------------------------------- 1 | 注册登录 -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/ad.jpg -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/baidu_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/baidu_icon.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/close_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/close_ie6.png -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/douban_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/douban_icon.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/kaixin_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/kaixin_icon.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/logo.png -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/lv.png -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/mdnxt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/mdnxt.png -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/mdpause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/mdpause.png -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/mdplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/mdplay.png -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/mdpre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/mdpre.png -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/playbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/playbar.png -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/qq_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/qq_icon.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/renren_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/renren_icon.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/sex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/sex.png -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/share_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/share_icon.png -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/images/weibo_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/images/weibo_icon.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/js/news.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Cscms新闻手机前台 3 | * www.chshcms.com 4 | **/ 5 | var news = { 6 | init : function(sign){ 7 | 8 | } 9 | ,mclass : function (){ 10 | if($(".md-head-more").is(":hidden")){ 11 | $(".md-head-more").show(); 12 | }else{ 13 | $(".md-head-more").hide(); 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/js/wap.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Cscms手机前台 3 | * www.chshcms.com 4 | */ 5 | var wap = { 6 | plutog : function(){ 7 | if($(".plugins").is(":hidden")){ 8 | $(".plugins").show(); 9 | $('.more i').removeClass('fa-chevron-down').addClass('fa-chevron-up'); 10 | }else{ 11 | $(".plugins").hide(); 12 | $('.more i').removeClass('fa-chevron-up').addClass('fa-chevron-down'); 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /upload/tpl/mobile/skins/default/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/skins/default/preview.jpg -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/config.php: -------------------------------------------------------------------------------- 1 | '2', //云平台ID 6 | 'dir' => 'default', //模板唯一标示(模板目录名) 7 | 'path' => 'default/html/', //模板安装目录 8 | 'name' => '官方默认会员中心模板', //模板名称 9 | 'author' => 'cscms', //模板作者 10 | 'version' => 'v3.5', //模板版本 11 | 'description' => "程氏CMS官方 www.chshcms.com" //模板版权/介绍 12 | ); 13 | 14 | -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/html/dance/bottom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/html/dance/head.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 会员中心 4 |  返回 5 |  菜单 6 |
7 |
{cscms:logkuang}
8 | {cscms:left} 9 |
10 |
11 | -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/html/news/bottom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/html/news/head.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 会员中心 4 |  返回 5 |  菜单 6 |
7 |
{cscms:logkuang}
8 | {cscms:left} 9 |
10 |
11 | -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/html/pic/bottom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/html/pic/head.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 会员中心 4 |  返回 5 |  菜单 6 |
7 |
{cscms:logkuang}
8 | {cscms:left} 9 |
10 |
11 | -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/html/singer/bottom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/html/singer/head.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 会员中心 4 |  返回 5 |  菜单 6 |
7 |
{cscms:logkuang}
8 | {cscms:left} 9 |
10 |
11 | -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/html/sys/bottom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/html/sys/head.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 会员中心 4 |  返回 5 |  菜单 6 |
7 |
{cscms:logkuang}
8 | {cscms:left} 9 |
10 |
11 | -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/html/sys/uinfo.html: -------------------------------------------------------------------------------- 1 | 2 | [user:count zdy=msg,uida,id,did,0] 3 | -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/html/sys/ulogin.html: -------------------------------------------------------------------------------- 1 | 注册登录 -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/html/vod/bottom.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/html/vod/head.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 会员中心 4 |  返回 5 |  菜单 6 |
7 |
{cscms:logkuang}
8 | {cscms:left} 9 |
10 |
11 | -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/images/baidu_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/user/default/images/baidu_icon.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/images/douban_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/user/default/images/douban_icon.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/images/emot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/user/default/images/emot.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/images/kaixin_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/user/default/images/kaixin_icon.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/user/default/images/logo.png -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/images/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/user/default/images/new.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/images/qq_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/user/default/images/qq_icon.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/images/renren_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/user/default/images/renren_icon.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/images/sex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/user/default/images/sex.png -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/images/skin_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/user/default/images/skin_bg.png -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/images/sync_weibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/user/default/images/sync_weibo.png -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/images/wall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/user/default/images/wall.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/images/weibo_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/user/default/images/weibo_icon.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/images/xt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/user/default/images/xt.gif -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/js/wap.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Cscms手机前台 3 | * www.chshcms.com 4 | */ 5 | var wap = { 6 | plutog : function(){ 7 | if($(".plugins").is(":hidden")){ 8 | $(".plugins").show(); 9 | $('.more i').html(''); 10 | }else{ 11 | $(".plugins").hide(); 12 | $('.more i').html(''); 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /upload/tpl/mobile/user/default/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/mobile/user/default/preview.jpg -------------------------------------------------------------------------------- /upload/tpl/pc/common/360.html: -------------------------------------------------------------------------------- 1 | 2 | {cscms:dance table="dance" loop="500" sort="addtime"} 3 | 4 | [dance:url zdy=dance,id,play,id] 5 | [dance:addtime style=Y-m-d] 6 | daily 7 | 0.8 8 | 9 | {/cscms:dance} 10 | -------------------------------------------------------------------------------- /upload/tpl/pc/common/baidu.html: -------------------------------------------------------------------------------- 1 | 2 | {cscms:path} 3 | {cscms:webname} 4 | 1800 5 | {cscms:dance table="dance" loop="500" sort="addtime"} 6 | 7 | {cscmsphp}xml_string('[dance:name]');{/cscmsphp} 8 | [dance:url zdy=dance,id,play,id] 9 | {cscmsphp}xml_string('[dance:text len=200]');{/cscmsphp} 10 | {cscmsphp}xml_string('[dance:tags]');{/cscmsphp} 11 | {cscmsphp}xml_string('[dance:singer zd=name]');{/cscmsphp} 12 | {cscmsphp}xml_string('[dance:user zd=nichen]');{/cscmsphp} 13 | [dance:addtime] 14 | 15 | {/cscms:dance} 16 | 17 | 18 | -------------------------------------------------------------------------------- /upload/tpl/pc/common/google.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {cscms:path} 4 | 5 | {cscms:dance table="dance" loop="500" sort="addtime"} 6 | 7 | [dance:url zdy=dance,id,play,id] 8 | [dance:addtime style=Y-m-d] 9 | 10 | {/cscms:dance} 11 | 12 | 13 | -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/config.php: -------------------------------------------------------------------------------- 1 | '2', 4 | 'dir' => 'skin01', 5 | 'path' => 'skin01/html/', 6 | 'name' => '默认会员主页模板', 7 | 'author' => 'cscms', 8 | 'version' => 'v3.5', 9 | 'description' => '程氏CMS官方 www.chshcms.com', 10 | 'vip' => 0, 11 | 'level' => 0, 12 | 'cion' => 0, 13 | );?> -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/html/sys/ulogin.html: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/a_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/a_icon.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/al_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/al_space.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/b_ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/b_ico.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/banner_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/banner_bg.jpg -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/center_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/center_logo.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/close_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/close_ie6.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/dj_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/dj_icon.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/headbox_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/headbox_bg.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/headboxsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/headboxsprite.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/icon/realname.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/icon/realname.gif -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/icon/recommend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/icon/recommend.gif -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/icon/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/icon/star.gif -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/icon/urealname.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/icon/urealname.gif -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/icon/urecommend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/icon/urecommend.gif -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/icon/ustar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/icon/ustar.gif -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/icon/uvip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/icon/uvip.gif -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/icon/vip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/icon/vip.gif -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/icon_liwu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/icon_liwu2.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/indexsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/indexsprite.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/m_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/m_icon.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/msg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/msg.gif -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/null_song.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/null_song.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/pinglun_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/pinglun_icon.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/praise.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/praise.gif -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/share_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/share_icon.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/t_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/t_bg.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/images/t_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/images/t_icon.png -------------------------------------------------------------------------------- /upload/tpl/pc/home/skin01/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/home/skin01/preview.jpg -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/config.php: -------------------------------------------------------------------------------- 1 | '100', //云平台ID(开发者可以留空) 6 | 'dir' => 'default', //模板唯一标示(模板目录名) 7 | 'path' => 'default/html/', //模板安装目录 8 | 'name' => '官方默认模板', //模板名称 9 | 'author' => 'cscms', //模板作者 10 | 'version' => 'v1', //模板版本 11 | 'description' => "程氏CMS官方 www.chshcms.com" //模板版权/介绍 12 | ); 13 | 14 | -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/html/news/topic-show.html: -------------------------------------------------------------------------------- 1 | news topic-show -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/html/news/topic.html: -------------------------------------------------------------------------------- 1 | news topic-list -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/images/ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/skins/default/images/ad.jpg -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/images/bottom_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/skins/default/images/bottom_logo.png -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/images/close_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/skins/default/images/close_ie6.png -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/images/default_avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/skins/default/images/default_avatar.jpg -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/images/iconall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/skins/default/images/iconall.png -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/skins/default/images/logo.png -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/images/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/skins/default/images/loop.png -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/images/msg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/skins/default/images/msg.gif -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/skins/default/images/music.png -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/images/playNow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/skins/default/images/playNow.gif -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/images/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/skins/default/images/player.png -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/images/share_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/skins/default/images/share_icon.png -------------------------------------------------------------------------------- /upload/tpl/pc/skins/default/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/skins/default/preview.jpg -------------------------------------------------------------------------------- /upload/tpl/pc/user/default/config.php: -------------------------------------------------------------------------------- 1 | '2', //云平台ID 6 | 'dir' => 'default', //模板唯一标示(模板目录名) 7 | 'path' => 'default/html/', //模板安装目录 8 | 'name' => '官方默认会员中心模板', //模板名称 9 | 'author' => 'cscms', //模板作者 10 | 'version' => 'v3.5', //模板版本 11 | 'description' => "程氏CMS官方 www.chshcms.com" //模板版权/介绍 12 | ); 13 | 14 | -------------------------------------------------------------------------------- /upload/tpl/pc/user/default/images/emot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/user/default/images/emot.gif -------------------------------------------------------------------------------- /upload/tpl/pc/user/default/images/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/user/default/images/load.gif -------------------------------------------------------------------------------- /upload/tpl/pc/user/default/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/user/default/images/logo.png -------------------------------------------------------------------------------- /upload/tpl/pc/user/default/images/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/user/default/images/lv.png -------------------------------------------------------------------------------- /upload/tpl/pc/user/default/images/msg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/user/default/images/msg.gif -------------------------------------------------------------------------------- /upload/tpl/pc/user/default/images/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/user/default/images/new.gif -------------------------------------------------------------------------------- /upload/tpl/pc/user/default/images/sex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/user/default/images/sex.png -------------------------------------------------------------------------------- /upload/tpl/pc/user/default/images/skin_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/user/default/images/skin_bg.png -------------------------------------------------------------------------------- /upload/tpl/pc/user/default/images/sync_weibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/user/default/images/sync_weibo.png -------------------------------------------------------------------------------- /upload/tpl/pc/user/default/images/wall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/user/default/images/wall.gif -------------------------------------------------------------------------------- /upload/tpl/pc/user/default/images/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/user/default/images/wall.png -------------------------------------------------------------------------------- /upload/tpl/pc/user/default/images/xitong_icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/user/default/images/xitong_icon.gif -------------------------------------------------------------------------------- /upload/tpl/pc/user/default/images/xt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/user/default/images/xt.gif -------------------------------------------------------------------------------- /upload/tpl/pc/user/default/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chshcms/cscms/ad8bf041d71c36e524c2ba3b4daf833786657cac/upload/tpl/pc/user/default/preview.jpg --------------------------------------------------------------------------------