This topic is locked
[SOLVED]

 Another Question: Import UTF-8 Files

4/21/2010 9:25:39 AM
PHPRunner General questions
T
TKindermann author

Hello,
exist any How-To's for importing UTF-8 files.
kind regards
Thomas

Sergey Kornilov admin 4/21/2010

Should work the same as regular import.
What kind of problem you facing?
To speed up the process post your application to Demo Account and open a ticket at http://support.xlinesoft.com sending your Demo Account URL along with import file in question. 'Demo Account' button can be found on the last screen in the program.

T
TKindermann author 4/22/2010



Should work the same as regular import.
What kind of problem you facing?
To speed up the process post your application to Demo Account and open a ticket at http://support.xlinesoft.com sending your Demo Account URL along with import file in question. 'Demo Account' button can be found on the last screen in the program.


Thanks, I will do it tomorrow. kind regards.

Thomas

T
TKindermann author 4/23/2010

For all
here is the solution from the xline support team :-)
try to add following code to the "Import page: Before insert" event on the Events tab:
--------------------------
foreach($values as $field=>$value)
{
$values[$field]=utf8_decode($value);
}
--------------------------