From be6fd4ba89e151b68ddd68e53d6a403c2e8eb862 Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Mon, 16 Nov 2015 16:58:19 +0800 Subject: Fixed bug #68077 (LOAD DATA LOCAL INFILE / open_basedir restriction) Actually, this only be fixed if php uses mysqlnd --- ext/mysql/php_mysql.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ext/mysql/php_mysql.c') diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index 8a8a052bf5..90ffb400b9 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -799,6 +799,7 @@ static void php_mysql_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent) passwd_len = passwd? strlen(passwd):0; } +#if !defined(MYSQL_USE_MYSQLND) /* disable local infile option for open_basedir */ #if PHP_API_VERSION < 20100412 if (((PG(open_basedir) && PG(open_basedir)[0] != '\0') || PG(safe_mode)) && (client_flags & CLIENT_LOCAL_FILES)) { @@ -807,6 +808,7 @@ static void php_mysql_do_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent) #endif client_flags ^= CLIENT_LOCAL_FILES; } +#endif #ifdef CLIENT_MULTI_RESULTS client_flags |= CLIENT_MULTI_RESULTS; /* compatibility with 5.2, see bug#50416 */ -- cgit v1.2.1