├── public └── assets │ ├── img │ ├── logo.png │ ├── favicon.png │ ├── frontend.png │ └── apple-touch-icon.png │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── css │ └── codestrap.css │ └── js │ └── npm.js ├── private ├── system │ ├── fonts │ │ ├── texb.ttf │ │ └── index.html │ ├── .htaccess │ ├── language │ │ ├── filipino │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── khmer │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── bengali │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── hindi │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── tamil │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── greek │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── catalan │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── index.html │ │ ├── arabic │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── czech │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── dutch │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── french │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── german │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── hungarian │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── korean │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── upload_lang.php │ │ ├── polish │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── slovak │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── thai │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── urdu │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── armenian │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── azerbaijani │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── bulgarian │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── english │ │ │ └── index.html │ │ ├── gujarati │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── indonesian │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── italian │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── unit_test_lang.php │ │ │ └── migration_lang.php │ │ ├── japanese │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ ├── unit_test_lang.php │ │ │ ├── ftp_lang.php │ │ │ └── profiler_lang.php │ │ ├── latvian │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── norwegian │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── persian │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── portuguese │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── romanian │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── russian │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── slovenian │ │ │ └── index.html │ │ ├── spanish │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── swedish │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── turkish │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── ukrainian │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── vietnamese │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── portuguese-brazilian │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ └── unit_test_lang.php │ │ ├── simplified-chinese │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ ├── unit_test_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── upload_lang.php │ │ │ └── profiler_lang.php │ │ └── traditional-chinese │ │ │ ├── index.html │ │ │ ├── number_lang.php │ │ │ ├── pagination_lang.php │ │ │ ├── migration_lang.php │ │ │ ├── unit_test_lang.php │ │ │ ├── ftp_lang.php │ │ │ ├── upload_lang.php │ │ │ └── profiler_lang.php │ ├── index.html │ ├── core │ │ ├── index.html │ │ └── compat │ │ │ └── index.html │ ├── database │ │ ├── index.html │ │ └── drivers │ │ │ ├── index.html │ │ │ ├── pdo │ │ │ ├── index.html │ │ │ └── subdrivers │ │ │ │ └── index.html │ │ │ ├── cubrid │ │ │ └── index.html │ │ │ ├── ibase │ │ │ └── index.html │ │ │ ├── mssql │ │ │ └── index.html │ │ │ ├── mysql │ │ │ └── index.html │ │ │ ├── mysqli │ │ │ └── index.html │ │ │ ├── oci8 │ │ │ └── index.html │ │ │ ├── odbc │ │ │ └── index.html │ │ │ ├── postgre │ │ │ └── index.html │ │ │ ├── sqlite │ │ │ └── index.html │ │ │ ├── sqlite3 │ │ │ └── index.html │ │ │ └── sqlsrv │ │ │ └── index.html │ ├── helpers │ │ └── index.html │ └── libraries │ │ ├── index.html │ │ ├── Cache │ │ ├── index.html │ │ └── drivers │ │ │ └── index.html │ │ ├── Javascript │ │ └── index.html │ │ └── Session │ │ ├── index.html │ │ └── drivers │ │ └── index.html └── application │ ├── .htaccess │ ├── cache │ ├── .htaccess │ └── index.html │ ├── views │ ├── errors │ │ ├── cli │ │ │ ├── error_404.php │ │ │ ├── error_general.php │ │ │ ├── error_db.php │ │ │ ├── index.html │ │ │ ├── error_php.php │ │ │ └── error_exception.php │ │ ├── index.html │ │ └── html │ │ │ ├── index.html │ │ │ ├── error_php.php │ │ │ └── error_exception.php │ ├── index.html │ ├── templates │ │ ├── footer.php │ │ ├── head.php │ │ └── header.php │ ├── pages │ │ ├── ftp │ │ │ └── list.php │ │ └── home.php │ └── view.php │ ├── index.html │ ├── core │ └── index.html │ ├── hooks │ └── index.html │ ├── logs │ └── index.html │ ├── tmp │ └── index.html │ ├── config │ ├── index.html │ ├── hooks.php │ ├── profiler.php │ └── memcached.php │ ├── helpers │ └── index.html │ ├── language │ ├── index.html │ └── english │ │ └── index.html │ ├── libraries │ └── index.html │ ├── models │ └── index.html │ ├── session │ └── index.html │ ├── controllers │ ├── index.html │ └── Home.php │ └── third_party │ └── index.html ├── README.md └── .gitignore /public/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codestrap/master/public/assets/img/logo.png -------------------------------------------------------------------------------- /private/system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codestrap/master/private/system/fonts/texb.ttf -------------------------------------------------------------------------------- /public/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codestrap/master/public/assets/img/favicon.png -------------------------------------------------------------------------------- /public/assets/img/frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codestrap/master/public/assets/img/frontend.png -------------------------------------------------------------------------------- /public/assets/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codestrap/master/public/assets/img/apple-touch-icon.png -------------------------------------------------------------------------------- /private/system/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codestrap/master/public/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codestrap/master/public/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codestrap/master/public/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natanfelles/codestrap/master/public/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /private/application/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /private/application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Require all denied 3 | 4 | 5 | Deny from all 6 | -------------------------------------------------------------------------------- /private/system/language/filipino/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /private/system/language/khmer/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /private/application/views/errors/cli/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /private/application/views/errors/cli/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /private/application/views/errors/cli/error_db.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /private/application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /private/application/views/errors/cli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 403 Forbidden 5 | 6 | 7 | 8 |

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

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

Directory access is forbidden.

9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /private/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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Codestrap 2 | 3 | CodeIgniter and Bootstrap development analysis 4 | 5 | ![Codestrap Home](https://raw.githubusercontent.com/natanfelles/codestrap/master/public/assets/img/frontend.png) 6 | 7 | # Hey! Wait a minute 8 | 9 | I am available for freelance. 10 | 11 | Working daily with web development and server administration. 12 | 13 | Send a message describing your project to natanfelles@gmail.com and we will make it happen! -------------------------------------------------------------------------------- /public/assets/css/codestrap.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 20px 0; 3 | } 4 | 5 | header { 6 | margin-bottom: 20px; 7 | } 8 | 9 | @media (max-width: 992px) { 10 | #logo { 11 | text-align: center !important; 12 | margin-bottom: 20px; 13 | } 14 | 15 | header .nav-pills > li { 16 | float: none; 17 | display: inline-block; 18 | *display: inline; /* ie7 fix */ 19 | zoom: 1; /* hasLayout ie7 trigger */ 20 | } 21 | 22 | header .nav-pills { 23 | text-align: center; 24 | } 25 | } -------------------------------------------------------------------------------- /private/application/views/templates/footer.php: -------------------------------------------------------------------------------- 1 | 11 | 16 | -------------------------------------------------------------------------------- /private/application/config/hooks.php: -------------------------------------------------------------------------------- 1 | array( 15 | 'hostname' => '127.0.0.1', 16 | 'port' => '11211', 17 | 'weight' => '1', 18 | ), 19 | ); 20 | -------------------------------------------------------------------------------- /private/system/language/armenian/number_lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/) 8 | * @license http://opensource.org/licenses/MIT MIT License 9 | * @link http://codeigniter.com 10 | */ 11 | defined('BASEPATH') OR exit('No direct script access allowed'); 12 | 13 | $lang['terabyte_abbr'] = 'TB'; 14 | $lang['gigabyte_abbr'] = 'GB'; 15 | $lang['megabyte_abbr'] = 'MB'; 16 | $lang['kilobyte_abbr'] = 'KB'; 17 | $lang['bytes'] = 'Bajtov'; 18 | -------------------------------------------------------------------------------- /private/system/language/slovak/pagination_lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/) 8 | * @license http://opensource.org/licenses/MIT MIT License 9 | * @link http://codeigniter.com 10 | */ 11 | defined('BASEPATH') OR exit('No direct script access allowed'); 12 | 13 | $lang['pagination_first_link'] = '‹ Prvá'; 14 | $lang['pagination_next_link'] = '>'; 15 | $lang['pagination_prev_link'] = '<'; 16 | $lang['pagination_last_link'] = 'Posledná ›'; 17 | -------------------------------------------------------------------------------- /private/application/views/templates/head.php: -------------------------------------------------------------------------------- 1 | 14 | 15 | 16 | Codestrap | <?=$title;?> 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /private/application/views/errors/cli/error_php.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 | -------------------------------------------------------------------------------- /private/application/views/errors/cli/error_exception.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | An uncaught Exception was encountered 4 | 5 | Type: 6 | Message: 7 | Filename: getFile(), "\n"; ?> 8 | Line Number: getLine(); ?> 9 | 10 | 11 | 12 | Backtrace: 13 | getTrace() as $error): ?> 14 | 15 | File: 16 | Line: 17 | Function: 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /private/system/language/simplified-chinese/migration_lang.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

A PHP Error was encountered

8 | 9 |

Severity:

10 |

Message:

11 |

Filename:

12 |

Line Number:

13 | 14 | 15 | 16 |

Backtrace:

17 | 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
-------------------------------------------------------------------------------- /private/system/language/japanese/migration_lang.php: -------------------------------------------------------------------------------- 1 | 4 | 5 |
6 | 7 |

An uncaught Exception was encountered

8 | 9 |

Type:

10 |

Message:

11 |

Filename: getFile(); ?>

12 |

Line Number: getLine(); ?>

13 | 14 | 15 | 16 |

Backtrace:

17 | getTrace() as $error): ?> 18 | 19 | 20 | 21 |

22 | File:
23 | Line:
24 | Function: 25 |

26 | 27 | 28 | 29 | 30 | 31 | 32 |
-------------------------------------------------------------------------------- /private/system/language/traditional-chinese/unit_test_lang.php: -------------------------------------------------------------------------------- 1 | 12 |
13 |
14 |
15 | Logged in as 16 |
17 |
18 |
19 |
20 | 21 | 22 | 23 | 24 |
25 |
26 |
27 | 28 | 29 | 30 | 31 | 32 | 33 |
34 |
35 |
36 | -------------------------------------------------------------------------------- /private/system/language/hindi/migration_lang.php: -------------------------------------------------------------------------------- 1 | 13 | 14 | 15 | 16 | 17 |
18 | 19 |
20 |
21 |
22 | load->view('pages/' . $page); 28 | else: 29 | ?> 30 | 33 | 36 |
37 | 40 |
41 |
42 | 43 | 44 | -------------------------------------------------------------------------------- /private/system/language/persian/unit_test_lang.php: -------------------------------------------------------------------------------- 1 | 11 | 12 |

Some errors are breaking your Codestrap

13 | 23 | 24 |

Hello, world!

25 | 31 | 32 | -------------------------------------------------------------------------------- /private/system/language/catalan/migration_lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/) 8 | * @license http://opensource.org/licenses/MIT MIT License 9 | * @link http://codeigniter.com 10 | */ 11 | defined('BASEPATH') OR exit('No direct script access allowed'); 12 | 13 | $lang['migration_none_found'] = 'Žiadne migrácie neboli nájdené.'; 14 | $lang['migration_not_found'] = 'Migrácia s číslom tejto verzie nebola nájdená: %s.'; 15 | $lang['migration_sequence_gap'] = 'Chýbajúca migrácia v sekvencii blízko: %s.'; 16 | $lang['migration_multiple_version'] = 'Existuje viacej migracií s rovnakým číslom verzie: %s.'; 17 | $lang['migration_class_doesnt_exist'] = 'Trieda pre migráciu "%s" nebola nájdená.'; 18 | $lang['migration_missing_up_method'] = 'V migračnej triede "%s" chýba "up" metoda.'; 19 | $lang['migration_missing_down_method'] = 'V migračnej triede "%s" chýba "down" metoda.'; 20 | $lang['migration_invalid_filename'] = 'Migrácia "%s" má chybné meno.'; 21 | -------------------------------------------------------------------------------- /private/system/language/dutch/migration_lang.php: -------------------------------------------------------------------------------- 1 | 14 |
15 | 20 |
21 | 35 |
36 |
37 | -------------------------------------------------------------------------------- /private/system/language/french/migration_lang.php: -------------------------------------------------------------------------------- 1 | 7 | * @copyright Copyright (c) 2014 - 2016, British Columbia Institute of Technology (http://bcit.ca/) 8 | * @license http://opensource.org/licenses/MIT MIT License 9 | * @link http://codeigniter.com 10 | */ 11 | defined('BASEPATH') OR exit('No direct script access allowed'); 12 | 13 | $lang['ut_test_name'] = 'Názov Testu'; 14 | $lang['ut_test_datatype'] = 'Dátový typ testu'; 15 | $lang['ut_res_datatype'] = 'očakávaný dátový typ'; 16 | $lang['ut_result'] = 'Výsledok'; 17 | $lang['ut_undefined'] = 'Nešpecifikované meno testu'; 18 | $lang['ut_file'] = 'Meno súboru'; 19 | $lang['ut_line'] = 'Číslo riadku'; 20 | $lang['ut_passed'] = 'Prešlo'; 21 | $lang['ut_failed'] = 'Neprešlo'; 22 | $lang['ut_boolean'] = 'Logické 1/0'; 23 | $lang['ut_integer'] = 'Celé číslo'; 24 | $lang['ut_float'] = 'Desatinné číslo'; 25 | $lang['ut_double'] = 'Presné desatinné číslo'; // can be the same as float 26 | $lang['ut_string'] = 'Reťazec'; 27 | $lang['ut_array'] = 'Pole'; 28 | $lang['ut_object'] = 'Objekt'; 29 | $lang['ut_resource'] = 'Zdroj'; 30 | $lang['ut_null'] = 'Null'; 31 | $lang['ut_notes'] = 'Poznámky'; 32 | -------------------------------------------------------------------------------- /private/system/language/korean/upload_lang.php: -------------------------------------------------------------------------------- 1 | load->helper('file'); 17 | } 18 | 19 | 20 | public function index() 21 | { 22 | $data['error'] = $this->check(); 23 | 24 | // Config and Load view 25 | $data['title'] = 'Home'; 26 | $data['page'] = 'home'; 27 | $this->load->view('view', $data); 28 | } 29 | 30 | 31 | protected function check() 32 | { 33 | $error = NULL; 34 | 35 | // Check file permissions 36 | $path['tmp'] = APPPATH . 'tmp'; 37 | $path['cache'] = ! empty($this->config->config['cache_path']) ? $this->config->config['cache_path'] : APPPATH . 'cache'; 38 | $path['log'] = ! empty($this->config->config['log_path']) ? $this->config->config['log_path'] : APPPATH . 'logs'; 39 | $path['session'] = ! empty($this->config->config['sess_save_path']) ? $this->config->config['sess_save_path'] : APPPATH . 'session'; 40 | 41 | foreach ($path as $item) 42 | { 43 | octal_permissions(fileperms($item)) == 777 ? : $error[] = 'The file permissions in ' . $item . ' is not 777'; 44 | } 45 | 46 | return $error; 47 | } 48 | 49 | } -------------------------------------------------------------------------------- /private/system/language/japanese/profiler_lang.php: -------------------------------------------------------------------------------- 1 |