0

Hi i have implemented my site in expression engine and in my local it is working fine but while I have moved my site to live my image uploading is not working due to theme_folder_url is in local,I have searched what it will be and found

$config['theme_folder_path'] = "/home/user/example.com/themes/";

What is the home , user....In live my folder structure is like public_html/themes/....So how can I give that path in my admin pannel.Anyone suggest me please

4

1 回答 1

0

您应该能够在控制面板中转到 Admin => General Configuration 并将路径“URL 到您的“主题”文件夹”更改为您的主题文件夹所在的位置。它可以是相对的或绝对的。您还需要将“主题文件夹路径”编辑为您的服务器路径。

编辑* 如果您不确定您的托管服务器路径是什么,您应该能够在根文件夹中使用类似的东西并浏览到它以收集路径。

<?php
    $dir = dirname(__FILE__);
    echo "<p>Full path to this dir: " . $dir . "</p>";
?>
于 2013-06-27T17:13:15.240 回答