XAMPP + Cake installation on Windows 7 causes the curious problem of introducing backslashes in pathnames of uploaded files.
+1
A:
Is it a case of needing to define the directory separator? See this from webroot/index.php:
/**
* Use the DS to separate the directories in other defines
*/
if (!defined('DS')) {
define('DS', '/');//DIRECTORY_SEPARATOR);
}
/**
Leo
2010-09-09 10:24:12