

What do I go to get back the original image brower instead of the file section window?
I have tried it with all three of the settings, should have mentioned that before. After looking at it again, it looks like there must be a config option that changed during the upgrade, because instead of the thumbnail, I am getting the file name again. As you can see in this screen shot (same as above).mark wrote: If you go to the tiny interface you will see a "Filepicker style:" drop down with the show both option...
Again it must be a configuration problem somewhere. Because it is inserting an incomplete url into the html, thus causing the broken image. I don't want to have to manually correct the url every time so I will just have to look into some possible configuration corrections.mark wrote: Mine shows correct link info in tiny, but when you choose it it has a longer url, /new/uploads/images/backw.png, but I looked at the html and it was
tiny 2.4.1 is possible and in svn to, look ours projects in forgemorloi wrote: excuse me... but with 1.3 tinymce insert/edit image is not possible to upload an image, like in 1.2.x ?
Now I have to load all article images then edit / insert article/page... this is not good...
No, just image manage generate!morloi wrote: mmm it works, but does not generate thumbnails...
Works fine while using the unsecured connection, as I can see the thumbnails and images are inserted correctly with correct URLs.Silmarillion wrote: I know it does not generate thumbnails, which is intentionally (don't ask), but I'll reconsider it!
Code: Select all
$rooturl=substr($rooturl,7); //remove http:/
$rooturl=substr($rooturl,strpos($rooturl,"/")); //Remove domain
Code: Select all
if(substr($rooturl,0,5)=="https"){
$rooturl=substr($rooturl,8); //remove https:/
} elseif(substr($rooturl,0,4)=="http") {
$rooturl=substr($rooturl,7); //remove http:/
}
$rooturl=substr($rooturl,strpos($rooturl,"/")); //Remove domain