tiki-check.php | |
Overview | |
tiki-check.php is a standalone script for server environment settings diagnostics before installing Tiki, or for an existing Tiki installation. While it was designed for Tiki, and it's bundled in Tiki, it is very useful for any PHP app, as it checks over 100 different things and provides contextual feedback.
|
Use cases | |
 |
How to use | |
 |
Details | |
The standalone version will work with any version of Tiki, or even without Tiki. |
Screenshots | |
Â
|
Section descriptions | ||||||||||||||||||||||||
|
OCR Status section | |
This table provides a detailed status of the OCR-related requirements for your Tiki application. To ensure full functionality:
The PCRE backtrack_limit is a configuration settings that controls the maximum number of backtracks the regular expression engine will perform during regular expression pattern matching, per default set on 1,000,000(1 million). This impact your Tiki:
|
Icons | ||||||||||||||||||
 |
Other ways to get Tiki Check | |
Part of Tiki download | |
If you have a recent version of Tiki, just visit tiki-check.php |
Via the command line | |
Copy to clipboard
|
Known issues | |
If you enter incorrect DB-credentials, the script will fail with an ugly error message. We can't make this a nice error message, because we can't catch the exception, continue with the script and show the rest of the checks because we want to be PHP 4 compatible (and PHP 4 doesn't know exceptions which are the only way of error handling that PDO allows at connection time). So we fall back to the solution of setting the error_reporting all the way up and showing the error in this ugly way. |
Background information | |
Tiki has been deployed in many scenarios over the years, and has a multitude of checks throughout the code (mostly in tiki-install.php and tiki-admin.php) to indicate to the admin if there is a problem with the server (ex.: memory_limit too low) They are typically in the admin panel next to the relevant feature/setting. This is useful but without a central checklist of all of them when deploying on a new server (especially a server which has never been configured for web hosting), there can be a lot of back & forth to tweak all the settings. You are also forced to install Tiki to see what could be problematic. Instead, in a single file upload (tiki-check.php), we should have a clear report on everything that should be tweaked. This is useful for fresh installs or if you are moving a Tiki instance from one server to another. This will also help when people report bugs (you can copy-paste this info in the bug tracker). Before making this, existing solutions were researched and nothing came close to this. Thus, as far as we know, as of 2013, this is the most complete such solution. |
Future work | |
For additional information, see Server Check. |
Related links | |
|