Skip to content

Instantly share code, notes, and snippets.

@1gor
Created October 23, 2012 17:00
Show Gist options
  • Save 1gor/3940081 to your computer and use it in GitHub Desktop.
Save 1gor/3940081 to your computer and use it in GitHub Desktop.
AppFog fix for Drupal 7's /tmp location error
/**
* Force location of /tmp
*/
$AF_tmp = realpath($_SERVER['DOCUMENT_ROOT'].'/../tmp');
variable_set('file_temporary_path', $AF_tmp);
return $AF_tmp;
/* END */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment