php
php copied to clipboard
How to deploy typecho
How to deploy typecho with now-php? https://github.com/typecho/typecho
Hello. I've never used typecho. Could you please describe how it works, requirements and setup a minimal version to deploy?
Typecho is a single entry program.
All accesses are through index.php , Index.php does three things
- Load config.inc.php (config.inc.php sets the relevant directory, including path, load system basic class library, program initialization typecho_common:: init();, and finally sets the database connection parameters, which can be viewed here by yourself)
- Execute Typecho widget:: widget ('widget init ');
- Execute Typecho Router:: dispatch();
Typecho running environment
PHP 5.1 upMysql, PostgreSQL and SQLite are supported by any database, and related extensions are installed in PHPCurl or socket extension supportMbstring or iconv extension support