From 79dd109e3715317ef2d87fc17f78aa9e162f5a06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Wed, 8 Oct 2014 21:08:21 +0200 Subject: Fixes #858: move compatibility file into install folder --- install/wallabag_compatibility_test.php | 427 ++++++++++++++++++++++++++++++++ wallabag_compatibility_test.php | 427 -------------------------------- 2 files changed, 427 insertions(+), 427 deletions(-) create mode 100644 install/wallabag_compatibility_test.php delete mode 100644 wallabag_compatibility_test.php diff --git a/install/wallabag_compatibility_test.php b/install/wallabag_compatibility_test.php new file mode 100644 index 00000000..3f9ff59f --- /dev/null +++ b/install/wallabag_compatibility_test.php @@ -0,0 +1,427 @@ + + * @copyright 2013 + * @license http://opensource.org/licenses/MIT see COPYING file + */ + +$app_name = 'wallabag'; + +$php_ok = (function_exists('version_compare') && version_compare(phpversion(), '5.3.3', '>=')); +$pcre_ok = extension_loaded('pcre'); +$zlib_ok = extension_loaded('zlib'); +$mbstring_ok = extension_loaded('mbstring'); +$dom_ok = extension_loaded('DOM'); +$iconv_ok = extension_loaded('iconv'); +$tidy_ok = function_exists('tidy_parse_string'); +$curl_ok = function_exists('curl_exec'); +$parse_ini_ok = function_exists('parse_ini_file'); +$parallel_ok = ((extension_loaded('http') && class_exists('HttpRequestPool')) || ($curl_ok && function_exists('curl_multi_init'))); +$allow_url_fopen_ok = (bool)ini_get('allow_url_fopen'); +$filter_ok = extension_loaded('filter'); +$gettext_ok = function_exists("gettext"); +$gd_ok = extension_loaded('gd'); + + +if (extension_loaded('xmlreader')) { + $xml_ok = true; +} elseif (extension_loaded('xml')) { + $parser_check = xml_parser_create(); + xml_parse_into_struct($parser_check, '&', $values); + xml_parser_free($parser_check); + $xml_ok = isset($values[0]['value']); +} else { + $xml_ok = false; +} + +header('Content-type: text/html; charset=UTF-8'); + +?> + + + +<?php echo $app_name; ?>: Server Compatibility Test + + + + + + + +
+
+ +
+

: Compatibility Test

+ + + + + + + + + + + + + + + + + + Enabled, and sane' : ' + + + + + Enabled' : ' + + + + + + + + Enabled' : ' + + + + + Enabled' : ' + + + + + Enabled' : ' + + + + + Enabled' : ' + + + + + Enabled' : ' + + + + + Enabled' : ' + + + + + Enabled' : ' + + + + + Enabled' : ' + + + + + Enabled' : ' + + +
TestShould BeWhat You Have
PHP5.3.3 or higher
XMLEnabledDisabled, or broken'; ?>
PCREEnabledDisabled'; ?>
DOM / XML extensionEnabledDisabled'; ?>
Data filteringEnabledDisabled'; ?>
GDEnabledDisabled'; ?>
TidyEnabledDisabled'; ?>
cURLEnabledDisabled'; ?>
Parse ini fileEnabledDisabled'; ?>
Parallel URL fetchingEnabledDisabled'; ?>
allow_url_fopenEnabledDisabled'; ?>
gettextEnabledDisabled'; ?>
+
+ +
+

What does this mean?

+
    + + +
  1. You have everything you need to run properly! Congratulations!
  2. + + +
  3. PHP: You are running a supported version of PHP. No problems here.
  4. + +
  5. XML: You have XMLReader support or a version of XML support that isn't broken installed. No problems here.
  6. + +
  7. PCRE: You have PCRE support installed. No problems here.
  8. + + +
  9. allow_url_fopen: You have allow_url_fopen enabled. No problems here.
  10. + + +
  11. Gettext: You have gettext enabled. No problems here.
  12. + + +
  13. Parse ini: You can parse ini files. No problems here.
  14. + + +
  15. DOM/XML: You can parse ini files. No problems here.
  16. + + +
  17. Data filtering: You can use the PHP build-in DOM to operate on XML documents. No problems here.
  18. + + +
  19. Zlib: You have Zlib enabled. This allows SimplePie to support GZIP-encoded feeds. No problems here.
  20. + +
  21. Zlib: The Zlib extension is not available. SimplePie will ignore any GZIP-encoding, and instead handle feeds as uncompressed text.
  22. + + + +
  23. mbstring and iconv: You have both mbstring and iconv installed! This will allow to handle the greatest number of languages. No problems here.
  24. + +
  25. mbstring: mbstring is installed, but iconv is not.
  26. + +
  27. iconv: iconv is installed, but mbstring is not.
  28. + +
  29. mbstring and iconv: You do not have either of the extensions installed. This will significantly impair your ability to read non-English feeds, as well as even some English ones.
  30. + + + +
  31. GD: You have GD support installed. No problems here.
  32. + +
  33. GD: The GD extension is not available. will not be able to download pictures locally on your server.
  34. + + + +
  35. Tidy: You have Tidy support installed. No problems here.
  36. + +
  37. Tidy: The Tidy extension is not available. should still work with most feeds, but you may experience problems with some.
  38. + + + +
  39. cURL: You have cURL support installed. No problems here.
  40. + +
  41. cURL: The cURL extension is not available. SimplePie will use fsockopen() instead.
  42. + + + +
  43. Parallel URL fetching: You have HttpRequestPool or curl_multi support installed. No problems here.
  44. + +
  45. Parallel URL fetching: HttpRequestPool or curl_multi support is not available. will use file_get_contents() instead to fetch URLs sequentially rather than in parallel.
  46. + + + +
  47. Data filtering: Your PHP configuration has the filter extension disabled. will not work here.
  48. + + + +
  49. DOM/XML: Your PHP configuration isn't standard, you're missing PHP-DOM. You may try to install a package or recompile PHP. will not work here.
  50. + + + +
  51. Parse ini files function : Bad luck : your webhost has decided to block the use of the parse_ini_file function. will not work here. + + + +
  52. GetText: The gettext extension is not available. The system we use to display wallabag in various languages is not available. will not work here.
  53. + + + +
  54. allow_url_fopen: Your PHP configuration has allow_url_fopen disabled. will not work here.
  55. + + + +
  56. PCRE: Your PHP installation doesn't support Perl-Compatible Regular Expressions. will not work here.
  57. + + +
  58. XML: Your PHP installation doesn't support XML parsing. will not work here.
  59. + + +
  60. PHP: You are running an unsupported version of PHP. will not work here.
  61. + + +
+
+ +
+ + +

Bottom Line: Yes, you can!

+

Your webhost has its act together!

+ +

You can download the latest version of from wallabag.org.

+

If you already have done that, you should access the index.php file of your installation to configure and/or start using wallabag

+ +

You can now return to the installation section.

+ +

Note: Passing this test does not guarantee that will run on your webhost — it only ensures that the basic requirements have been addressed. If you experience any problems, please let us know.

+ + +

Bottom Line: Yes, you can!

+

For most feeds, it'll run with no problems. There are certain languages that you might have a hard time with though.

+ +

You can download the latest version of from wallabag.org.

+

If you already have done that, you should access the index.php file of your installation to configure and/or start using wallabag

+ +

You can now return to the installation section.

+ +

Note: Passing this test does not guarantee that will run on your webhost — it only ensures that the basic requirements have been addressed. If you experience any problems, please let us know.

+ +

Bottom Line: We're sorry…

+

Your webhost does not support the minimum requirements for . It may be a good idea to contact your webhost and point them to the results of this test. They may be able to enable/install the required components.

+ +
+ +
+

This compatibility test has been borrowed (and slightly adapted by fivefilters.org) from the one supplied by SimplePie.org.

+
+ +
+ +
+ + + \ No newline at end of file diff --git a/wallabag_compatibility_test.php b/wallabag_compatibility_test.php deleted file mode 100644 index 3f9ff59f..00000000 --- a/wallabag_compatibility_test.php +++ /dev/null @@ -1,427 +0,0 @@ - - * @copyright 2013 - * @license http://opensource.org/licenses/MIT see COPYING file - */ - -$app_name = 'wallabag'; - -$php_ok = (function_exists('version_compare') && version_compare(phpversion(), '5.3.3', '>=')); -$pcre_ok = extension_loaded('pcre'); -$zlib_ok = extension_loaded('zlib'); -$mbstring_ok = extension_loaded('mbstring'); -$dom_ok = extension_loaded('DOM'); -$iconv_ok = extension_loaded('iconv'); -$tidy_ok = function_exists('tidy_parse_string'); -$curl_ok = function_exists('curl_exec'); -$parse_ini_ok = function_exists('parse_ini_file'); -$parallel_ok = ((extension_loaded('http') && class_exists('HttpRequestPool')) || ($curl_ok && function_exists('curl_multi_init'))); -$allow_url_fopen_ok = (bool)ini_get('allow_url_fopen'); -$filter_ok = extension_loaded('filter'); -$gettext_ok = function_exists("gettext"); -$gd_ok = extension_loaded('gd'); - - -if (extension_loaded('xmlreader')) { - $xml_ok = true; -} elseif (extension_loaded('xml')) { - $parser_check = xml_parser_create(); - xml_parse_into_struct($parser_check, '&', $values); - xml_parser_free($parser_check); - $xml_ok = isset($values[0]['value']); -} else { - $xml_ok = false; -} - -header('Content-type: text/html; charset=UTF-8'); - -?> - - - -<?php echo $app_name; ?>: Server Compatibility Test - - - - - - - -
-
- -
-

: Compatibility Test

- - - - - - - - - - - - - - - - - - Enabled, and sane' : ' - - - - - Enabled' : ' - - - - - - - - Enabled' : ' - - - - - Enabled' : ' - - - - - Enabled' : ' - - - - - Enabled' : ' - - - - - Enabled' : ' - - - - - Enabled' : ' - - - - - Enabled' : ' - - - - - Enabled' : ' - - - - - Enabled' : ' - - -
TestShould BeWhat You Have
PHP5.3.3 or higher
XMLEnabledDisabled, or broken'; ?>
PCREEnabledDisabled'; ?>
DOM / XML extensionEnabledDisabled'; ?>
Data filteringEnabledDisabled'; ?>
GDEnabledDisabled'; ?>
TidyEnabledDisabled'; ?>
cURLEnabledDisabled'; ?>
Parse ini fileEnabledDisabled'; ?>
Parallel URL fetchingEnabledDisabled'; ?>
allow_url_fopenEnabledDisabled'; ?>
gettextEnabledDisabled'; ?>
-
- -
-

What does this mean?

-
    - - -
  1. You have everything you need to run properly! Congratulations!
  2. - - -
  3. PHP: You are running a supported version of PHP. No problems here.
  4. - -
  5. XML: You have XMLReader support or a version of XML support that isn't broken installed. No problems here.
  6. - -
  7. PCRE: You have PCRE support installed. No problems here.
  8. - - -
  9. allow_url_fopen: You have allow_url_fopen enabled. No problems here.
  10. - - -
  11. Gettext: You have gettext enabled. No problems here.
  12. - - -
  13. Parse ini: You can parse ini files. No problems here.
  14. - - -
  15. DOM/XML: You can parse ini files. No problems here.
  16. - - -
  17. Data filtering: You can use the PHP build-in DOM to operate on XML documents. No problems here.
  18. - - -
  19. Zlib: You have Zlib enabled. This allows SimplePie to support GZIP-encoded feeds. No problems here.
  20. - -
  21. Zlib: The Zlib extension is not available. SimplePie will ignore any GZIP-encoding, and instead handle feeds as uncompressed text.
  22. - - - -
  23. mbstring and iconv: You have both mbstring and iconv installed! This will allow to handle the greatest number of languages. No problems here.
  24. - -
  25. mbstring: mbstring is installed, but iconv is not.
  26. - -
  27. iconv: iconv is installed, but mbstring is not.
  28. - -
  29. mbstring and iconv: You do not have either of the extensions installed. This will significantly impair your ability to read non-English feeds, as well as even some English ones.
  30. - - - -
  31. GD: You have GD support installed. No problems here.
  32. - -
  33. GD: The GD extension is not available. will not be able to download pictures locally on your server.
  34. - - - -
  35. Tidy: You have Tidy support installed. No problems here.
  36. - -
  37. Tidy: The Tidy extension is not available. should still work with most feeds, but you may experience problems with some.
  38. - - - -
  39. cURL: You have cURL support installed. No problems here.
  40. - -
  41. cURL: The cURL extension is not available. SimplePie will use fsockopen() instead.
  42. - - - -
  43. Parallel URL fetching: You have HttpRequestPool or curl_multi support installed. No problems here.
  44. - -
  45. Parallel URL fetching: HttpRequestPool or curl_multi support is not available. will use file_get_contents() instead to fetch URLs sequentially rather than in parallel.
  46. - - - -
  47. Data filtering: Your PHP configuration has the filter extension disabled. will not work here.
  48. - - - -
  49. DOM/XML: Your PHP configuration isn't standard, you're missing PHP-DOM. You may try to install a package or recompile PHP. will not work here.
  50. - - - -
  51. Parse ini files function : Bad luck : your webhost has decided to block the use of the parse_ini_file function. will not work here. - - - -
  52. GetText: The gettext extension is not available. The system we use to display wallabag in various languages is not available. will not work here.
  53. - - - -
  54. allow_url_fopen: Your PHP configuration has allow_url_fopen disabled. will not work here.
  55. - - - -
  56. PCRE: Your PHP installation doesn't support Perl-Compatible Regular Expressions. will not work here.
  57. - - -
  58. XML: Your PHP installation doesn't support XML parsing. will not work here.
  59. - - -
  60. PHP: You are running an unsupported version of PHP. will not work here.
  61. - - -
-
- -
- - -

Bottom Line: Yes, you can!

-

Your webhost has its act together!

- -

You can download the latest version of from wallabag.org.

-

If you already have done that, you should access the index.php file of your installation to configure and/or start using wallabag

- -

You can now return to the installation section.

- -

Note: Passing this test does not guarantee that will run on your webhost — it only ensures that the basic requirements have been addressed. If you experience any problems, please let us know.

- - -

Bottom Line: Yes, you can!

-

For most feeds, it'll run with no problems. There are certain languages that you might have a hard time with though.

- -

You can download the latest version of from wallabag.org.

-

If you already have done that, you should access the index.php file of your installation to configure and/or start using wallabag

- -

You can now return to the installation section.

- -

Note: Passing this test does not guarantee that will run on your webhost — it only ensures that the basic requirements have been addressed. If you experience any problems, please let us know.

- -

Bottom Line: We're sorry…

-

Your webhost does not support the minimum requirements for . It may be a good idea to contact your webhost and point them to the results of this test. They may be able to enable/install the required components.

- -
- -
-

This compatibility test has been borrowed (and slightly adapted by fivefilters.org) from the one supplied by SimplePie.org.

-
- -
- -
- - - \ No newline at end of file -- cgit v1.2.3 From 7331ed3e8090f980fee59f692a570f3cef5dd30e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Wed, 8 Oct 2014 21:11:56 +0200 Subject: change href in install/index.php --- install/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/index.php b/install/index.php index 00ac4a23..fe5a5785 100755 --- a/install/index.php +++ b/install/index.php @@ -254,7 +254,7 @@ else if (isset($_POST['install'])) {

To install wallabag, you just have to fill the following fields. That's all.

-

Don't forget to check your server compatibility here.

+

Don't forget to check your server compatibility here.

Technical settings -- cgit v1.2.3 From a7058a5a13eb93fa27d5425ecd2e9a289ab333ef Mon Sep 17 00:00:00 2001 From: tcit Date: Wed, 8 Oct 2014 21:35:21 +0200 Subject: Right redirect from the new path --- install/wallabag_compatibility_test.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/wallabag_compatibility_test.php b/install/wallabag_compatibility_test.php index 3f9ff59f..2e78b675 100644 --- a/install/wallabag_compatibility_test.php +++ b/install/wallabag_compatibility_test.php @@ -395,7 +395,7 @@ if (isset($_GET['from'])){

You can download the latest version of from wallabag.org.

If you already have done that, you should access the index.php file of your installation to configure and/or start using wallabag

-

You can now return to the installation section.

+

You can now return to the installation section.

Note: Passing this test does not guarantee that will run on your webhost — it only ensures that the basic requirements have been addressed. If you experience any problems, please let us know.

@@ -406,7 +406,7 @@ if (isset($_GET['from'])){

You can download the latest version of from wallabag.org.

If you already have done that, you should access the index.php file of your installation to configure and/or start using wallabag

-

You can now return to the installation section.

+

You can now return to the installation section.

Note: Passing this test does not guarantee that will run on your webhost — it only ensures that the basic requirements have been addressed. If you experience any problems, please let us know.

-- cgit v1.2.3