• Login
    • Search
    • Categories
    • Recent
    • Tags
    • Users
    • Groups
    • Rules
    • Help

    Do more on the web, with a fast and secure browser!

    Download Opera browser with:

    • built-in ad blocker
    • battery saver
    • free VPN
    Download Opera

    Photobucket issue !?

    Opera for Windows
    14
    51
    26629
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • A Former User
      A Former User last edited by

      Thanks joshl, but I don't need to be told that thank you very much!
      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!
      🙂

      Reply Quote 0
        1 Reply Last reply
      • brnrds
        brnrds last edited by

        Hi davehawley

        I added indeed first the asterisks and / at the end, but that caused a problem.
        (I noticed they didn't show up in my posting which I couldn't edit)
        Anyway it's still working.

        The "forum temporarily unavailable error" reappeared.
        Maybe one of the plugins causes that problem?
        Disabling all of them restored at least loading.
        The forums load alright with my other browsers including all plugins.
        Have to figure that out.

        Thanks

        Reply Quote 0
          1 Reply Last reply
        • brnrds
          brnrds last edited by

          Found another problem
          On the youtube channel, the banner won't show up under certain conditions.
          http://i60.tinypic.com/167mo3b.jpg
          This is what it should be.
          http://i62.tinypic.com/2mwxfg5.jpg

          The funny thing is, that it appears correct in the direct bookmark-link,
          but not if I get to "My channel" in the menulist.

          Reply Quote 0
            1 Reply Last reply
          • brnrds
            brnrds last edited by

            Found the latest issue, because "content blocking" was set.

            Reply Quote 0
              1 Reply Last reply
            • A Former User
              A Former User last edited by

              Ah, that would have been it!
              Glad you finally sorted it out.
              🙂

              Reply Quote 0
                1 Reply Last reply
              • brnrds
                brnrds last edited by admin

                Thanks Davehawley for your help.

                Could you perhaps have a look at https://forums.opera.com/topic/9739/opera-12-video-hidden/4

                Reply Quote 0
                  1 Reply Last reply
                • A Former User
                  A Former User last edited by

                  Looks like you've now fixed it!
                  🙂

                  Reply Quote 0
                    1 Reply Last reply
                  • brnrds
                    brnrds last edited by

                    Yes I fixed it Dave :love:

                    Reply Quote 0
                      1 Reply Last reply
                    • desertoutlaw
                      desertoutlaw last edited by

                      Thanks Dave. The string resolved the photobucket image display issue on both the fubar and ultimatetemptation web sites.

                      Reply Quote 0
                        1 Reply Last reply
                      • Deleted User
                        Deleted User last edited by

                        Since that was bothering me as well.. I just quickly drew a Userscript..
                        it basically ajax calls the image (accepting nothing but images)
                        and then adding the images base64 as the source
                        (since it's quick and dirty.. it only accepts jpegs as it is) feel free to modify.

                        // ==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 && 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 < images.length; i++)
                        	{
                        		var url = images[i].src;
                        		if(url.indexOf("photobucket") > -1)
                        			window.fi_aj( url, images[i]);
                        	}
                        }
                        
                        window.addEventListener('load', window.fix_pb);
                        

                        AS you can see, very basic functionality... but it works much better than globally editing the ACCEPT
                        at least for me 😉

                        Reply Quote 0
                          1 Reply Last reply
                        • First post
                          Last post

                        Computer browsers

                        • Opera for Windows
                        • Opera for Mac
                        • Opera for Linux
                        • Opera beta version
                        • Opera USB

                        Mobile browsers

                        • Opera for Android
                        • Opera Mini
                        • Opera Touch
                        • Opera for basic phones

                        • Add-ons
                        • Opera account
                        • Wallpapers
                        • Opera Ads

                        • Help & support
                        • Opera blogs
                        • Opera forums
                        • Dev.Opera

                        • Security
                        • Privacy
                        • Cookies Policy
                        • EULA
                        • Terms of Service

                        • About Opera
                        • Press info
                        • Jobs
                        • Investors
                        • Become a partner
                        • Contact us

                        Follow Opera

                        • Opera - Facebook
                        • Opera - Twitter
                        • Opera - YouTube
                        • Opera - LinkedIn
                        • Opera - Instagram

                        © Opera Software 1995-