YouTube

sign up forgot login?
search for these words:
limit on this user:
    

Welcome to the beta environment of Supverse

Supverse is a media platform run by analysts and journalists.
Supverse, the UniVerse of WasSup, allows members to create ad hoc discussions on any page* across the vast Internet. The discussion can be just a reference for yourself, or a diverse audience debate. Organize all research content and references using personal hashtags on your Supverse profile and even stitch together these thoughts into a dynamic presentation you can publish online and share with others. Mingle your philosophies with others in the Supverse global sensorium to create new meanings.
  • Receive personalized emails with new comments made on pages you subscribed to, without signing up.
  • Sign up for a free account and use the cloud to bookmark pages and to leave notes on websites that interest you.
  • Join the discussions that are ongoing, see what trends and becomes news to you, find associated information.
  • Create an online dynamic stream of thought, in a Prezi like environment, and share it with like-minded people.


* At this point not every site is supported.

Use Supverse for:

Review


Research


Rants & Raves

Three Steps to Supverse:

1

Find a URL


2

Supverse it


3

Add your comments


Supverse
Filtered on: forums.realmacsoftware.com > showing 2 comments covering 100 days
#yawining 1  


Arts
Business
Computers
Games
Health
Home
Recreation
Science
Society
Sports
Certain URL is not loading in iFrame - can't figure out why - RapidWeaver / General - Rapi


The workaround So, I decided to work on a workaround for this, and it turned out to be fairly simple to do. Basically, I'm using the file_get_contents PHP function to get the raw content of the page and print that to the screen. This works well, but we then need to make sure that it's loading the correct assets. If it's trying to load an image from /img/logo.jpp for example this will fail since it will be looking in the wrong location as the root when we print directly to the screen from our preview page. Below is the simply function to grab a pages content, make the required tweaks, and display it to the user. public function backdoor($url) { $parse = parse_url($url); $domain = $parse['scheme'] . '://' . $parse['host'] . '/'; $content = file_get_contents($url); $base_url = ''; $content = str_replace('', $base_url . '', $content); $content = str_replace('src="/', 'src="' . $domain, $content); $content = str_replace('href="/', 'href="' . $domain, $content); return $content; } The guys at #elevio figured it out.
&neo 2018-11-04  
Certain URLs are not loading in an iFrame


The #X-Frame -Options HTTP response header can be used to indicate whether or not a browser should be allowed to render a page in a frame, #iframe or object. Sites can use this to avoid clickjacking attacks.
&Rob 2018-11-04  


screenshots generated by page2images | Site Snapshot by PagePeeker | raw sentiment and classification data by uClassify | copyright 2014-2019 DYNO3 LLC | Terms of Use and Privacy Policy