├── .gitignore ├── .htaccess ├── .travis.yml ├── README.md ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── custom.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── admin.php │ ├── blog.php │ ├── index.html │ ├── login.php │ ├── pages.php │ └── verifylogin.php ├── core │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ └── english │ │ └── index.html ├── libraries │ └── index.html ├── logs │ └── index.html ├── models │ ├── admin_model.php │ ├── article_model.php │ ├── index.html │ └── user.php ├── third_party │ └── index.html └── views │ ├── admin │ ├── add_article.php │ ├── add_category.php │ ├── add_nav.php │ ├── add_page.php │ ├── add_sidebar.php │ ├── admin_view.php │ ├── articles.php │ ├── categories.php │ ├── delete_article.php │ ├── delete_category.php │ ├── delete_nav.php │ ├── delete_page.php │ ├── edit_article.php │ ├── edit_category.php │ ├── edit_nav.php │ ├── edit_page.php │ ├── edit_sidebar.php │ ├── nav.php │ ├── pages.php │ ├── sidebar.php │ └── template │ │ ├── footer.php │ │ └── header.php │ ├── article_view.php │ ├── category_view.php │ ├── contact_view.php │ ├── google_view.php │ ├── index.html │ ├── index_view.php │ ├── login_view.php │ ├── page_view.php │ ├── rss_view.php │ ├── search_view.php │ └── template │ └── default │ ├── footer.php │ ├── header.php │ └── sidebar.php ├── blog.sql ├── captcha └── 1403633879.0222.jpg ├── css ├── admin │ └── style.css ├── default │ ├── flexslider.css │ ├── mobile.css │ ├── prettyPhoto.css │ ├── print.css │ ├── style.css │ └── ui-darkness │ │ ├── images │ │ ├── animated-overlay.gif │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_4b8e0b_256x240.png │ │ ├── ui-icons_a83300_256x240.png │ │ ├── ui-icons_cccccc_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui-1.10.3.custom.css │ │ └── jquery-ui-1.10.3.custom.min.css └── global │ └── ui-darkness │ ├── images │ ├── animated-overlay.gif │ ├── ui-bg_flat_30_cccccc_40x100.png │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ ├── ui-bg_glass_20_555555_1x400.png │ ├── ui-bg_glass_40_0078a3_1x400.png │ ├── ui-bg_glass_40_ffc73d_1x400.png │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ ├── ui-bg_inset-soft_25_000000_1x100.png │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_4b8e0b_256x240.png │ ├── ui-icons_a83300_256x240.png │ ├── ui-icons_cccccc_256x240.png │ └── ui-icons_ffffff_256x240.png │ ├── jquery-ui-1.10.3.custom.css │ └── jquery-ui-1.10.3.custom.min.css ├── images ├── Thumbs.db ├── bg_play_pause.png ├── fonts │ ├── flexslider-icon.eot │ ├── flexslider-icon.svg │ ├── flexslider-icon.ttf │ └── flexslider-icon.woff ├── fullscreen │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── Thumbs.db │ ├── high.gif │ ├── huge.gif │ └── wide.gif ├── posts │ ├── Thumbs.db │ └── cover.png ├── prettyPhoto │ ├── dark_rounded │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── contentPattern.png │ │ ├── default_thumbnail.gif │ │ ├── loader.gif │ │ └── sprite.png │ ├── dark_square │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── contentPattern.png │ │ ├── default_thumbnail.gif │ │ ├── loader.gif │ │ └── sprite.png │ ├── default │ │ ├── default_thumb.png │ │ ├── loader.gif │ │ ├── sprite.png │ │ ├── sprite_next.png │ │ ├── sprite_prev.png │ │ ├── sprite_x.png │ │ └── sprite_y.png │ ├── facebook │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── contentPatternBottom.png │ │ ├── contentPatternLeft.png │ │ ├── contentPatternRight.png │ │ ├── contentPatternTop.png │ │ ├── default_thumbnail.gif │ │ ├── loader.gif │ │ └── sprite.png │ ├── light_rounded │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── default_thumbnail.gif │ │ ├── loader.gif │ │ └── sprite.png │ └── light_square │ │ ├── btnNext.png │ │ ├── btnPrevious.png │ │ ├── default_thumbnail.gif │ │ ├── loader.gif │ │ └── sprite.png ├── theme │ └── default │ │ ├── Thumbs.db │ │ ├── background_loop-old.jpg │ │ ├── background_loop.jpg │ │ ├── bg-old.jpg │ │ ├── bg.jpg │ │ ├── bottom_shadow-old.png │ │ ├── bottom_shadow.png │ │ ├── box_text_bg.png │ │ ├── categories_bg.jpg │ │ ├── footer.png │ │ ├── footer_bottom.jpg │ │ ├── full_page_wrapper_loop.png │ │ ├── hbullet.png │ │ ├── lwrapper_loop.png │ │ ├── menu_divider.jpg │ │ ├── menu_drop.jpg │ │ ├── menu_hover.png │ │ ├── menu_left.jpg │ │ ├── menu_loop.jpg │ │ ├── menu_right.jpg │ │ ├── right_h_bg.png │ │ ├── rwrapper_loop.png │ │ ├── search.jpg │ │ ├── slider_bg.jpg │ │ ├── slider_bg_loop.jpg │ │ └── wrapper_loop.jpg └── thumbnails │ ├── flash-logo.png │ ├── quicktime-logo.gif │ ├── t_1.jpg │ ├── t_2.jpg │ ├── t_3.jpg │ ├── t_4.jpg │ └── t_5.jpg ├── index.php ├── js ├── admin │ └── tinymce │ │ ├── langs │ │ └── readme.md │ │ ├── license.txt │ │ ├── plugins │ │ ├── advlist │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ └── plugin.min.js │ │ ├── code │ │ │ └── plugin.min.js │ │ ├── contextmenu │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ └── plugin.min.js │ │ ├── example │ │ │ └── plugin.min.js │ │ ├── example_dependency │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ └── plugin.min.js │ │ ├── image │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ └── plugin.min.js │ │ ├── jbimages │ │ │ ├── ci │ │ │ │ ├── application │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── config │ │ │ │ │ │ ├── autoload.php │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ ├── constants.php │ │ │ │ │ │ ├── database.php │ │ │ │ │ │ ├── doctypes.php │ │ │ │ │ │ ├── foreign_chars.php │ │ │ │ │ │ ├── hooks.php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── migration.php │ │ │ │ │ │ ├── mimes.php │ │ │ │ │ │ ├── profiler.php │ │ │ │ │ │ ├── routes.php │ │ │ │ │ │ ├── smileys.php │ │ │ │ │ │ ├── uploader_settings.php │ │ │ │ │ │ └── user_agents.php │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── uploader.php │ │ │ │ │ ├── errors │ │ │ │ │ │ ├── error_404.php │ │ │ │ │ │ ├── error_db.php │ │ │ │ │ │ ├── error_general.php │ │ │ │ │ │ ├── error_php.php │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jbimages_helper.php │ │ │ │ │ ├── index.html │ │ │ │ │ ├── language │ │ │ │ │ │ ├── english │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── jbstrings_lang.php │ │ │ │ │ │ ├── french │ │ │ │ │ │ │ ├── imglib_lang.php │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jbstrings_lang.php │ │ │ │ │ │ │ └── upload_lang.php │ │ │ │ │ │ └── russian │ │ │ │ │ │ │ ├── imglib_lang.php │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── jbstrings_lang.php │ │ │ │ │ │ │ └── upload_lang.php │ │ │ │ │ └── views │ │ │ │ │ │ ├── ajax_upload_result.php │ │ │ │ │ │ ├── blank.php │ │ │ │ │ │ └── index.html │ │ │ │ ├── index.php │ │ │ │ └── system │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── core │ │ │ │ │ ├── Benchmark.php │ │ │ │ │ ├── CodeIgniter.php │ │ │ │ │ ├── Common.php │ │ │ │ │ ├── Config.php │ │ │ │ │ ├── Controller.php │ │ │ │ │ ├── Exceptions.php │ │ │ │ │ ├── Hooks.php │ │ │ │ │ ├── Input.php │ │ │ │ │ ├── Lang.php │ │ │ │ │ ├── Loader.php │ │ │ │ │ ├── Model.php │ │ │ │ │ ├── Output.php │ │ │ │ │ ├── Router.php │ │ │ │ │ ├── Security.php │ │ │ │ │ ├── URI.php │ │ │ │ │ ├── Utf8.php │ │ │ │ │ └── index.html │ │ │ │ │ ├── helpers │ │ │ │ │ ├── index.html │ │ │ │ │ └── language_helper.php │ │ │ │ │ ├── index.html │ │ │ │ │ ├── language │ │ │ │ │ ├── english │ │ │ │ │ │ ├── imglib_lang.php │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── upload_lang.php │ │ │ │ │ └── index.html │ │ │ │ │ └── libraries │ │ │ │ │ ├── Image_lib.php │ │ │ │ │ ├── Upload.php │ │ │ │ │ └── index.html │ │ │ ├── config.php │ │ │ ├── css │ │ │ │ ├── dialog-v4.css │ │ │ │ └── dialog.css │ │ │ ├── dialog-v4.htm │ │ │ ├── dialog.htm │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── img │ │ │ │ ├── jbimages-bw.gif │ │ │ │ └── spinner.gif │ │ │ ├── is_allowed.php │ │ │ ├── js │ │ │ │ ├── dialog-v4.js │ │ │ │ └── dialog.js │ │ │ ├── langs │ │ │ │ ├── en.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── fr.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── ru.js │ │ │ │ └── ru_dlg.js │ │ │ ├── plugin.js │ │ │ ├── plugin.min.js │ │ │ └── readme │ │ ├── layer │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ └── plugin.min.js │ │ ├── link │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ └── plugin.min.js │ │ ├── media │ │ │ ├── moxieplayer.swf │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ └── plugin.min.js │ │ ├── print │ │ │ └── plugin.min.js │ │ ├── save │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ └── plugin.min.js │ │ ├── spellchecker │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ └── plugin.min.js │ │ ├── table │ │ │ └── plugin.min.js │ │ ├── template │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── css │ │ │ │ └── visualblocks.css │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ └── plugin.min.js │ │ ├── skins │ │ └── lightgray │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── fonts │ │ │ ├── readme.md │ │ │ ├── tinymce-small.eot │ │ │ ├── tinymce-small.svg │ │ │ ├── tinymce-small.ttf │ │ │ ├── tinymce-small.woff │ │ │ ├── tinymce.eot │ │ │ ├── tinymce.svg │ │ │ ├── tinymce.ttf │ │ │ └── tinymce.woff │ │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── loader.gif │ │ │ ├── object.gif │ │ │ ├── trans.gif │ │ │ └── wline.gif │ │ │ ├── skin.ie7.min.css │ │ │ └── skin.min.css │ │ ├── themes │ │ └── modern │ │ │ └── theme.min.js │ │ ├── tinymce-global.js │ │ └── tinymce.min.js ├── default │ ├── jquery.flexslider-min.js │ └── jquery.prettyPhoto.js └── global │ └── jqueryui │ ├── jquery-1.9.1.js │ ├── jquery-ui-1.10.3.custom.js │ ├── jquery-ui-1.10.3.custom.min.js │ └── jquiery-ui-all.js ├── license.txt ├── system ├── .htaccess ├── core │ ├── Benchmark.php │ ├── CodeIgniter.php │ ├── Common.php │ ├── Config.php │ ├── Controller.php │ ├── Exceptions.php │ ├── Hooks.php │ ├── Input.php │ ├── Lang.php │ ├── Loader.php │ ├── Model.php │ ├── Output.php │ ├── Router.php │ ├── Security.php │ ├── URI.php │ ├── Utf8.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_active_rec.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── cubrid │ │ │ ├── cubrid_driver.php │ │ │ ├── cubrid_forge.php │ │ │ ├── cubrid_result.php │ │ │ ├── cubrid_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 │ │ ├── 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 │ │ └── sqlsrv │ │ │ ├── index.html │ │ │ ├── sqlsrv_driver.php │ │ │ ├── sqlsrv_forge.php │ │ │ ├── sqlsrv_result.php │ │ │ └── sqlsrv_utility.php │ └── index.html ├── fonts │ ├── 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 │ │ ├── profiler_lang.php │ │ ├── unit_test_lang.php │ │ └── upload_lang.php │ └── index.html └── libraries │ ├── Cache │ ├── Cache.php │ └── drivers │ │ ├── Cache_apc.php │ │ ├── Cache_dummy.php │ │ ├── Cache_file.php │ │ └── Cache_memcached.php │ ├── Calendar.php │ ├── Cart.php │ ├── Driver.php │ ├── Email.php │ ├── Encrypt.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Image_lib.php │ ├── Javascript.php │ ├── Log.php │ ├── Migration.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Session.php │ ├── Sha1.php │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ ├── index.html │ └── javascript │ └── Jquery.php └── user_guide ├── changelog.html ├── database ├── active_record.html ├── caching.html ├── call_function.html ├── configuration.html ├── connecting.html ├── examples.html ├── fields.html ├── forge.html ├── helpers.html ├── index.html ├── queries.html ├── results.html ├── table_data.html ├── transactions.html └── utilities.html ├── doc_style ├── index.html └── template.html ├── general ├── alternative_php.html ├── ancillary_classes.html ├── autoloader.html ├── caching.html ├── cli.html ├── common_functions.html ├── controllers.html ├── core_classes.html ├── creating_drivers.html ├── creating_libraries.html ├── credits.html ├── drivers.html ├── environments.html ├── errors.html ├── helpers.html ├── hooks.html ├── libraries.html ├── managing_apps.html ├── models.html ├── profiling.html ├── quick_reference.html ├── requirements.html ├── reserved_names.html ├── routing.html ├── security.html ├── styleguide.html ├── urls.html └── views.html ├── helpers ├── array_helper.html ├── captcha_helper.html ├── cookie_helper.html ├── date_helper.html ├── directory_helper.html ├── download_helper.html ├── email_helper.html ├── file_helper.html ├── form_helper.html ├── html_helper.html ├── inflector_helper.html ├── language_helper.html ├── number_helper.html ├── path_helper.html ├── security_helper.html ├── smiley_helper.html ├── string_helper.html ├── text_helper.html ├── typography_helper.html ├── url_helper.html └── xml_helper.html ├── images ├── appflowchart.gif ├── arrow.gif ├── ci_logo.jpg ├── ci_logo_flame.jpg ├── ci_quick_ref.png ├── codeigniter_1.7.1_helper_reference.pdf ├── codeigniter_1.7.1_helper_reference.png ├── codeigniter_1.7.1_library_reference.pdf ├── codeigniter_1.7.1_library_reference.png ├── file.gif ├── folder.gif ├── nav_bg_darker.jpg ├── nav_separator_darker.jpg ├── nav_toggle_darker.jpg ├── reactor-bullet.png ├── smile.gif └── transparent.gif ├── index.html ├── installation ├── downloads.html ├── index.html ├── troubleshooting.html ├── upgrade_120.html ├── upgrade_130.html ├── upgrade_131.html ├── upgrade_132.html ├── upgrade_133.html ├── upgrade_140.html ├── upgrade_141.html ├── upgrade_150.html ├── upgrade_152.html ├── upgrade_153.html ├── upgrade_154.html ├── upgrade_160.html ├── upgrade_161.html ├── upgrade_162.html ├── upgrade_163.html ├── upgrade_170.html ├── upgrade_171.html ├── upgrade_172.html ├── upgrade_200.html ├── upgrade_201.html ├── upgrade_202.html ├── upgrade_203.html ├── upgrade_210.html ├── upgrade_211.html ├── upgrade_212.html ├── upgrade_213.html ├── upgrade_214.html ├── upgrade_b11.html └── upgrading.html ├── libraries ├── benchmark.html ├── caching.html ├── calendar.html ├── cart.html ├── config.html ├── email.html ├── encryption.html ├── file_uploading.html ├── form_validation.html ├── ftp.html ├── image_lib.html ├── input.html ├── javascript.html ├── language.html ├── loader.html ├── migration.html ├── output.html ├── pagination.html ├── parser.html ├── security.html ├── sessions.html ├── table.html ├── trackback.html ├── typography.html ├── unit_testing.html ├── uri.html ├── user_agent.html ├── xmlrpc.html └── zip.html ├── license.html ├── nav ├── hacks.txt ├── moo.fx.js ├── nav.js ├── prototype.lite.js └── user_guide_menu.js ├── overview ├── appflow.html ├── at_a_glance.html ├── cheatsheets.html ├── features.html ├── getting_started.html ├── goals.html ├── index.html └── mvc.html ├── toc.html ├── tutorial ├── conclusion.html ├── create_news_items.html ├── hard_coded_pages.html ├── index.html ├── news_section.html └── static_pages.html └── userguide.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | application/cache/* 4 | !application/cache/index.html 5 | !application/cache/.htaccess 6 | 7 | application/logs/* 8 | !application/logs/index.html 9 | !application/logs/.htaccess 10 | /.idea/* 11 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine on 2 | RewriteCond $1 !^(index\.php|images|robots\.txt|uploads|captcha|css|js|images) 3 | RewriteRule ^(.*)$ index.php/$1 [L] -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | branches: 2 | except: 3 | - 2.1-stable 4 | - master -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CODEIGNITER BLOG PROJECT WRITTEN BY [GEORGE WHITCHER](http://www.georgewhitcher.com) # 2 | 3 | Thank you for your interest in my Codeigniter Blog Project. I am still working on this project but my main site has replaced it with LBLOG my [Laravel Blog Project](https://bitbucket.org/gwhitcher/lblog-a-laravel-blog-software). 4 | 5 | ### INSTALLATION ### 6 | 7 | * Setup a database and user. 8 | * Go into PHPMYADMIN and import "blog.sql" into your newly created database by going to import>choose "blog.sql">choose import. 9 | * Configure the database file by going to /application/config/database.php 10 | * Configure your site specific values by going to /application/config/custom.php 11 | * Your site should now be installed. 12 | 13 | ### ADMINISTRATION ### 14 | 15 | * Visit DOMAIN.COM/admin 16 | * The default user and password is admin and administrator (once logged in it is suggested you change these immediately. This can be done by visiting the users section of the administration.) 17 | 18 | ### QUESTIONS/COMMENTS ### 19 | 20 | * If you have any questions the fastest way to get results is by visiting my website [http://www.georgewhitcher.com](http://www.georgewhitcher.com) 21 | -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/constants.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /application/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 'ae', 12 | '/ö|œ/' => 'oe', 13 | '/ü/' => 'ue', 14 | '/Ä/' => 'Ae', 15 | '/Ü/' => 'Ue', 16 | '/Ö/' => 'Oe', 17 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A', 18 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª/' => 'a', 19 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', 20 | '/ç|ć|ĉ|ċ|č/' => 'c', 21 | '/Ð|Ď|Đ/' => 'D', 22 | '/ð|ď|đ/' => 'd', 23 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě/' => 'E', 24 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě/' => 'e', 25 | '/Ĝ|Ğ|Ġ|Ģ/' => 'G', 26 | '/ĝ|ğ|ġ|ģ/' => 'g', 27 | '/Ĥ|Ħ/' => 'H', 28 | '/ĥ|ħ/' => 'h', 29 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ/' => 'I', 30 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı/' => 'i', 31 | '/Ĵ/' => 'J', 32 | '/ĵ/' => 'j', 33 | '/Ķ/' => 'K', 34 | '/ķ/' => 'k', 35 | '/Ĺ|Ļ|Ľ|Ŀ|Ł/' => 'L', 36 | '/ĺ|ļ|ľ|ŀ|ł/' => 'l', 37 | '/Ñ|Ń|Ņ|Ň/' => 'N', 38 | '/ñ|ń|ņ|ň|ʼn/' => 'n', 39 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ/' => 'O', 40 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º/' => 'o', 41 | '/Ŕ|Ŗ|Ř/' => 'R', 42 | '/ŕ|ŗ|ř/' => 'r', 43 | '/Ś|Ŝ|Ş|Š/' => 'S', 44 | '/ś|ŝ|ş|š|ſ/' => 's', 45 | '/Ţ|Ť|Ŧ/' => 'T', 46 | '/ţ|ť|ŧ/' => 't', 47 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ/' => 'U', 48 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ/' => 'u', 49 | '/Ý|Ÿ|Ŷ/' => 'Y', 50 | '/ý|ÿ|ŷ/' => 'y', 51 | '/Ŵ/' => 'W', 52 | '/ŵ/' => 'w', 53 | '/Ź|Ż|Ž/' => 'Z', 54 | '/ź|ż|ž/' => 'z', 55 | '/Æ|Ǽ/' => 'AE', 56 | '/ß/'=> 'ss', 57 | '/IJ/' => 'IJ', 58 | '/ij/' => 'ij', 59 | '/Œ/' => 'OE', 60 | '/ƒ/' => 'f' 61 | ); 62 | 63 | /* End of file foreign_chars.php */ 64 | /* Location: ./application/config/foreign_chars.php */ -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 |