sb1963 FusionBB Fanatic Total Posts: 1636
 Location: UK Average Post Ranks%:
|
12-07-10 03:56 PM - Post#85009
Subject: [3.1] Finished 2 - File Manager - Remove
Bug for: Fusion [3.1] Finished 2 -
Description: TTrying to remove image with the remove option in file manager doesn't work & brings up this messsgae;
There was a problem loading this page:
No file found for uploading.
Use your browsers Back Button to return to the previous page.
|
Couchtomatoe Code Monkey Total Posts: 3049
 Birthday: 02-03 Location: Richmond, Virginia Average Post Ranks%:
|
12-07-10 04:53 PM - Post#85017
In response to sb1963
works on the devsite so how exactly are you using it?
|
sb1963 FusionBB Fanatic Total Posts: 1636
 Location: UK Average Post Ranks%:
|
12-07-10 05:12 PM - Post#85020
In response to Couchtomatoe
The only way I know how.
I want to remove an image from File Manager - I click remove - I get that message.
|
Couchtomatoe Code Monkey Total Posts: 3049
 Birthday: 02-03 Location: Richmond, Virginia Average Post Ranks%:
|
12-07-10 05:33 PM - Post#85022
In response to sb1963
go to the deviste and try it and tell me if you get that error
|
Couchtomatoe Code Monkey Total Posts: 3049
 Birthday: 02-03 Location: Richmond, Virginia Average Post Ranks%:
|
|
sb1963 FusionBB Fanatic Total Posts: 1636
 Location: UK Average Post Ranks%:
|
12-07-10 07:03 PM - Post#85024
In response to Couchtomatoe
I can remove*.
But.. & this is the same as I am seeing on my test site but was going to dig into before posting here, I upload a pic & place the Thumb LB markup in the post.
I Submit post & get this warning:
There was a problem loading this page:
An image file must be attached to topics created in a gallery forum.
Use your browsers Back Button to return to the previous page.
*With regard to my not being able to remove post. My gallery folder is not writable (nor avatars etc.) Could that be the problem? I haven't done any thing with permissions on this install as I though the VH server I'm on didn't need any changes to be made?
|
sb1963 FusionBB Fanatic Total Posts: 1636
 Location: UK Average Post Ranks%:
|
12-07-10 07:24 PM - Post#85026
In response to sb1963
I can place pics in non-galleries ok
|
Couchtomatoe Code Monkey Total Posts: 3049
 Birthday: 02-03 Location: Richmond, Virginia Average Post Ranks%:
|
12-07-10 07:29 PM - Post#85028
In response to sb1963
Thanx now that is the meat of the issue and and I will troubleshoot that.. but when ya first came in here
"TTrying to remove image with the remove option in file manager doesn't work & brings up this messsgae;"
didn't help me identify.. now I can identify the issue and issue a fix and upgrade the downloader..
|
sb1963 FusionBB Fanatic Total Posts: 1636
 Location: UK Average Post Ranks%:
|
12-07-10 07:34 PM - Post#85030
In response to Couchtomatoe
Just posting one issue at a time. To me not being able to remove an image from the file manager is totally different to not being able to place a pic in the gallery - but that's why I am/was(?) only a alpha tester & not the code monkey!
|
Couchtomatoe Code Monkey Total Posts: 3049
 Birthday: 02-03 Location: Richmond, Virginia Average Post Ranks%:
|
12-07-10 08:35 PM - Post#85033
In response to sb1963
and to fix this issue yourself go to templates/fusionbb/managefiles.php and find
Code:
function update_files(files) {
parent.opener.document.getElementById('file').innerHTML=files;
parent.opener.document.forms[<!--FORM_NAME-->].files_added.value=files;
parent.opener.document.forms[<!--FORM_NAME-->].formkey.value=document.forms[<!--FORM_NAME-->].formkey.value;
}
and change to Code:
function update_files(files) {
parent.opener.document.getElementById('file').innerHTML=files;
parent.opener.document.forms["<!--FORM_NAME-->"].files_added.value=files;
parent.opener.document.forms["<!--FORM_NAME-->"].formkey.value=document.forms["<!--FORM_NAME-->"].formkey.value;
}
|
sb1963 FusionBB Fanatic Total Posts: 1636
 Location: UK Average Post Ranks%:
|
12-07-10 08:46 PM - Post#85036
In response to Couchtomatoe
Thanks Couch. Will do that tomorrow now.
I'm sure VH run suphp on the server I'm on. Should I have manually set up any permissions on install?
I'm guessing it's a perms issue that making my folders like gallery unwritable & for 'remove' not to work in the file manager
|
Couchtomatoe Code Monkey Total Posts: 3049
 Birthday: 02-03 Location: Richmond, Virginia Average Post Ranks%:
|
12-07-10 08:46 PM - Post#85037
In response to sb1963
uploaded new files to member area to fix issue.. no new db changes just script
|
Couchtomatoe Code Monkey Total Posts: 3049
 Birthday: 02-03 Location: Richmond, Virginia Average Post Ranks%:
|
12-07-10 08:47 PM - Post#85038
In response to Couchtomatoe
on suphp ask your host how permissions should be... normally it would be 777 for directories and 666 for files..
|