73 req_found: 'Found', |
73 req_found: 'Found', |
74 req_enabled: 'Enabled', |
74 req_enabled: 'Enabled', |
75 req_disabled: 'Disabled', |
75 req_disabled: 'Disabled', |
76 req_writable: 'Writable', |
76 req_writable: 'Writable', |
77 req_unwritable: 'Unwritable', |
77 req_unwritable: 'Unwritable', |
|
78 req_gmp: 'GNU Multi-Precision (GMP)', |
|
79 req_bigint: 'Big_Int', |
|
80 req_bcmath: 'BCMath', |
78 |
81 |
79 heading_serverenv: 'Server environment', |
82 heading_serverenv: 'Server environment', |
80 heading_dbms: 'Database servers', |
83 heading_dbms: 'Database servers', |
81 heading_files: 'Writable files', |
84 heading_files: 'Writable files', |
82 heading_images: 'Image manipulation', |
85 heading_images: 'Image manipulation', |
83 heading_crypto: 'Cryptographic features', |
|
84 |
86 |
85 req_apache: 'Apache web server', |
87 req_apache: 'Apache web server', |
86 req_php: 'PHP version', |
88 req_php: 'PHP version', |
87 req_mysql: 'MySQL database support', |
89 req_mysql: 'MySQL database support', |
88 req_postgresql: 'PostgreSQL database support', |
90 req_postgresql: 'PostgreSQL database support', |
89 req_safemode: 'Safe Mode', |
91 req_safemode: 'Safe Mode', |
90 req_uploads: 'PHP file upload support', |
92 req_uploads: 'PHP file upload support', |
91 req_ctype: 'PHP ctype_* validation functions', |
93 req_ctype: 'PHP ctype_* validation functions', |
|
94 req_crypto: 'Arbitrary precision (cryptographic) math', |
92 req_config_writable: 'Configuration file: config.new.php', |
95 req_config_writable: 'Configuration file: config.new.php', |
93 req_htaccess_writable: 'Apache rewrite rules: .htaccess.new', |
96 req_htaccess_writable: 'Apache rewrite rules: .htaccess.new', |
94 req_files_writable: 'File storage directory: files/', |
97 req_files_writable: 'File storage directory: files/', |
95 req_cache_writable: 'Cache directory: cache/', |
98 req_cache_writable: 'Cache directory: cache/', |
96 req_gd2: 'GD2 library', |
99 req_gd2: 'GD2 library', |
97 req_imagemagick: 'ImageMagick', |
100 req_imagemagick: 'ImageMagick', |
98 req_gmp: 'GMP arbitrary-precision math', |
|
99 req_bigint: 'Big_Int arbitrary-precision math', |
|
100 req_bcmath: 'BCMath arbitrary-precision math', |
|
101 |
101 |
102 req_hint_htaccess_writable: 'Only needs to be writable if you plan to use Rewritten URLs.', |
102 req_hint_htaccess_writable: 'Only needs to be writable if you plan to use Rewritten URLs.', |
103 req_hint_gd2: 'Used for generating visual confirmation and resizing uploaded images', |
103 req_hint_gd2: 'Used for generating visual confirmation and resizing uploaded images', |
104 req_hint_imagemagick: 'Faster alternative for resizing uploaded images', |
104 req_hint_imagemagick: 'Faster alternative for resizing uploaded images', |
105 req_hint_gmp: 'Fastest backend for Diffie-Hellman cryptographic math', |
|
106 req_hint_bigint: 'Relatively fast backend for Diffie-Hellman cryptographic math', |
|
107 req_hint_bcmath: 'Allows Diffie-Hellman cryptographic math but slower', |
|
108 |
105 |
109 req_help_apache: 'Apache is the best server for Enano because it provides features that Enano can use, primarily support for Rewritten URLs.', |
106 req_help_apache: 'Apache is the best server for Enano because it provides features that Enano can use, primarily support for Rewritten URLs.', |
110 req_help_php: 'Enano requires PHP version 5.0.0 or later, and runs best under PHP 5.2.0 or later. (You are running PHP %php_version%).', |
107 req_help_php: 'Enano requires PHP version 5.0.0 or later, and runs best under PHP 5.2.0 or later. (You are running PHP %php_version%).', |
111 req_help_safemode: 'Safe Mode interferes with Enano\'s ability to operate properly. Thus, installing Enano with Safe Mode enabled is currently not supported.', |
108 req_help_safemode: 'Safe Mode interferes with Enano\'s ability to operate properly. Thus, installing Enano with Safe Mode enabled is currently not supported.', |
112 req_help_uploads: 'PHP file upload support is a prerequisite for uploading files via Enano\'s web interface.', |
109 req_help_uploads: 'PHP file upload support is a prerequisite for uploading files via Enano\'s web interface.', |
113 req_help_writable: 'Certain files need to be writable for installation and certain features to work properly. Use your FTP client\'s "CHMOD" feature to set numeric permissions on the items listed above: 666 for files, and 777 for directories. It\'s safest to CHMOD config.php to 444 once installation is complete.', |
110 req_help_writable: 'Certain files need to be writable for installation and certain features to work properly. Use your FTP client\'s "CHMOD" feature to set numeric permissions on the items listed above: 666 for files, and 777 for directories. It\'s safest to CHMOD config.php to 444 once installation is complete.', |
114 req_help_gd2: 'Without GD, Enano has to use a visual confirmation engine that generates weaker images that are easier to break.', |
111 req_help_gd2: 'Without GD, Enano has to use a visual confirmation engine that generates weaker images that are easier to break.', |
115 req_help_imagemagick: 'Without ImageMagick, Enano will use GD (if it is available) to scale images down. This is slightly slower.', |
112 req_help_imagemagick: 'Without ImageMagick, Enano will use GD (if it is available) to scale images down. This is slightly slower.', |
116 req_help_gmp: 'GMP is the fastest backend for Enano\'s cryptographic math. If you don\'t have GMP or Big_Int, logging in might be slower.', |
113 req_help_crypto_none: 'Your server has no support for arbitrary-precision math, which is required for encrypted logon. Your username and password will not be transmitted securely until one of the following PHP extensions is installed: GMP, Big_Int, or BCMath.', |
117 req_help_bigint: 'Big_Int is a faster backend for Enano\'s cryptographic math. If you don\'t have GMP or Big_Int, logging in might be slower.', |
114 req_help_crypto_bcmath: 'Your server supports arbitrary-precision math, but only through PHP\'s BCMath extension which is extremely slow. Expect the process of logging in to take 6-10 seconds.', |
118 req_help_bcmath: 'BCMath is a fallback backend for Enano\'s cryptographic math. If you don\'t have GMP, BCMath or Big_Int, Enano will have to use an insecure method to transmit your login information.', |
|
119 |
115 |
120 err_no_dbms_title: 'No database backends are available.', |
116 err_no_dbms_title: 'No database backends are available.', |
121 err_no_dbms_body: 'Enano requires at least one database backend to install. Please consult with your hosting provider to obtain help with this situation. If you are running a VPS or dedicated server, install the php-mysql or php-pgsql (on Red Hat®-based distributions) or php5-mysql or php5-pgsql (on Debian-based distributions) packages. For Windows servers, ensure that the php_mysql or php_pgsql extension is enabled in php.ini.', |
117 err_no_dbms_body: 'Enano requires at least one database backend to install. Please consult with your hosting provider to obtain help with this situation. If you are running a VPS or dedicated server, install the php-mysql or php-pgsql (on Red Hat®-based distributions) or php5-mysql or php5-pgsql (on Debian-based distributions) packages. For Windows servers, ensure that the php_mysql or php_pgsql extension is enabled in php.ini.', |
122 |
118 |
123 summary_pass_title: 'Congratulations! Enano can run on this server.', |
119 summary_pass_title: 'Congratulations! Enano can run on this server.', |