mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
b075fa29c5
This is a fix for ticket #7670. Some hosting situations don't allow write access to the system temp path. tiny_mce_gzip.php is currently using sys_get_temp_dir() by default, and not using a local silverstripe-cache folder that may exist in the SilverStripe project. This change moves the getTempFolder() function into a common file, and includes that in core/Core.php, as well as thirdparty/tinymce/tiny_mce_gzip.php so both locations share the same code to work out the temp path.
47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Returns the temporary folder path that silverstripe should use for its cache files.
|
|
*
|
|
* @param $base The base path to use for determining the temporary path
|
|
* @return string Path to temp
|
|
*/
|
|
function getTempFolder($base = null) {
|
|
if(!$base && defined('BASE_PATH')) $base = BASE_PATH;
|
|
|
|
$tempPath = '';
|
|
$worked = true;
|
|
|
|
// first, try finding a silverstripe-cache dir built off the base path
|
|
$tempPath = $base . '/silverstripe-cache';
|
|
if(@file_exists($tempPath)) {
|
|
return $tempPath;
|
|
}
|
|
|
|
// failing the above, try finding a namespaced silverstripe-cache dir in the system temp
|
|
$cacheFolder = '/silverstripe-cache' . str_replace(array(' ', '/', ':', '\\'), '-', $base);
|
|
$tempPath = sys_get_temp_dir() . $cacheFolder;
|
|
if(!@file_exists($tempPath)) {
|
|
$worked = @mkdir($tempPath);
|
|
}
|
|
|
|
// failing to use the system path, attempt to create a local silverstripe-cache dir
|
|
if(!$worked) {
|
|
$worked = true;
|
|
$tempPath = $base . '/silverstripe-cache';
|
|
if(!@file_exists($tempPath)) {
|
|
$worked = @mkdir($tempPath);
|
|
}
|
|
}
|
|
|
|
if(!$worked) {
|
|
throw new Exception(
|
|
'Permission problem gaining access to a temp folder. ' .
|
|
'Please create a folder named silverstripe-cache in the base folder ' .
|
|
'of the installation and ensure it has the correct permissions'
|
|
);
|
|
}
|
|
|
|
return $tempPath;
|
|
}
|
|
|