PDA

View Full Version : File Upload does not work


mvdw
07-09-2007, 12:34 PM
I am not able to get the file upload to work. I have read through the forums and it seems to me I am the only one with this problem. I am using PHP 5.2.1 on localhost, mysql 5.0.37 on Windows Pro, XAMP 1.1.1.2. (Localhost not linked to the internet)

I do not get an error when I save, but
1) the file is not uploaded (the directory specified for upload does not contain the file after the record is saved.)
2) the URL to the file after the joomla path contains .../Array/ instead of my specified sub-directories images/stories/nccdocs/
3) The URL does not contain a link to the file as specified.

Also, I am using Fabrik 1.0.4 - the version that can be downloaded via the Downloads section on this site - is there a later version that I can download? And if so, where do I find it?

mvdw
07-09-2007, 07:50 PM
I upload a phpinfo() of my local host. Any help will be appreciated.

Thanks

andrelewis
07-10-2007, 11:43 PM
If you are on windows you probably need to use '\' instead of '/' for your paths so that

images/stories/nccdocs/

becomes:

images\stories\nccdocs\

The array thing makes me think that you have Repeat Groups turned on for your group, and if you have this on it will return 'array' incorrectly.

Hope this helps,

Andre

mvdw
07-11-2007, 06:59 AM
Hello Andre

Thanks!!! Excellent, this solved the problem - I did have the settings like you indicated, and changing it made the difference.

Mariana