在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → php开发的基于CodeIgniter的CMS系统

php开发的基于CodeIgniter的CMS系统

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:3.88M
  • 下载次数:4
  • 浏览次数:76
  • 发布时间:2021-03-12
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
php开发的基于CodeIgniter的CMS系统,没有应用任何模板。
【实例截图】
【核心代码】
1bbd4475-0b76-4a2f-ac50-b70b80ed2560
└── kenCMS
├── application
│   ├── config
│   │   ├── autoload.php
│   │   ├── config.php
│   │   ├── constants.php
│   │   ├── database.php
│   │   ├── doctypes.php
│   │   ├── hooks.php
│   │   ├── index.html
│   │   ├── mimes.php
│   │   ├── routes.php
│   │   ├── smileys.php
│   │   ├── user_agents.php
│   │   └── webconfig.php
│   ├── controllers
│   │   ├── admin
│   │   │   ├── category.php
│   │   │   ├── guestbook.php
│   │   │   ├── index.php
│   │   │   ├── link.php
│   │   │   ├── news.php
│   │   │   ├── user.php
│   │   │   └── webconfig.php
│   │   ├── guestbook.php
│   │   ├── index.php
│   │   ├── lists.php
│   │   └── show.php
│   ├── errors
│   │   ├── error_404.php
│   │   ├── error_db.php
│   │   ├── error_general.php
│   │   ├── error_php.php
│   │   └── index.html
│   ├── helpers
│   │   ├── functions_helper.php
│   │   ├── index.html
│   │   └── site_helper.php
│   ├── hooks
│   │   └── index.html
│   ├── index.html
│   ├── language
│   │   └── english
│   │   └── index.html
│   ├── libraries
│   │   ├── index.html
│   │   ├── MY_Controller.php
│   │   └── MY_Loader.php
│   ├── models
│   │   ├── category_model.php
│   │   └── index.html
│   └── views
│   └── admin
│   ├── category_add.php
│   ├── category_filed.php
│   ├── category.php
│   ├── defult.php
│   ├── guestbook.php
│   ├── header.php
│   ├── images
│   │   ├── bg_wrap.png
│   │   ├── cancel.png
│   │   ├── css.css
│   │   ├── del.gif
│   │   ├── edit.gif
│   │   ├── ico_01.gif
│   │   ├── ico_02.gif
│   │   ├── ico_03.gif
│   │   ├── ico_bg_01.gif
│   │   ├── ico_bg.gif
│   │   ├── ico_cal.gif
│   │   ├── img_01.gif
│   │   ├── img_02.gif
│   │   ├── img_03.gif
│   │   ├── img_04.gif
│   │   ├── img_05.gif
│   │   ├── img_07.gif
│   │   ├── img_08.gif
│   │   ├── img_09.gif
│   │   ├── img_10.gif
│   │   ├── jquery.js
│   │   ├── login_img_02.gif
│   │   ├── login_img_06.gif
│   │   ├── LOGO.jpg
│   │   └── Thumbs.db
│   ├── kindeditor351
│   │   ├── asp
│   │   │   ├── demo.asp
│   │   │   ├── file_manager_json.asp
│   │   │   ├── JSON_2.0.4.asp
│   │   │   ├── upload_5xsoft.inc
│   │   │   └── upload_json.asp
│   │   ├── asp.net
│   │   │   ├── bin
│   │   │   │   └── LitJSON.dll
│   │   │   ├── demo.aspx
│   │   │   ├── file_manager_json.ashx
│   │   │   ├── README.txt
│   │   │   └── upload_json.ashx
│   │   ├── examples
│   │   │   ├── demo-01.html
│   │   │   ├── demo-02.html
│   │   │   ├── demo-03.html
│   │   │   ├── demo-04.html
│   │   │   ├── demo-05.html
│   │   │   ├── demo-06.html
│   │   │   ├── demo-07.html
│   │   │   ├── demo-08.html
│   │   │   ├── demo-09.html
│   │   │   ├── demo-10.html
│   │   │   ├── demo-11.html
│   │   │   ├── demo-12.html
│   │   │   ├── demo-13.html
│   │   │   ├── demo-14.html
│   │   │   ├── demo-15.html
│   │   │   ├── demo-16.html
│   │   │   ├── demo-17.html
│   │   │   ├── demo-18.html
│   │   │   ├── demo-19.html
│   │   │   ├── demo-20.html
│   │   │   ├── index.css
│   │   │   ├── index.html
│   │   │   └── remote_image.html
│   │   ├── jsp
│   │   │   ├── demo.jsp
│   │   │   ├── file_manager_json.jsp
│   │   │   ├── lib
│   │   │   │   ├── commons-fileupload-1.2.1.jar
│   │   │   │   ├── commons-io-1.4.jar
│   │   │   │   └── json_simple-1.1.jar
│   │   │   ├── README.txt
│   │   │   └── upload_json.jsp
│   │   ├── kindeditor.js
│   │   ├── kindeditor-min.js
│   │   ├── license.txt
│   │   ├── php
│   │   │   ├── demo.php
│   │   │   ├── file_manager_json.php
│   │   │   ├── JSON.php
│   │   │   └── upload_json.php
│   │   ├── plugins
│   │   │   ├── about.html
│   │   │   ├── advtable
│   │   │   │   └── advtable.html
│   │   │   ├── emoticons
│   │   │   │   ├── 0.gif
│   │   │   │   ├── 100.gif
│   │   │   │   ├── 101.gif
│   │   │   │   ├── 102.gif
│   │   │   │   ├── 103.gif
│   │   │   │   ├── 104.gif
│   │   │   │   ├── 105.gif
│   │   │   │   ├── 106.gif
│   │   │   │   ├── 107.gif
│   │   │   │   ├── 108.gif
│   │   │   │   ├── 109.gif
│   │   │   │   ├── 10.gif
│   │   │   │   ├── 110.gif
│   │   │   │   ├── 111.gif
│   │   │   │   ├── 112.gif
│   │   │   │   ├── 113.gif
│   │   │   │   ├── 114.gif
│   │   │   │   ├── 115.gif
│   │   │   │   ├── 116.gif
│   │   │   │   ├── 117.gif
│   │   │   │   ├── 118.gif
│   │   │   │   ├── 119.gif
│   │   │   │   ├── 11.gif
│   │   │   │   ├── 120.gif
│   │   │   │   ├── 121.gif
│   │   │   │   ├── 122.gif
│   │   │   │   ├── 123.gif
│   │   │   │   ├── 124.gif
│   │   │   │   ├── 125.gif
│   │   │   │   ├── 126.gif
│   │   │   │   ├── 127.gif
│   │   │   │   ├── 128.gif
│   │   │   │   ├── 129.gif
│   │   │   │   ├── 12.gif
│   │   │   │   ├── 130.gif
│   │   │   │   ├── 131.gif
│   │   │   │   ├── 132.gif
│   │   │   │   ├── 133.gif
│   │   │   │   ├── 134.gif
│   │   │   │   ├── 13.gif
│   │   │   │   ├── 14.gif
│   │   │   │   ├── 15.gif
│   │   │   │   ├── 16.gif
│   │   │   │   ├── 17.gif
│   │   │   │   ├── 18.gif
│   │   │   │   ├── 19.gif
│   │   │   │   ├── 1.gif
│   │   │   │   ├── 20.gif
│   │   │   │   ├── 21.gif
│   │   │   │   ├── 22.gif
│   │   │   │   ├── 23.gif
│   │   │   │   ├── 24.gif
│   │   │   │   ├── 25.gif
│   │   │   │   ├── 26.gif
│   │   │   │   ├── 27.gif
│   │   │   │   ├── 28.gif
│   │   │   │   ├── 29.gif
│   │   │   │   ├── 2.gif
│   │   │   │   ├── 30.gif
│   │   │   │   ├── 31.gif
│   │   │   │   ├── 32.gif
│   │   │   │   ├── 33.gif
│   │   │   │   ├── 34.gif
│   │   │   │   ├── 35.gif
│   │   │   │   ├── 36.gif
│   │   │   │   ├── 37.gif
│   │   │   │   ├── 38.gif
│   │   │   │   ├── 39.gif
│   │   │   │   ├── 3.gif
│   │   │   │   ├── 40.gif
│   │   │   │   ├── 41.gif
│   │   │   │   ├── 42.gif
│   │   │   │   ├── 43.gif
│   │   │   │   ├── 44.gif
│   │   │   │   ├── 45.gif
│   │   │   │   ├── 46.gif
│   │   │   │   ├── 47.gif
│   │   │   │   ├── 48.gif
│   │   │   │   ├── 49.gif
│   │   │   │   ├── 4.gif
│   │   │   │   ├── 50.gif
│   │   │   │   ├── 51.gif
│   │   │   │   ├── 52.gif
│   │   │   │   ├── 53.gif
│   │   │   │   ├── 54.gif
│   │   │   │   ├── 55.gif
│   │   │   │   ├── 56.gif
│   │   │   │   ├── 57.gif
│   │   │   │   ├── 58.gif
│   │   │   │   ├── 59.gif
│   │   │   │   ├── 5.gif
│   │   │   │   ├── 60.gif
│   │   │   │   ├── 61.gif
│   │   │   │   ├── 62.gif
│   │   │   │   ├── 63.gif
│   │   │   │   ├── 64.gif
│   │   │   │   ├── 65.gif
│   │   │   │   ├── 66.gif
│   │   │   │   ├── 67.gif
│   │   │   │   ├── 68.gif
│   │   │   │   ├── 69.gif
│   │   │   │   ├── 6.gif
│   │   │   │   ├── 70.gif
│   │   │   │   ├── 71.gif
│   │   │   │   ├── 72.gif
│   │   │   │   ├── 73.gif
│   │   │   │   ├── 74.gif
│   │   │   │   ├── 75.gif
│   │   │   │   ├── 76.gif
│   │   │   │   ├── 77.gif
│   │   │   │   ├── 78.gif
│   │   │   │   ├── 79.gif
│   │   │   │   ├── 7.gif
│   │   │   │   ├── 80.gif
│   │   │   │   ├── 81.gif
│   │   │   │   ├── 82.gif
│   │   │   │   ├── 83.gif
│   │   │   │   ├── 84.gif
│   │   │   │   ├── 85.gif
│   │   │   │   ├── 86.gif
│   │   │   │   ├── 87.gif
│   │   │   │   ├── 88.gif
│   │   │   │   ├── 89.gif
│   │   │   │   ├── 8.gif
│   │   │   │   ├── 90.gif
│   │   │   │   ├── 91.gif
│   │   │   │   ├── 92.gif
│   │   │   │   ├── 93.gif
│   │   │   │   ├── 94.gif
│   │   │   │   ├── 95.gif
│   │   │   │   ├── 96.gif
│   │   │   │   ├── 97.gif
│   │   │   │   ├── 98.gif
│   │   │   │   ├── 99.gif
│   │   │   │   ├── 9.gif
│   │   │   │   └── qq.gif
│   │   │   ├── file_manager
│   │   │   │   ├── file_manager.css
│   │   │   │   ├── file_manager.html
│   │   │   │   ├── file_manager.js
│   │   │   │   └── images
│   │   │   │   ├── file-16.gif
│   │   │   │   ├── file-64.gif
│   │   │   │   ├── folder-16.gif
│   │   │   │   ├── folder-64.gif
│   │   │   │   └── go-up.gif
│   │   │   ├── flash.html
│   │   │   ├── image
│   │   │   │   ├── image.html
│   │   │   │   └── images
│   │   │   │   ├── align_left.gif
│   │   │   │   ├── align_right.gif
│   │   │   │   ├── align_top.gif
│   │   │   │   └── refresh.gif
│   │   │   ├── link
│   │   │   │   └── link.html
│   │   │   ├── media.html
│   │   │   ├── plainpaste.html
│   │   │   └── wordpaste.html
│   │   └── skins
│   │   ├── common
│   │   │   ├── blank.gif
│   │   │   ├── editor.css
│   │   │   ├── flash.gif
│   │   │   ├── loading.gif
│   │   │   ├── media.gif
│   │   │   └── rm.gif
│   │   ├── default
│   │   │   └── default.gif
│   │   └── default.css
│   ├── link_add.php
│   ├── link_list.php
│   ├── login.php
│   ├── main.php
│   ├── menu.php
│   ├── news_add.php
│   ├── news_list.php
│   ├── scripts
│   │   ├── check.php
│   │   ├── expressInstall.swf
│   │   ├── jquery-1.3.2.min.js
│   │   ├── jquery.uploadify.v2.1.0.min.js
│   │   ├── swfobject.js
│   │   ├── uploadify.php
│   │   └── uploadify.swf
│   ├── upload_form.php
│   ├── upload_success.php
│   ├── user_add.php
│   ├── user_list.php
│   └── webconfig.php
├── db.sql
├── index.php
├── system
│   ├── cache
│   │   └── index.html
│   ├── codeigniter
│   │   ├── Base4.php
│   │   ├── Base5.php
│   │   ├── CodeIgniter.php
│   │   ├── Common.php
│   │   ├── Compat.php
│   │   └── index.html
│   ├── database
│   │   ├── DB_active_rec.php
│   │   ├── DB_cache.php
│   │   ├── DB_driver.php
│   │   ├── DB_forge.php
│   │   ├── DB.php
│   │   ├── DB_result.php
│   │   ├── DB_utility.php
│   │   ├── drivers
│   │   │   ├── 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
│   │   │   ├── 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
│   │   └── index.html
│   ├── fonts
│   │   ├── index.html
│   │   └── texb.ttf
│   ├── helpers
│   │   ├── array_helper.php
│   │   ├── compatibility_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
│   │   │   ├── number_lang.php
│   │   │   ├── profiler_lang.php
│   │   │   ├── scaffolding_lang.php
│   │   │   ├── unit_test_lang.php
│   │   │   ├── upload_lang.php
│   │   │   └── validation_lang.php
│   │   └── index.html
│   ├── libraries
│   │   ├── Benchmark.php
│   │   ├── Calendar.php
│   │   ├── Cart.php
│   │   ├── Config.php
│   │   ├── Controller.php
│   │   ├── Email.php
│   │   ├── Encrypt.php
│   │   ├── Exceptions.php
│   │   ├── Form_validation.php
│   │   ├── Ftp.php
│   │   ├── Hooks.php
│   │   ├── Image_lib.php
│   │   ├── index.html
│   │   ├── Input.php
│   │   ├── Language.php
│   │   ├── Loader.php
│   │   ├── Log.php
│   │   ├── Model.php
│   │   ├── Output.php
│   │   ├── Pagination.php
│   │   ├── Parser.php
│   │   ├── Profiler.php
│   │   ├── Router.php
│   │   ├── Session.php
│   │   ├── Sha1.php
│   │   ├── Table.php
│   │   ├── Trackback.php
│   │   ├── Typography.php
│   │   ├── Unit_test.php
│   │   ├── Upload.php
│   │   ├── URI.php
│   │   ├── User_agent.php
│   │   ├── Validation.php
│   │   ├── Xmlrpc.php
│   │   ├── Xmlrpcs.php
│   │   └── Zip.php
│   ├── logs
│   │   └── index.html
│   ├── plugins
│   │   ├── captcha_pi.php
│   │   ├── index.html
│   │   └── js_calendar_pi.php
│   └── scaffolding
│   ├── images
│   │   ├── background.jpg
│   │   ├── index.html
│   │   └── logo.jpg
│   ├── index.html
│   ├── Scaffolding.php
│   └── views
│   ├── add.php
│   ├── delete.php
│   ├── edit.php
│   ├── footer.php
│   ├── header.php
│   ├── index.html
│   ├── no_data.php
│   ├── stylesheet.css
│   └── view.php
├── templates
│   └── default
│   ├── footer.php
│   ├── guestbook.php
│   ├── header.php
│   ├── images
│   │   ├── bg_turn_page.png
│   │   ├── jquery.js
│   │   ├── loading.gif
│   │   ├── next.cur
│   │   ├── pre.cur
│   │   └── style.css
│   ├── index.php
│   ├── list_case.php
│   ├── list_news.php
│   ├── list_photo.php
│   ├── list_product.php
│   ├── show_case.php
│   ├── show_news.php
│   ├── show_page.php
│   ├── show_photo.php
│   └── show_product.php
├── uploads
│   └── 201011
│   ├── 20101118035105_10068.jpg
│   ├── 20101118035106_72484.jpg
│   ├── 20101118035107_40055.jpg
│   ├── 20101118035108_25150.png
│   ├── 20101118035457_78845.jpg
│   ├── 20101118035458_41539.jpg
│   ├── 20101118035459_12438.jpg
│   ├── 20101118035500_51003.png
│   ├── 20101118040659_82743.png
│   ├── 20101119034009_82965.png
│   ├── 20101119034024_46230.jpg
│   ├── 20101119034025_56900.jpg
│   ├── 20101119034026_87950.jpg
│   ├── 20101119034027_51006.png
│   ├── 20101119034446_11848.jpg
│   ├── 20101119034447_75231.jpg
│   ├── 20101119034448_13183.jpg
│   ├── 20101119034449_54791.png
│   ├── 20101119034908_67318.jpg
│   ├── 20101119034909_61113.jpg
│   ├── 20101119034910_85833.jpg
│   ├── 20101119034911_77508.png
│   ├── 20101119035600_80908.jpg
│   ├── 20101119035601_54027.jpg
│   ├── 20101119035602_98239.jpg
│   ├── 20101119035603_67161.png
│   ├── 20101119040327_41105.jpg
│   ├── 20101119040328_29824.jpg
│   ├── 20101119040329_87000.jpg
│   ├── 20101119040330_51484.png
│   ├── 20101119093457_83149.jpg
│   ├── 20101119093457_92309.jpg
│   ├── 20101119093458_50819.jpg
│   ├── 20101119094835_49276.jpg
│   ├── 20101119094836_10628.jpg
│   ├── 20101119094837_71682.jpg
│   ├── 20101121031252_54892.jpg
│   ├── 20101121033838_24869.jpg
│   ├── 20101121033839_58798.jpg
│   ├── 20101121033840_31851.jpg
│   ├── 20101121033841_12628.jpg
│   ├── 3da31fd1fb56ca02a3782f5b5817f9ae.jpg
│   ├── 4a1ba9027da8aad81bcc75c90e7f939b.jpg
│   ├── 8a74cdd63b8c2844cd316e2693dae97e.jpg
│   ├── 9514801072dd32c9593c2bfcc26bd3f1.jpg
│   └── d8ec775276fc6741691003f8eb599232.jpg
└── 说明文档.txt

62 directories, 513 files

标签:

实例下载地址

php开发的基于CodeIgniter的CMS系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警