按照如下路径找到 config.php 文件FCK目录/editor/filemanager/upload/php/在30多行处有定义 Path to uploaded files relative to the document root.修改 $Config['UserFilesPath'] 即可例子:// Path to uploaded files relative to the document root.
$path = date("Y/m/d");
$Config['UserFilesPath'] = '/userfiles/' . $path ;

解决方案 »

  1.   

    目的是要改变$Config['UserFilesPath'],但我想由自己定义文件夹,不是随机生成
    比如,用户名为"yiheng";则$Config['UserFilesPath'] = "yiheng"      //变量由$_GET['ServerPath']获得
      

  2.   

    那就用变量啊.SESSION变量.COOKIE变量.
    其它用得到的变量.都行....
      

  3.   

    那你吧用户名赋值给$Config['UserFilesPath']不就行了 正常来讲,用户上传东西的时候一定已经登录了,得到用户名还不简单么 .
      

  4.   

    带解决的问题还有:
    http://bbs.php100.com/read.php?fid=5&tid=2771&u=3673