Backslash added before single quote in magmi ruin my day -
i know it's such dump question, makes life difficult. wonder why in server, there added backslash before '
(single quote). if input script '/home/user/public_html/file.csv'
\'/home/user/public_html/file.csv\'
when save profile. causes error because magmi misinterpret script. tried remove conf file manually, added again everytime save it. happen in server linux, doesn't happen in localhost windows. there solution issue?
your server may have magic_quotes_gpc enabled, automatically escapes double , single quotes backslash.
you can try disabling adding following in .htaccess file:
php_flag magic_quotes_gpc off
or using php.ini override:
magic_quotes_gpc = off
you can read more disabling magic quotes @ php: disable magic quotes - manual
Comments
Post a Comment