Multi-Site install..
Testing both version of the plugins.
Flash upload was not working with the new upload.php
1.6.2 version of upload.php It is working.
The new version kept giving me a error 500 for the flash uploading
It just seems the head of the file is difference is
the very top..
define('WP_ADMIN', true);
// look up for the path
require_once( dirname( dirname(__FILE__) ) . '/ngg-config.php');
// Flash often fails to send cookies with the POST or upload, so we need to pass it in GET or POST instead
if (function_exists('is_ssl')) {
if ( is_ssl() && empty($_COOKIE[SECURE_AUTH_COOKIE]) && !empty($_REQUEST['auth_cookie']) )
$_COOKIE[SECURE_AUTH_COOKIE] = $_REQUEST['auth_cookie'];
elseif ( empty($_COOKIE[AUTH_COOKIE]) && !empty($_REQUEST['auth_cookie']) )
$_COOKIE[AUTH_COOKIE] = $_REQUEST['auth_cookie'];
} else {
if ( empty($_COOKIE[AUTH_COOKIE]) && !empty($_REQUEST['auth_cookie']) )
$_COOKIE[AUTH_COOKIE] = $_REQUEST['auth_cookie'];
}