Difference between revisions of "IMCE Fix"
Jump to navigation
Jump to search
(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...) |
|||
Line 1: | Line 1: | ||
− | To allow IMCE to work on Drupal 6 on the Engineering Servers, you need to replace the following (line 462): | + | To allow IMCE to work on Drupal 6 on the Engineering Servers, you need to replace the following in modules/imce/inc/page.inc (line 462): |
<pre> | <pre> | ||
$temp = tempnam(realpath(file_directory_temp()), 'imc'); | $temp = tempnam(realpath(file_directory_temp()), 'imc'); |
Revision as of 13:35, 30 June 2008
To allow IMCE to work on Drupal 6 on the Engineering Servers, you need to replace the following in modules/imce/inc/page.inc (line 462):
$temp = tempnam(realpath(file_directory_temp()), 'imc');
with:
//$temp = tempnam(realpath(file_directory_temp()), 'imc'); $temp = file_directory_temp(); //WOLFTECH CHANGES MADE