I am using a theme that has custom blocks. Will NukeWrap bring up the page
that is called inside the custom block or will it bring it up in a
standalone page? Also, Im still trying to get it to work. Im still
getting a page cannot be found msg, and... basically, still trying to
figure out NukeWrap. This is what I have so far in the nukewrap.cfg:
<?php
//General Settings
//
$general = array (
'url-security' => false,
'local-pages-only' => false,
'address-bar-entry' => true,
'use-buffering' => true,
'use-compression' => false,
'registered-users-only' => false,
'open-direct-msg' => false,
'use-fixed-title' => false,
'auto-resize' => false,
'height' => "1500",
'width' => "100%"
);
//URL Security Settings
//
//Define URLs that can be diplayed if url-security = true
//These settings override the General settings above for the specific
URL
//
$authorized_url['http://www.radioiv.com/jamroom/rank.php'] = array (
'alias' => "rank",
'registered-users-only' => false,
'open-direct-msg' => false,
'use-fixed-title' => false,
'auto-resize' => false,
'height' => "600",
'width' => "100%"
);
$authorized_url['http://www.radioiv.com/jamroom/rank.php/'] = array (
'alias' => "rank",
'registered-users-only' => false,
'open-direct-msg' => false,
'use-fixed-title' => false,
'auto-resize' => false,
'height' => "1500",
'width' => "100%"
);
?>
|