Hi - I am struggling with this same problem. It says the image uploads successfully but it is nowhere to be seen on the server. None of the solutions found elsewhere have solved it for me. There seems not to be a clear explanation of how to make this work - lots of forum discussion but few solutions. My set up is php 5.2.0 Apache (v1.3.37) Linux. If someone can provide an answer I would happily write it up for all to use. Cheers
Yes this issue gets me every time. I just got most of it working. I think the setting that made it work for me was in editor/filemaneger/browser/default/connectors/php/config.php
// Path to user files relative to the document root. $Config['UserFilesPath'] = '/images/userfiles/' ;
// Fill the following value it you prefer to specify the absolute path for the // user files directory. Usefull if you are using a virtual directory, symbolic // link or alias. Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'. // Attention: The above 'UserFilesPath' must point to the same directory. $Config['UserFilesAbsolutePath'] = '/home/-mysiteusername-/public_html/images/userfiles/' ;
- so setting the absolute path seemed to make a difference. I could be totally wrong, I tried lots of things.
.. theres a couple of config files .. im still dizzy from the sheer frustration of wasting the last 3 hours trying to fix this.
My only problem now is that the filemanager uploads images to: images/userfiles/Image whereas in the image pop-up - in the 'upload' tab - using this uploads to: images/userfiles/image
.. or maybe its the other way around ... whatever lets see .. should I spend another 3 hours trying to fix that? ... grrrrr
using gd thumbs as well.
Thanks to anyone that can help - just where to change that single character - from "i" to "I" in "image"?
I'll find it eventually, but spending this much time is driving me broke. grrrrr
Very glad I was able to help. Thanks for the pointer on the upload file name problem - actually I found that thread soon afterwards & it works. So now I'm a happy uploader. Strangely, I find that quite often the act of asking for help seems to make the solution appear one way or another.
I have no probs viewing the uploaded files in the file browser. I think theres separate settings for the 'upload' and 'file browser'. filemanager/browser/default/connectors/php/config.php also connector.php is worth a look - i changed
$GLOBALS["UserFilesPath"] = '/UserFiles/' ; to $GLOBALS["UserFilesPath"] = '/userfiles/' ;
I use 'userfiles' - but that will change depending on one's own filenaming preference.
I really dont know whats what, the above edit may have no effect.
RE: Upload Image - where are they stored ?
Cheers
RE: Upload Image - where are they stored ?
RE: Upload Image - where are they stored ?
// Path to user files relative to the document root.
$Config['UserFilesPath'] = '/images/userfiles/' ;
// Fill the following value it you prefer to specify the absolute path for the
// user files directory. Usefull if you are using a virtual directory, symbolic
// link or alias. Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'.
// Attention: The above 'UserFilesPath' must point to the same directory.
$Config['UserFilesAbsolutePath'] = '/home/-mysiteusername-/public_html/images/userfiles/' ;
- so setting the absolute path seemed to make a difference. I could be totally wrong, I tried lots of things.
.. theres a couple of config files .. im still dizzy from the sheer frustration of wasting the last 3 hours trying to fix this.
My only problem now is that the filemanager uploads images to:
images/userfiles/Image
whereas in the image pop-up - in the 'upload' tab - using this uploads to:
images/userfiles/image
.. or maybe its the other way around ... whatever
lets see .. should I spend another 3 hours trying to fix that? ...
grrrrr
using gd thumbs as well.
Thanks to anyone that can help - just where to change that single character - from "i" to "I" in "image"?
I'll find it eventually, but spending this much time is driving me broke. grrrrr
.. sorry for bad vibes, but you know how it is.
RE: Upload Image - where are they stored ?
http://sourceforge.net/forum/forum.php? ... _id=257180
RE: Upload Image - where are they stored ?
I have no probs viewing the uploaded files in the file browser. I think theres separate settings for the 'upload' and 'file browser'.
filemanager/browser/default/connectors/php/config.php
also connector.php is worth a look - i changed
$GLOBALS["UserFilesPath"] = '/UserFiles/' ;
to
$GLOBALS["UserFilesPath"] = '/userfiles/' ;
I use 'userfiles' - but that will change depending on one's own filenaming preference.
I really dont know whats what, the above edit may have no effect.