User tests: Successful: Unsuccessful:
This fixes: #5192
See 82d8459 for the fix against staging.
Download and extract xampp 5.6.3 (they change the versioning to reflect the PHP Version)
Download and extract joomla 2.5.x (github branche or stable)
try to install
Install works (after fixing this it still don't work but i will open a new issue for that; see: #5193 )
Deprecated: iconv_set_encoding(): Use of iconv.internal_encoding is deprecated in JRoot\libraries\joomla\string\string.php on line 28
Deprecated: iconv_set_encoding(): Use of iconv.input_encoding is deprecated in JRoot\libraries\joomla\string\string.php on line 29
Deprecated: iconv_set_encoding(): Use of iconv.output_encoding is deprecated in JRoot\libraries\joomla\string\string.php on line 30
Default xampp Konfiguration with:
Apache 2.4.10, MySQL 5.6.21, PHP 5.6.3, phpMyAdmin 4.2.11, OpenSSL 1.0.1, XAMPP Control Panel 3.2.1, Webalizer 2.23-04, Mercury Mail Transport System 4.63, FileZilla FTP Server 0.9.41, Tomcat 7.0.56 (with mod_proxy_ajp as connector), Strawberry Perl 7.0.56 Portable
I think the Joomla Core should work with the default xampp config as it is often used for "testing" and planing joomla if can't be done on the production site not only by experts mostly by end users to pre-test Joomla.
Labels |
Added:
?
|
Category | ⇒ | Installation Libraries |
Milestone |
Added: |
see /libraries/vendor/joomla/string/src/String.php
I would keep the original conditional
if (function_exists('iconv') || ((!strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' && dl('iconv.so'))))
What you think?
I think the Joomla Core should work with the default xampp config as it is often used for "testing" and planing joomla if can't be done on the production site not only by experts mostly by end users to pre-test Joomla.
To be blunt, I don't expect many testing being done on 2.5 anymore. Last release is only a week or two away.
I would keep the original conditional
fixed @infograf768 zero-24@7023efb
Does not cost much to get in. ☺ Merging. Thanks.
Milestone |
Added: |
Status | Pending | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2014-11-26 09:12:09 |
Should not
+if (version_compare(PHP_VERSION, '5.6', '>='))
be INSIDE the
if (function_exists('iconv') || ((!strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' && dl('iconv.so'))))
conditional?