admin.php 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. return array(
  3. 'check_install' => array(
  4. 'cache' => array(
  5. 'nok' => 'Check permissions on <em>./data/cache</em> directory. HTTP server must have rights to write into',
  6. 'ok' => 'Permissions on cache directory are good.',
  7. ),
  8. 'categories' => array(
  9. 'nok' => 'Category table is bad configured.',
  10. 'ok' => 'Category table is ok.',
  11. ),
  12. 'connection' => array(
  13. 'nok' => 'Connection to the database cannot being established.',
  14. 'ok' => 'Connection to the database is ok.',
  15. ),
  16. 'ctype' => array(
  17. 'nok' => 'You lack a required library for character type checking (php-ctype).',
  18. 'ok' => 'You have the required library for character type checking (ctype).',
  19. ),
  20. 'curl' => array(
  21. 'nok' => 'You lack cURL (php5-curl package).',
  22. 'ok' => 'You have cURL extension.',
  23. ),
  24. 'data' => array(
  25. 'nok' => 'Check permissions on <em>./data</em> directory. HTTP server must have rights to write into',
  26. 'ok' => 'Permissions on data directory are good.',
  27. ),
  28. 'database' => 'Database installation',
  29. 'dom' => array(
  30. 'nok' => 'You lack a required library to browse the DOM (php-xml package).',
  31. 'ok' => 'You have the required library to browse the DOM.',
  32. ),
  33. 'entries' => array(
  34. 'nok' => 'Entry table is bad configured.',
  35. 'ok' => 'Entry table is ok.',
  36. ),
  37. 'favicons' => array(
  38. 'nok' => 'Check permissions on <em>./data/favicons</em> directory. HTTP server must have rights to write into',
  39. 'ok' => 'Permissions on favicons directory are good.',
  40. ),
  41. 'feeds' => array(
  42. 'nok' => 'Feed table is bad configured.',
  43. 'ok' => 'Feed table is ok.',
  44. ),
  45. 'files' => 'File installation',
  46. 'json' => array(
  47. 'nok' => 'You lack JSON (php5-json package).',
  48. 'ok' => 'You have JSON extension.',
  49. ),
  50. 'logs' => array(
  51. 'nok' => 'Check permissions on <em>./data/logs</em> directory. HTTP server must have rights to write into',
  52. 'ok' => 'Permissions on logs directory are good.',
  53. ),
  54. 'minz' => array(
  55. 'nok' => 'You lack the Minz framework.',
  56. 'ok' => 'You have the Minz framework.',
  57. ),
  58. 'pcre' => array(
  59. 'nok' => 'You lack a required library for regular expressions (php-pcre).',
  60. 'ok' => 'You have the required library for regular expressions (PCRE).',
  61. ),
  62. 'pdo' => array(
  63. 'nok' => 'You lack PDO or one of the supported drivers (pdo_mysql, pdo_sqlite).',
  64. 'ok' => 'You have PDO and at least one of the supported drivers (pdo_mysql, pdo_sqlite).',
  65. ),
  66. 'persona' => array(
  67. 'nok' => 'Check permissions on <em>./data/persona</em> directory. HTTP server must have rights to write into',
  68. 'ok' => 'Permissions on Mozilla Persona directory are good.',
  69. ),
  70. 'php' => array(
  71. '_' => 'PHP installation',
  72. 'nok' => 'Your PHP version is %s but FreshRSS requires at least version %s.',
  73. 'ok' => 'Your PHP version is %s, which is compatible with FreshRSS.',
  74. ),
  75. 'tables' => array(
  76. 'nok' => 'There is one or more lacking tables in the database.',
  77. 'ok' => 'Tables are existing in the database.',
  78. ),
  79. 'tokens' => array(
  80. 'nok' => 'Check permissions on <em>./data/tokens</em> directory. HTTP server must have rights to write into',
  81. 'ok' => 'Permissions on tokens directory are good.',
  82. ),
  83. 'zip' => array(
  84. 'nok' => 'You lack ZIP extension (php5-zip package).',
  85. 'ok' => 'You have ZIP extension.',
  86. ),
  87. ),
  88. 'extensions' => array(
  89. 'empty_list' => 'There is no installed extension',
  90. 'system' => 'System extension (you have no rights on it)',
  91. 'title' => 'Extensions',
  92. ),
  93. 'users' => array(
  94. 'articles_and_size' => '%s articles (%s)',
  95. ),
  96. );