so if I upload an image (from the fckeditor browser) the image uploads then I end up at the image node.
But if I press Alt+Left Arrow and go back then I get back to the imagebrowser where now the upload image thumbnail is.
See attached for a visual.
I am going to test the .htaccess file see it is is causing it.

CommentFileSizeAuthor
#1 Screenshot-2.png31.03 KByurtboy
sample.png110.27 KByurtboy

Comments

yurtboy’s picture

StatusFileSize
new31.03 KB

This is what I did to take care of it for now...
Tried my .htaccess file with no success.
These are multi site installs so maybe that is why?
The one site that does work is a regular install.
I opened the page.tpl.php and added this to the top.

<?php 
/* need to redirect for imagebrowser if url
 * ?uid=&header=&footer=
 * send to /?q=imagebrowser/view/browser&app=FCKEditor#
 */
isset($_GET['uid']) && isset($_GET['header']) && isset($_GET['footer']))  {
header('location:http://www.example.com/?q=imagebrowser/view/browser&app=FCKEditor#');
}
?>

Make sure to have NO LINE BREAKS between this and the header of the file

<?php // $Id: page.tpl.php,v 1.7 2008/05/14 17:08:36 johnalbin Exp $ ?>
<!DOCTYPE html PUBLIC

That appears right under it.
I figure this should be fine since how often is someone going to have that GET
Attached is an image of the code as well. (IGNORE ATTACHED USE CODE ABOVE)

jdelaune’s picture

Status: Active » Postponed (maintainer needs more info)

Have you seen if the issue is present in the dev branch? As I many have changed something that has fixed this already. If you could check that would be great. Cheers.

mathmo’s picture

Status: Postponed (maintainer needs more info) » Active

I get this issue in 6.x-1.0-rc1. I haven't checked the dev branch as I presume this to be identical to rc1. Every upload, I get redirected to the Drupal front page as reported in the original post. I can provide more details if wanted.

jdelaune’s picture

What other modules do you have enabled? What server type are you running on (Unix/Windows)? What version of Drupal Core are you running?

jdelaune’s picture

Version: 6.x-1.0-beta1 » 6.x-1.0-rc1
Status: Active » Postponed (maintainer needs more info)