r10'da en azından php dosyası yüklense ne iyi olur. Yükleyemediğim için aşağıda paylaşıyorum ilgili metni kopyalayıp, forumpath.php yapın ve ftp ana dizine yükleyin. Daha sonra tarayıcıdan bakın, size ilgili forumpath verecektir. Buyrun:
<?php
if ($_SERVER['PATH_TRANSLATED'])
{
$path = $_SERVER['PATH_TRANSLATED'];
}
else if ($_SERVER['SCRIPT_FILENAME'])
{
$path = $_SERVER['SCRIPT_FILENAME'];
}
else
{
echo 'Forumunuz icin bir path olusturulamadi.';
exit;
}
$path = str_replace(array('\\', '//'), array('/', '/'), $path);
echo substr($path, 0, (strlen($path) - 14));
?>Bunu yaptıktan sonra forumpath'i kopyalayıp şöyle yapacaksınız örnek vereceğim tabii ki:
$config['cache']['enabled'] = true;
$config['cache']['backend'] = 'File';
$config['cache']['frontend'] = 'Core';
$config['cache']['cacheSessions'] = true;
$config['cache']['frontendOptions']['cache_id_prefix'] = 'xf_';
$config['cache']['backendOptions'] ['cache_dir'] = '/home/siteadı/public_html/internal_data/cache';
/home/siteadı/public_html/ <-- örnek için öyle ekledim.
internal_data klasörüne açtığınız cache klasörünün değerini de 777 vermeyi unutmayın.
Dipnot: sorun yaşarsanız cacheSessions'ı, false yaparsınız.