/* * MSP Import Gantt Demo * Bryntum AB ©2012 */ This is a demo showing how to import data from MS Project's mpp file to our ExtGantt component. Requirements for this demo to work are : - Java JDK 1.5+ with privileges for server user to run it. Next we have to set the path to destination where the JSON-formatted data from the mpp file will be saved. $move_path = "/tmp/"; (...) if(move_uploaded_file($file_tmp, $move_path)){ Note: On Windows systems, the path where the file will be saved needs to be absolute and use backslashes: $move_path = 'C:\path_to_save_file\$file_name' You also need to make sure that the server user has privileges for both reading/creating files.