OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Deprecated PHP error in Quick Install (0 viewing) 

VehicleManager component support

Go to bottom Favoured: 0

Deprecated PHP error in Quick Install

paevo (User)
Expert Boarder
Posts: 109
graphgraph
User Offline Click here to see the profile of this user
Deprecated PHP error in Quick Install 8 Years, 7 Months ago
Karma: 0  
I get the following 3 errors in the Joomla Web Installer which are preventing me from installing the VM Quick Install Package:

Code:

 Deprecated: iconv_set_encoding(): Use of iconv.internal_encoding is deprecated in C:xampphtdocsvehiclemanagerlibrariesjoomlastringstring.php on line 27

Deprecated: iconv_set_encoding(): Use of iconv.input_encoding is deprecated in C:xampphtdocsvehiclemanagerlibrariesjoomlastringstring.php on line 28

Deprecated: iconv_set_encoding(): Use of iconv.output_encoding is deprecated in C:xampphtdocsvehiclemanagerlibrariesjoomlastringstring.php on line 29



Is there a workaround for this?
Logged Logged
The administrator has disabled public write access.
paevo (User)
Expert Boarder
Posts: 109
graphgraph
User Offline Click here to see the profile of this user
Re:Deprecated PHP error in Quick Install 8 Years, 7 Months ago
Karma: 0  
I am using the latest version of XAMPP with PHP 5.6.11.
Logged Logged
The administrator has disabled public write access.
paevo (User)
Expert Boarder
Posts: 109
graphgraph
User Offline Click here to see the profile of this user
Re:Deprecated PHP error in Quick Install 8 Years, 7 Months ago
Karma: 0  
Found the answer on Template Monster website:

Replace code with following:

if (function_exists('iconv' && PHP_VERSION_ID < 50600)
{
// These are settings that can be set inside code
iconv_set_encoding("internal_encoding", "UTF-8";
iconv_set_encoding("input_encoding", "UTF-8";
iconv_set_encoding("output_encoding", "UTF-8";
}
elseif (PHP_VERSION_ID >= 50600)
{
ini_set("default_charset", "UTF-8";
}
Logged Logged
The administrator has disabled public write access.
AnnaZh (Admin)
Admin
Posts: 226
graphgraph
User Offline Click here to see the profile of this user
Gender: Female Location: Kharkov, Ukraine
Re:Deprecated PHP error in Quick Install 8 Years, 7 Months ago
Karma: 7  
Dear Paul,

Thank you for sharing the solution with others.

Have a nice day!

Best Regards,
Anna
ordasoft.com
Logged Logged
The administrator has disabled public write access.
Go to top
»