On Mon, Feb 1, 2010 at 6:00 AM, loonquawl <[email protected]> wrote:
>
> @The Editor: The files folder preexisted, and upload did not pose any
> difficulties - it is the embedding of uploaded pictures, that does not
> work - i did not understand the code you posted, so i do not know
> whether this also applies. Thank you, anyways for the involved work
> you're doing.
Oh, sorry. Didn't read your initial email carefully enough. Though I
am glad to have gotten something else fixed in the process.
You are right, BoltWire should set the permissions on the files.
Currently, it only worries about the folders, so I'm not sure how the
individual file permissions get set. Guess, just luck. :)
Try changing line 630 or so of commands.php from this
if ($success) BOLTmsg('upload_success', "~$filename");
to this:
if ($success) {
chmod("$filepath/$filename", 0644);
BOLTmsg('upload_success', "~$filename");
}
And see if it doesn't solve the problem. If so, I'll add the change in
the next release.
Cheers,
Dan
--
You received this message because you are subscribed to the Google Groups
"BoltWire" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/boltwire?hl=en.