<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Photobucket issue !?]]></title><description><![CDATA[<p dir="auto">What's wrong between Opera and Photobucket .. why do I experience problems .. browsing Photbucket everything is wrong , the site looks crappy and always got the message "Hm something didn't click .. bla bla bla"?! Please help!</p>
]]></description><link>https://forums.opera.com/topic/6228/photobucket-issue</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Apr 2026 23:55:36 GMT</lastBuildDate><atom:link href="https://forums.opera.com/topic/6228.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 02 Nov 2014 18:20:30 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Photobucket issue !? on Sun, 02 Aug 2015 18:07:10 GMT]]></title><description><![CDATA[<p dir="auto">Since that was bothering me as well.. I just quickly drew a Userscript..<br />
it basically ajax calls the image (accepting nothing but images)<br />
and then adding the images base64 as the source<br />
(since it's quick and dirty.. it only accepts jpegs as it is) feel free to modify.</p>
<pre><code>// ==UserScript==
// @include http://*
// ==/UserScript==
window.fi_aj =function( url, elem )
{
	var xmlhttp;
	elem.src = "images/misc/progress.gif";
	if (window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	}
	else
	{// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange=function()
	{
		if (xmlhttp.readyState==4 &amp;&amp; xmlhttp.status==200)
		{
			var buffer =  xmlhttp.response;
			if(buffer)
				elem.src = "data:image/jpeg;base64," +  btoa(buffer);
		}
	}
	xmlhttp.open("GET", url ,true);
	xmlhttp.setRequestHeader("Accept","image/*");
	xmlhttp.overrideMimeType('text\/plain; charset=x-user-defined');
	xmlhttp.send();
}

window.fix_pb = function()
{
	var images = document.getElementsByTagName("img");
	for (var i = 0; i &lt; images.length; i++)
	{
		var url = images[i].src;
		if(url.indexOf("photobucket") &gt; -1)
			window.fi_aj( url, images[i]);
	}
}

window.addEventListener('load', window.fix_pb);
</code></pre>
<p dir="auto">AS you can see, very basic functionality... but it works much better than globally editing the ACCEPT<br />
at least for me <img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=f58hvca1lju" class="not-responsive emoji emoji-emoji-one emoji--winking_face" title=";)" alt="😉" /></p>
]]></description><link>https://forums.opera.com/post/80962</link><guid isPermaLink="true">https://forums.opera.com/post/80962</guid><dc:creator><![CDATA[Deleted User]]></dc:creator><pubDate>Sun, 02 Aug 2015 18:07:10 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Mon, 25 May 2015 18:31:26 GMT]]></title><description><![CDATA[<p dir="auto">Thanks Dave. The string resolved the photobucket image display issue on both the fubar and ultimatetemptation web sites.</p>
]]></description><link>https://forums.opera.com/post/75907</link><guid isPermaLink="true">https://forums.opera.com/post/75907</guid><dc:creator><![CDATA[desertoutlaw]]></dc:creator><pubDate>Mon, 25 May 2015 18:31:26 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Mon, 11 May 2015 19:26:05 GMT]]></title><description><![CDATA[<p dir="auto">Yes I fixed it Dave  :love:</p>
]]></description><link>https://forums.opera.com/post/74739</link><guid isPermaLink="true">https://forums.opera.com/post/74739</guid><dc:creator><![CDATA[brnrds]]></dc:creator><pubDate>Mon, 11 May 2015 19:26:05 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Mon, 11 May 2015 15:24:48 GMT]]></title><description><![CDATA[<p dir="auto">Looks like you've now fixed it!<br />
<img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=f58hvca1lju" class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
]]></description><link>https://forums.opera.com/post/74715</link><guid isPermaLink="true">https://forums.opera.com/post/74715</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Mon, 11 May 2015 15:24:48 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Tue, 24 Oct 2017 09:30:48 GMT]]></title><description><![CDATA[<p dir="auto">Thanks Davehawley for your help.</p>
<p dir="auto">Could you perhaps have a look at <a href="https://forums.opera.com/topic/9739/opera-12-video-hidden/4">https://forums.opera.com/topic/9739/opera-12-video-hidden/4</a></p>
]]></description><link>https://forums.opera.com/post/74696</link><guid isPermaLink="true">https://forums.opera.com/post/74696</guid><dc:creator><![CDATA[brnrds]]></dc:creator><pubDate>Tue, 24 Oct 2017 09:30:48 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Mon, 11 May 2015 12:10:25 GMT]]></title><description><![CDATA[<p dir="auto">Ah, that would have been it!<br />
Glad you finally sorted it out.<br />
<img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=f58hvca1lju" class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
]]></description><link>https://forums.opera.com/post/74694</link><guid isPermaLink="true">https://forums.opera.com/post/74694</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Mon, 11 May 2015 12:10:25 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Mon, 11 May 2015 07:11:24 GMT]]></title><description><![CDATA[<p dir="auto">Found the latest issue, because "content blocking" was set.</p>
]]></description><link>https://forums.opera.com/post/74683</link><guid isPermaLink="true">https://forums.opera.com/post/74683</guid><dc:creator><![CDATA[brnrds]]></dc:creator><pubDate>Mon, 11 May 2015 07:11:24 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Mon, 11 May 2015 07:04:52 GMT]]></title><description><![CDATA[<p dir="auto">Found another problem<br />
On the youtube channel, the banner won't show up under certain conditions.<br />
<a href="http://i60.tinypic.com/167mo3b.jpg" target="_blank" rel="noopener noreferrer nofollow ugc">http://i60.tinypic.com/167mo3b.jpg</a><br />
This is what it should be.<br />
<a href="http://i62.tinypic.com/2mwxfg5.jpg" target="_blank" rel="noopener noreferrer nofollow ugc">http://i62.tinypic.com/2mwxfg5.jpg</a></p>
<p dir="auto">The funny thing is, that it appears correct in the direct bookmark-link,<br />
but not if I get to "My channel" in the menulist.</p>
]]></description><link>https://forums.opera.com/post/74682</link><guid isPermaLink="true">https://forums.opera.com/post/74682</guid><dc:creator><![CDATA[brnrds]]></dc:creator><pubDate>Mon, 11 May 2015 07:04:52 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Mon, 11 May 2015 06:45:47 GMT]]></title><description><![CDATA[<p dir="auto">Hi davehawley</p>
<p dir="auto">I added indeed first the asterisks and / at the end, but that caused a problem.<br />
(I noticed they didn't show up in my posting which I couldn't edit)<br />
Anyway it's still working.</p>
<p dir="auto">The "forum temporarily unavailable error" reappeared.<br />
Maybe one of the plugins causes that problem?<br />
Disabling all of them restored at least loading.<br />
The forums load alright with my other browsers including all plugins.<br />
Have to figure that out.</p>
<p dir="auto">Thanks</p>
]]></description><link>https://forums.opera.com/post/74681</link><guid isPermaLink="true">https://forums.opera.com/post/74681</guid><dc:creator><![CDATA[brnrds]]></dc:creator><pubDate>Mon, 11 May 2015 06:45:47 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Sun, 10 May 2015 18:21:14 GMT]]></title><description><![CDATA[<p dir="auto">Thanks joshl, but I don't need to be told that thank you very much!<br />
I'm well aware of how to use Markdown, I've just never understood why I should have to when every other forum I use you just get what you type!<br />
<img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=f58hvca1lju" class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
]]></description><link>https://forums.opera.com/post/74651</link><guid isPermaLink="true">https://forums.opera.com/post/74651</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Sun, 10 May 2015 18:21:14 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Sun, 10 May 2015 17:30:38 GMT]]></title><description><![CDATA[<p dir="auto">We have a "Formatting with Markdown" thread in "Forum feedback" - revise it, please.  Anybody can do just fine with backticks <img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61b.png?v=f58hvca1lju" class="not-responsive emoji emoji-emoji-one emoji--face_with_tongue" title=":P" alt="😛" /></p>
]]></description><link>https://forums.opera.com/post/74647</link><guid isPermaLink="true">https://forums.opera.com/post/74647</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Sun, 10 May 2015 17:30:38 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Sun, 10 May 2015 09:31:04 GMT]]></title><description><![CDATA[<p dir="auto">Glad it worked for you!<br />
:cheers:<br />
The */* at the end of the string was added as without it there seemed to be problems with asp pages, although it seemed fine for me without it.<br />
I added it and everything still seemed to be fine.<br />
BTW I assume you did include the asterisks before and after the forward slash?<br />
I only ask because the forum software removes them in posts if you don't put dummy back slashes in front of them! It should be "asterisk-forward slash-asterisk" (without the quotes of course).<br />
<img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=f58hvca1lju" class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
]]></description><link>https://forums.opera.com/post/74631</link><guid isPermaLink="true">https://forums.opera.com/post/74631</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Sun, 10 May 2015 09:31:04 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Sun, 10 May 2015 08:10:36 GMT]]></title><description><![CDATA[<p dir="auto">Wow, thanks for the string drewfx, and davehawley for pointing to this issue.<br />
I added the string with the <em>/</em> at the end, and landed up with my forums temporarily unavailable?<br />
Deleted the <em>/</em> and pasted:</p>
<p dir="auto">image/gif, image/jpeg, image/pjpeg, application/x-ms-application, application/vnd.ms-xpsdocument, application/xaml+xml, application/x-ms-xbap, application/x-shockwave-flash,</p>
<p dir="auto">Finally all images seem to work again, even the banner and avatar on my Youtube channel are now visible.<br />
Have to test it more carefully, but it looks alright.</p>
<p dir="auto">With regards</p>
]]></description><link>https://forums.opera.com/post/74629</link><guid isPermaLink="true">https://forums.opera.com/post/74629</guid><dc:creator><![CDATA[brnrds]]></dc:creator><pubDate>Sun, 10 May 2015 08:10:36 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Tue, 21 Apr 2015 20:06:20 GMT]]></title><description><![CDATA[<p dir="auto">I was able to get things working as they should by restoring a recent back up of my system drive.</p>
]]></description><link>https://forums.opera.com/post/72676</link><guid isPermaLink="true">https://forums.opera.com/post/72676</guid><dc:creator><![CDATA[robertstirrat]]></dc:creator><pubDate>Tue, 21 Apr 2015 20:06:20 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Thu, 16 Apr 2015 22:45:07 GMT]]></title><description><![CDATA[<p dir="auto">Having just solved this problem for myself (by using wireshark to compare the headers sent by Opera with the headers sent by wget, which does successfully retrieve the image) and then found this thread from googling to see if anyone else had been complaining about it, I feel it is worth posting to clarify a couple of points...</p>
<ul>
<li>
<p dir="auto">It is NOT Opera's fault</p>
</li>
<li>
<p dir="auto">It IS Photobucket's fault</p>
</li>
</ul>
<p dir="auto">Photobucket have misconfigured their servers to react weirdly to the Accept: header. Other sites which do not react weirdly are quite happy with Opera's default Accept: header. It's not Opera doing something wrong, it's Photobucket.</p>
<p dir="auto">FWIW I have found that a minimal "Accept: */*" works just fine. Having read this thread I have tested it on twitter (as an example of an HTTPS site) and on Pistonheads, and they both work.</p>
<p dir="auto">(Also, to prevent some bug in this forum converting "star slash star" to "weird character like a slash but at a greater inclination, without the stars" it is necessary to insert a backslash before each star.)</p>
]]></description><link>https://forums.opera.com/post/72254</link><guid isPermaLink="true">https://forums.opera.com/post/72254</guid><dc:creator><![CDATA[Deleted User]]></dc:creator><pubDate>Thu, 16 Apr 2015 22:45:07 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Thu, 16 Apr 2015 15:26:51 GMT]]></title><description><![CDATA[<p dir="auto">I've not noticed any problem here.<br />
This forum is https for me, and works OK, as does my online banking.<br />
Can't comment on Instagram as I don't use it.<br />
<img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=f58hvca1lju" class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
]]></description><link>https://forums.opera.com/post/72222</link><guid isPermaLink="true">https://forums.opera.com/post/72222</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Thu, 16 Apr 2015 15:26:51 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Tue, 24 Oct 2017 09:30:47 GMT]]></title><description><![CDATA[<p dir="auto">These settings appear to prevent HTTPS web pages from loading coreectly.  I'm unable to connect to instagram or my bank when these setting are in place, if I restore the default settings(empty field) and save I can load the aforementioned pages.</p>
<p dir="auto">Please see this thread for some more details:<br />
<a href="https://forums.opera.com/topic/9216/opera-12-17-instagram-issue/1">https://forums.opera.com/topic/9216/opera-12-17-instagram-issue/1</a></p>
<p dir="auto">Could this string be amended to fix this issue please?</p>
<p dir="auto">Thank you.</p>
]]></description><link>https://forums.opera.com/post/72190</link><guid isPermaLink="true">https://forums.opera.com/post/72190</guid><dc:creator><![CDATA[robertstirrat]]></dc:creator><pubDate>Tue, 24 Oct 2017 09:30:47 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Mon, 13 Apr 2015 19:05:00 GMT]]></title><description><![CDATA[<p dir="auto">Thank you very much for taking the time to explain the steps in more detail. Until now, I wasn't aware of this hidden advanced configuration page, so I've learned something new.</p>
<p dir="auto">I followed your steps and all is working as expected which is great.</p>
<p dir="auto">The "HTTP Accept" field was empty despite the OperaDef6.ini file having this entry filled so clicking Default didn't change anything and it remains unchanged after entering and saving these changes.</p>
<p dir="auto">A big thank you to drewfx for posting a working solution to this issue.</p>
<p dir="auto">Thanks guys.:)</p>
]]></description><link>https://forums.opera.com/post/71945</link><guid isPermaLink="true">https://forums.opera.com/post/71945</guid><dc:creator><![CDATA[robertstirrat]]></dc:creator><pubDate>Mon, 13 Apr 2015 19:05:00 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Mon, 13 Apr 2015 17:49:35 GMT]]></title><description><![CDATA[<p dir="auto">You need to use the configuration editor page rather than editing the ini file directly.<br />
Put the original version back (with Opera closed) and then run it again and type "opera:config" (without the quotes) in the address bar and go to it.<br />
This should open the configuration editor page.<br />
Expand the "network" section and then find the "HTTP Accept" entry.<br />
Press the "default" button on the entry, which will probably clear it, and then copy and paste the necessary string into it, and press the save button at the bottom of the section.<br />
That should do it!<br />
If there is anything already in the HTTP Accept section, which your ini file seems to imply that there is, I'm not sure why that would be as I'm pretty sure that by default it's empty.<br />
It is possible that you may lose other functionality if any existing entries are cleared.<br />
<img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=f58hvca1lju" class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face" title=":)" alt="🙂" /></p>
]]></description><link>https://forums.opera.com/post/71937</link><guid isPermaLink="true">https://forums.opera.com/post/71937</guid><dc:creator><![CDATA[[[global:former_user]]]]></dc:creator><pubDate>Mon, 13 Apr 2015 17:49:35 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Mon, 13 Apr 2015 17:06:03 GMT]]></title><description><![CDATA[<p dir="auto">Hi, after searching for a solution I landed here.  Initially I fell at the first hurdle when following drewfx's steps.  Clicking on the Tools menu, then selecting advance I see options for : Cookies, Password Manager, Blocked Content and so on but no Config option.  What am I missing here?</p>
<p dir="auto">Keen to try and resolve this one way or another I opened OperaDef6.ini in MS notepad (having made a backup copy first of course) file which contains the following entry:</p>
<p dir="auto">[Adv User Prefs]<br />
HTTP Accept=application/x-shockwave-flash,text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,video/x-mng,image/png,image/jpeg,image/gif;q=0.2,text/css,<em>/</em>;q=0.1</p>
<p dir="auto">I cut everything after the equals symbol and pasted the suggested replacement string:<br />
image/gif, image/jpeg, image/pjpeg, application/x-ms-application, application/vnd.ms-xpsdocument, application/xaml+xml, application/x-ms-xbap, application/x-shockwave-flash, /</p>
<p dir="auto">I saved the text file as .ini, closed and restarted Opera and opened a web page some embedded Photobucket images but the image still fail to load.  Can anyone give me some further guidance to help me solve this please?</p>
<p dir="auto">Thank you.</p>
]]></description><link>https://forums.opera.com/post/71933</link><guid isPermaLink="true">https://forums.opera.com/post/71933</guid><dc:creator><![CDATA[robertstirrat]]></dc:creator><pubDate>Mon, 13 Apr 2015 17:06:03 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Mon, 13 Apr 2015 14:32:17 GMT]]></title><description><![CDATA[<p dir="auto">Yep, drewfx nailed it. BIG thanks!<br />
In your face Photobucket! In your face Google thieves!<br />
Opera 12.17 proves again it has invaluable, flexible embedded configuration tools to adapt to any situation.</p>
]]></description><link>https://forums.opera.com/post/71926</link><guid isPermaLink="true">https://forums.opera.com/post/71926</guid><dc:creator><![CDATA[masster]]></dc:creator><pubDate>Mon, 13 Apr 2015 14:32:17 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Fri, 03 Apr 2015 16:09:36 GMT]]></title><description><![CDATA[<p dir="auto">Ehm, I wrote a silly thing... asp websites no longer working without the whole drewfx's string.</p>
<p dir="auto">Happy Easter to you all.</p>
]]></description><link>https://forums.opera.com/post/71096</link><guid isPermaLink="true">https://forums.opera.com/post/71096</guid><dc:creator><![CDATA[sparapaunz]]></dc:creator><pubDate>Fri, 03 Apr 2015 16:09:36 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Fri, 03 Apr 2015 15:03:30 GMT]]></title><description><![CDATA[<p dir="auto">Thank you very much drewfx!<br />
I'm very annoyed by those who always answer "move to the new opera". New Opera has actually nothing of that I'm loving in 12.17.<br />
I don't know if in the future the "new opera" will reach the "old opera", and I hope yes, but actually the "new opera" is simply "no longer opera".</p>
<p dir="auto">Back to your solution, it works in the way you posted as it works (at least to solve my problems) by adding only</p>
<p dir="auto">image/gif, image/jpeg</p>
<p dir="auto">Again a big THANK YOU!</p>
]]></description><link>https://forums.opera.com/post/71093</link><guid isPermaLink="true">https://forums.opera.com/post/71093</guid><dc:creator><![CDATA[sparapaunz]]></dc:creator><pubDate>Fri, 03 Apr 2015 15:03:30 GMT</pubDate></item><item><title><![CDATA[Reply to Photobucket issue !? on Tue, 31 Mar 2015 05:02:18 GMT]]></title><description><![CDATA[<p dir="auto">OK, I'm glad it seems to be working for everyone (knock on wood)! Please post if this is still causing problems.</p>
<p dir="auto">I'm going to rewrite the instructions here, with hopefully the correction showing properly by delimiting the asterisks, to make it easier if we want to refer to it in the future.</p>
<p dir="auto">Workaround fix for Photobucket embedded images not displaying in 12.17</p>
<p dir="auto">I'm not sure if this will cause any problems for other sites, but try this in 12.17:</p>
<ul>
<li>
<p dir="auto">Open the opera:config advanced configuration page.</p>
</li>
<li>
<p dir="auto">Go to the "Network" section.</p>
</li>
<li>
<p dir="auto">Under "HTTP Accept" enter the following string:</p>
</li>
</ul>
<p dir="auto">image/gif, image/jpeg, image/pjpeg, application/x-ms-application, application/vnd.ms-xpsdocument, application/xaml+xml, application/x-ms-xbap, application/x-shockwave-flash, */*</p>
<ul>
<li>
<p dir="auto">Hit the save button at the bottom of the Network section.</p>
</li>
<li>
<p dir="auto">See if Photobucket images are working.</p>
</li>
</ul>
]]></description><link>https://forums.opera.com/post/70847</link><guid isPermaLink="true">https://forums.opera.com/post/70847</guid><dc:creator><![CDATA[drewfx]]></dc:creator><pubDate>Tue, 31 Mar 2015 05:02:18 GMT</pubDate></item></channel></rss>