Useless and great addon, thanks for the author for them.
but here is some mistake appeared while trying to resolve vbSEO broken images and touches users who store content at the different domains. Situation:
images from photopost at:
http://images.forumdomain.com/
[b/]Only on WYSIWYG[/b] we receive error while adding images: broken urls like
http://www.forumdomain.com/lalala/thumbs/i.jpg
(correct url will be:
http://images.forumdomain.com/lalala/thumbs/i.jpg )
because this code at photo_popup.php do that:
Code:
$parsed_orig = parse_url($img['orig']);
$img_wysi['orig'] = str_replace ("http://" . $parsed_orig['host'], "", $img['orig']);
$parsed_med = parse_url($img['med']);
$img_wysi['med'] = str_replace ("http://" . $parsed_med['host'], "", $img['med']);
$parsed_thumb = parse_url($img['thumb']);
$img_wysi['thumb'] = str_replace ("http://" . $parsed_thumb['host'], "", $img['thumb']);
$parsed_gallery = parse_url($img['gallery']);
$img_wysi['gallery'] = str_replace ("http://" . $parsed_gallery['host'], "", $img['gallery']);
sorry for my english
maybe some fix? or setting to OFF this peace of code...