IMCE Fix

From WolfTech
Revision as of 14:34, 30 June 2008 by Rjhodson (talk | contribs) (New page: To allow IMCE to work on Drupal 6 on the Engineering Servers, you need to replace the following (line 462): <pre> $temp = tempnam(realpath(file_directory_temp()), 'imc'); </pre> with: <pr...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

To allow IMCE to work on Drupal 6 on the Engineering Servers, you need to replace the following (line 462):

$temp = tempnam(realpath(file_directory_temp()), 'imc');

with:

//$temp = tempnam(realpath(file_directory_temp()), 'imc');
$temp = file_directory_temp(); //WOLFTECH CHANGES MADE