We are building a MediaWiki to deliver content for a conference. There are only a few committee editors so we set $wgRawHtml=true. This enabled us to put iframe tags between html /html tags to properly display googlemaps so they work as expected there. However, we would like to include something like:
<html>
<iframe width="100%" height="600" scrolling="auto" frameborder="1" src="http://oursite.com/index.php?option=com_content&view=article&id=92&Itemid=84">
</iframe>
</html>
to display any of several hundred pages (by changing Itemid value) which contain the formatted text Php output already residing in our Joomla-based site. When I try this (or any other src) I see the frame in MediaWiki, but no content. Is there a way to make this work?
I suspect that there's a permissions or extension problem somewhere. I have access control groups, but they all function as expected (readonly folks, writers, users). My localsettings.php only has
$wgDBname = blah;
$wgSitename = blah;
$wgLocalInterwiki - $wgSitename;
# Skin/logo settings
#$wgDefaultSkin = 'blah';
#$wgLogo = "$wgStylePath/common/images/wiki.png";
# Authentication configuration
#$wgLDAPUseLocal = true;
#$wgLDAPDisableAutoCreate = array( "cauth" => true );
$wgEnableUploads = true;
$wgGalleryOptions = array (
'imagesPerRow' => 4, // Default number of images per-row in the gallery
'imageWidth' => 120, // Width of the cells containing images in galleries (in "px")
'imageHeight' => 120, // Height of the cells containing images in galleries (in "px")
'captionLength' => 20, // Length of caption to truncate (in characters)
'showBytes' => true, // Show the filesize in bytes in categories
'mode' => 'traditional', // One of "traditional", "nolines", "packed", "packed-hover", "packed-overlay"
);
###########
# and because I only have a few editors I have included html
###########
$wgRawHtml = true;
$configdate = gmdate( 'YmdHis', @filemtime( __FILE__ ) );
$wgCacheEpoch = max( $wgCacheEpoch, $configdate );
# Whitelisted pages
#$wgWhitelistRead = array( "Main Page", "Special:Userlogin" );