An error has occurred:
2 - fopen() [function.fopen]: php_network_getaddresses: getaddrinfo failed: 名前またはサービスが不明です @ /home/softo5/public_html/aottawa/geeklog/plugins/staticpages/functions.inc(843) : eval()'d code line 17
array(11) {
  ["sp_content"]=>
  string(19667) "/////////////////////////////////////START: OSHIETECANADA.COM
$filename_newsfeed = "./backend/center_feed_oshietecanada.txt";
$status = @stat($filename_newsfeed);
//if (1) {
if (!$status || ($status["mtime"] <= (time()-360*60))) {
//もし6時間(360分)以内にアップデートされてなければ、ニュースフィードをアップデートする

$news_feed = "";

//読み込ませたいRSSファイルを指定してください。
//$urlrss="http://feeds.feedburner.com/oshietecanada";
$urlrss="http://www.oshietecanada.com/blog/wp-rss2.php";
//各項目の説明文の最大表示文字数(先頭から○○文字)
$limits=30;

$buff="";
$fp=fopen($urlrss,"r");
while(!feof($fp)){
  $buff.=fgets($fp,4096);
}
fclose($fp);
//var_dump($buff);
$parser=xml_parser_create("UTF-8");
xml_parser_set_option($parser,XML_OPTION_SKIP_WHITE,1);
xml_parse_into_struct($parser,$buff,$values,$idx);
xml_parser_free($parser);

$news_feed .= "<ul>";
$flag_item=0;
$is_first_item = 1;
foreach($values as $value){
  $tag=$value["tag"];
  $type=$value["type"];
  $value=$value["value"];
  $tag=strtolower($tag);
  if($tag=="item" && $type=="open"){
    $flag_item=1;
  }elseif($tag=="item" && $type=="close"){
  	if ($is_first_item) {
	    $news_feed .= "<li><font style='font-size:0.7em;'>$pubDate_formatted</font> <a href='".$link."' target=_blank><font style='font-size:0.8em;'>$title</font></a><br /><font style='font-size:0.7em;'>$description</font></li>";
  	} else {
    	$news_feed .= "<li><font style='font-size:0.7em;'>$pubDate_formatted</font> <a href='".$link."' target=_blank><font style='font-size:0.8em;'>$title</font></a></li>";
  	}
  	$is_first_item = 0;
    $flag_item=0;
  }
  if($flag_item){
    switch($tag){
      case "title":
        $title=$value;
        break;
      case "link":
        //preg_match('/&url=(.*)&cid/i', $value, $value_matched);
        //$link=urldecode($value_matched[1]);
        $link=$value;
        break;
      case "pubdate":
        // only lowercase characters work
        $pubDate_timestamp = strtotime($value);
        $pubDate_formatted = date('M j (D)', $pubDate_timestamp);
        //echo $value. "->" .$pubDate_timestamp ."->". $pubDate_formatted ."<br />";
        break;
      case "description":
        $value=strip_tags($value);
        $description=$value;
        /*if(mb_strlen($value)>$limits){
          $description=mb_substr($value,0,$limits)."...";
        }else{
          $description=$value;
        }*/
        break;
    }
  }
}
$news_feed .= "</ul>";
$news_feed .= "<div align='right'><font style='font-size:0.6em;'>Courtesy of 教えてカナダ! by Osamu Wakabayashi  </font></div>";
//$news_feed = '<iframe frameborder="0" width="300" height="250" marginwidth="0" marginheight="0"
//        src="http://www.google.com/uds/modules/elements/newsshow/iframe.html?topic=w,b,n,t,e,s,m&ned=jp&//rsz=large&hl=ja&format=300x250">
//</iframe>';

$photo_feed = "";

//読み込ませたいRSSファイルを指定してください。
$urlrss="http://api.flickr.com/services/feeds/photos_public.gne?tags=canada&format=rss2&lang=ja-JP";
//各項目の説明文の最大表示文字数(先頭から○○文字)
$limits=30;

$buff="";
$fp=fopen($urlrss,"r");
while(!feof($fp)){
  $buff.=fgets($fp,4096);
}
fclose($fp);
$parser=xml_parser_create();
xml_parser_set_option($parser,XML_OPTION_SKIP_WHITE,1);
xml_parse_into_struct($parser,$buff,$values,$idx);
xml_parser_free($parser);

//$photo_feed .= "<ul>";
$flag_item=0;
foreach($values as $value){
  $tag=$value["tag"];
  $type=$value["type"];
  $value_f=$value["value"];
  $tag=strtolower($tag);
  if($tag=="item" && $type=="open"){
    $flag_item=1;
  }elseif($tag=="item" && $type=="close"){
    //$photo_feed .= "<li><a href='".$link."' target=_blank>$title</a><br>$imagetag2<br />posted by <a href='$author_link' target=_blank>$author</a><br /></li>";
    $photo_feed .= "<a href='".$link."' target=_blank>$title</a><br />$imagetag2<br /><a href='$author_link' target=_blank>$author</a>撮影<br />";
    $flag_item=0;
    break;
  }
  if($flag_item){
    switch($tag){
      case "title":
        $title=$value_f;
        break;
      case "link":
        $link=$value_f;
        break;
      case "description":
        /*$value_f=strip_tags($value_f);
        if(mb_strlen($value_f)>$limits){
          $content=mb_substr($value_f,0,$limits)."...";
        }else{
          $content=$value_f;
        }*/
        $value_f = urldecode($value_f);
        //preg_match('/(<a.*<\/a>)/i', $value_f, $value_matched);
        unset($value_matched);
        unset($value_matched2);
        preg_match('/<a href="(http\:\/\/www\.flickr\.com\/photos.*)"\ title/i', $value_f, $value_matched);
        preg_match('/(<img.*" \/>)</i', $value_f, $value_matched2);
        $imagetag2 = "<a href=\"". $value_matched[1] ."\" target=_blank>". $value_matched2[1] ."</a>";

        break;
      case "pubdate":
        $pubdate=$value_f;
        break;
      case "media:content":
        $imagetag = "<img src=\"". $value["attributes"]["URL"] ."\" height=". $value["attributes"]["HEIGHT"] ." width=". $value["attributes"]["WIDTH"] .">";
        break;
      case "media:credit":
        $author=$value_f;
        break;
      case "author":
        $author_link = $value["attributes"]["FLICKR:PROFILE"];
        break;
    }
  }
}
//$photo_feed .= "</ul>";

$pubdate = date("F j, Y, g:i a");
/*print "<table>
<tr>
<td width='250'>
$photo_feed
</td>
<td>
$news_feed
</td>
</tr>
</table>";*/

$strResult = '<table width="100%" border="0" cellspacing="0" cellpadding="0">
				<tr>
					<td width="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-tl.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="10" width="10"></td>
					<td height="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-t.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="10"></td>
					<td width="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-tr.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="10" width="10"></td>
				</tr>
				<tr>
					<td width="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-l.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="5" width="10"></td>
					<td bgcolor="#ffffff" width="100%">
					<table width="100%" border="0" cellspacing="0" cellpadding="3">
					<tr>
						<td align="left" bgcolor="#9C0000"><span class="articleTitle"><font color="#FFFFFF">【連載・コラム】カナダの事情が1分でわかる - 教えてカナダ!</font></span></td>
						<td align="right" bgcolor="#9C0000"><font color="#FFFFFF"><a href="mailto:?subject=アーオタワっていうオタワ総合情報サイトについて&body=【】さん、%0D%0A%0D%0Aこのサイト面白いですよ、ぜひ見てみてください~!%0D%0Ahttp://www.aottawa.com/"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/images/mail.png" alt="記事を友人にメールする" title="友達に記事をメールする" border="0"></a>&nbsp;<a href="#" onClick="print(); return false;"><img border="0" src="http://www.aottawa.com/layout/Ivy_League_SOGC/images/print.png" alt="印刷用画面" title="印刷フォームページ"></a>&nbsp;</font></td>
					</tr>
					<tr>
						<td colspan="2" bgcolor="#ffffff" align="right"><font color="#909090">'. $pubdate .' 更新</font>
							<table width="100%" border="0" cellspacing="0" cellpadding="3" bgcolor="#ffffff">
							<tr>
								<td><table>
									<tr>
									<td width="250">
										'. $photo_feed .'
									</td>
									<td>
										'. $news_feed .'
									</td>
									</tr>
								</table></td>
							</tr>
							</table>
						</td>
					</tr>
					<tr>
						<td colspan=2><div align="right">
<script type="text/javascript"><!--
google_ad_client = "pub-3148902109066365";
/* 468x15 unit ads, created 2/9/08 */
google_ad_slot = "3151761815";
//4577513326
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
           				</div></td>
					</tr>
					<tr>
						<td align="left" valigh="bottom" bgcolor="#CCCC99" style="font-size:0.8em;"><a href="http://www.aottawa.com/profiles.php?uid=2">コメント投稿</a></td>

						<td bgcolor="#CCCC99" align="right" style="font-size:0.8em;">&nbsp;</td>
					</tr>
					</table></td>
					<td width="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-r.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="5" width="10"></td>
				</tr>
				<tr>
					<td width="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-bl.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="10" width="10"></td>
					<td height="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-b.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="10"></td>
					<td width="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-br.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="10" width="10"></td>
				</tr>
				</table>';
// temporarily shutdown by May 8, 2011
//echo $strResult;
@file_put_contents($filename_newsfeed, $strResult);

} else {
  $strResult = @file_get_contents($filename_newsfeed);
  // temporarily shutdown by May 8, 2011
  //echo $strResult;
}
/////////////////////////////////////END: OSHIETECANADA.COM


$filename_newsfeed = "./backend/center_feed.txt";
$status = @stat($filename_newsfeed);
//if (1) {
if (!$status || ($status["mtime"] <= (time()-15*60))) {
//もし15分以内にアップデートされてなければ、ニュースフィードをアップデートする

$news_feed = "";

//読み込ませたいRSSファイルを指定してください。
$urlrss="http://news.yahooapis.jp/NewsWebService/V1/Topics?appid=wwBHmtyxg66PbhnbeWUeTsEvxyxIc9CWW40.UfBtfuyw77fGGhZb9memRueTa6mW&topicname=canada&num=7"; //ヤフージャパンのAPIへ切り替える(2009/7/2)
$urlrss="http://news.google.com/news?ned=jp&ie=UTF-8&oe=UTF-8&q=カナダ&output=rss&num=7&hl=ja";
$urlrss="http://news.google.com/news?q=%E3%82%AB%E3%83%8A%E3%83%80&ned=ja&num=7&output=rss";
//各項目の説明文の最大表示文字数(先頭から○○文字)
$limits=30;

$buff="";
$fp=fopen($urlrss,"r");
while(!feof($fp)){
  $buff.=fgets($fp,4096);
}
fclose($fp);
//var_dump($buff);
$parser=xml_parser_create("UTF-8");
xml_parser_set_option($parser,XML_OPTION_SKIP_WHITE,1);
xml_parse_into_struct($parser,$buff,$values,$idx);
xml_parser_free($parser);

$news_feed .= "<ul>";
$flag_item=0;
foreach($values as $value){
  $tag=$value["tag"];
  $type=$value["type"];
  $value=$value["value"];
  $tag=strtolower($tag);
  if($tag=="item" && $type=="open"){
    $flag_item=1;
  }elseif($tag=="item" && $type=="close"){
    $news_feed .= "<li><a href='".$link."' target=_blank><font style='font-size:0.8em;'>$title</font></a></li>";
    $flag_item=0;
  }
  if($flag_item){
    switch($tag){
      case "title":
        $title=$value;
        break;
      case "link":
        //preg_match('/&url=(.*)&cid/i', $value, $value_matched);
        //$link=urldecode($value_matched[1]);
        $link=$value;
        break;
      case "description":
        $value=strip_tags($value);
        if(mb_strlen($value)>$limits){
          $content=mb_substr($value,0,$limits)."...";
        }else{
          $content=$value;
        }
        break;
    }
  }
}
$news_feed .= "</ul>";
//$news_feed = '<iframe frameborder="0" width="300" height="250" marginwidth="0" marginheight="0"
//        src="http://www.google.com/uds/modules/elements/newsshow/iframe.html?topic=w,b,n,t,e,s,m&ned=jp&//rsz=large&hl=ja&format=300x250">
//</iframe>';

$photo_feed = "";

//読み込ませたいRSSファイルを指定してください。
$urlrss="http://api.flickr.com/services/feeds/photos_public.gne?tags=ottawa&format=rss2&lang=ja-JP";
//各項目の説明文の最大表示文字数(先頭から○○文字)
$limits=30;

$buff="";
$fp=fopen($urlrss,"r");
while(!feof($fp)){
  $buff.=fgets($fp,4096);
}
fclose($fp);
$parser=xml_parser_create();
xml_parser_set_option($parser,XML_OPTION_SKIP_WHITE,1);
xml_parse_into_struct($parser,$buff,$values,$idx);
xml_parser_free($parser);

//$photo_feed .= "<ul>";
$flag_item=0;
foreach($values as $value){
  $tag=$value["tag"];
  $type=$value["type"];
  $value_f=$value["value"];
  $tag=strtolower($tag);
  if($tag=="item" && $type=="open"){
    $flag_item=1;
    $photo_feed = "";
  }elseif($tag=="item" && $type=="close"){
    //$photo_feed .= "<li><a href='".$link."' target=_blank>$title</a><br>$imagetag2<br />posted by <a href='$author_link' target=_blank>$author</a><br /></li>";
    $photo_feed .= "<a href='".$link."' target=_blank>$title</a><br />$imagetag2<br /><a href='$author_link' target=_blank>$author</a>撮影<br />";
    $flag_item=0;
    if ($author=="Tyson K. Elder" || $author=="Dani_Girl" || $author=="danvilar") {
      // all rights reserved.
    } else {
      break;
    }
  }
  if($flag_item){
    switch($tag){
      case "title":
        $title=$value_f;
        break;
      case "link":
        $link=$value_f;
        break;
      case "description":
        /*$value_f=strip_tags($value_f);
        if(mb_strlen($value_f)>$limits){
          $content=mb_substr($value_f,0,$limits)."...";
        }else{
          $content=$value_f;
        }*/
        $value_f = urldecode($value_f);
        //preg_match('/(<a.*<\/a>)/i', $value_f, $value_matched);
        unset($value_matched);
        unset($value_matched2);
        preg_match('/<a href="(http\:\/\/www\.flickr\.com\/photos.*)"\ title/i', $value_f, $value_matched);
        preg_match('/(<img.*" \/>)</i', $value_f, $value_matched2);
        $imagetag2 = "<a href=\"". $value_matched[1] ."\" target=_blank>". $value_matched2[1] ."</a>";

        break;
      case "pubdate":
        $pubdate=$value_f;
        break;
      case "media:content":
        $imagetag = "<img src=\"". $value["attributes"]["URL"] ."\" height=". $value["attributes"]["HEIGHT"] ." width=". $value["attributes"]["WIDTH"] .">";
        break;
      case "media:credit":
        $author=$value_f;
        break;
      case "author":
        $author_link = $value["attributes"]["FLICKR:PROFILE"];
        break;
    }
  }
}
//$photo_feed .= "</ul>";

$pubdate = date("F j, Y, g:i a");
/*print "<table>
<tr>
<td width='250'>
$photo_feed
</td>
<td>
$news_feed
</td>
</tr>
</table>";*/

$strResult = '<table width="100%" border="0" cellspacing="0" cellpadding="0">
				<tr>
					<td width="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-tl.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="10" width="10"></td>
					<td height="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-t.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="10"></td>
					<td width="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-tr.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="10" width="10"></td>
				</tr>
				<tr>
					<td width="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-l.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="5" width="10"></td>
					<td bgcolor="#ffffff" width="100%">
					<table width="100%" border="0" cellspacing="0" cellpadding="3">
					<tr>
						<td align="left" bgcolor="#9C0000"><span class="articleTitle"><font color="#FFFFFF">カナダ・オタワの新着ニュース</font></span></td>
						<td align="right" bgcolor="#9C0000"><font color="#FFFFFF"><a href="mailto:?subject=アーオタワっていうオタワ総合情報サイトについて&body=【】さん、%0D%0A%0D%0Aこのサイト面白いですよ、ぜひ見てみてください~!%0D%0Ahttp://www.aottawa.com/"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/images/mail.png" alt="記事を友人にメールする" title="友達に記事をメールする" border="0"></a>&nbsp;<a href="#" onClick="print(); return false;"><img border="0" src="http://www.aottawa.com/layout/Ivy_League_SOGC/images/print.png" alt="印刷用画面" title="印刷フォームページ"></a>&nbsp;</font></td>
					</tr>
					<tr>
						<td colspan="2" bgcolor="#ffffff" align="right"><font color="#909090">'. $pubdate .' 更新</font>
							<table width="100%" border="0" cellspacing="0" cellpadding="3" bgcolor="#ffffff">
							<tr>
								<td><table>
									<tr>
									<td width="250">
										'. $photo_feed .'
									</td>
									<td>
										'. $news_feed .'
									</td>
									</tr>
								</table></td>
							</tr>
							</table>
						</td>
					</tr>
					<tr>
						<td colspan=2><div align="right">
<script type="text/javascript"><!--
google_ad_client = "pub-3148902109066365";
/* 468x15 unit ads, created 2/9/08 */
google_ad_slot = "3151761815";
//4577513326
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
           				</div></td>
					</tr>
					<tr>
						<td align="left" valigh="bottom" bgcolor="#CCCC99" style="font-size:0.8em;"><a href="http://www.aottawa.com/profiles.php?uid=2">コメント投稿</a></td>

						<td bgcolor="#CCCC99" align="right" style="font-size:0.8em;">&nbsp;</td>
					</tr>
					</table></td>
					<td width="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-r.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="5" width="10"></td>
				</tr>
				<tr>
					<td width="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-bl.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="10" width="10"></td>
					<td height="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-b.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="10"></td>
					<td width="10" background="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/clean-article-br.gif"><img src="http://www.aottawa.com/layout/Ivy_League_SOGC/theme-images/pixel.gif" height="10" width="10"></td>
				</tr>
				</table>';
echo $strResult;
@file_put_contents($filename_newsfeed, $strResult);

} else {
  //15分以内にアップデートされたファイルがあれば、それを出力する
  $strResult = @file_get_contents($filename_newsfeed);
  echo $strResult;
}"
  ["sp_php"]=>
  string(1) "2"
  ["_SP_CONF"]=>
  &array(11) {
    ["version"]=>
    string(5) "1.4.3"
    ["allow_php"]=>
    int(1)
    ["sort_by"]=>
    string(2) "id"
    ["sort_menu_by"]=>
    string(5) "label"
    ["delete_pages"]=>
    int(0)
    ["in_block"]=>
    int(1)
    ["show_hits"]=>
    int(1)
    ["show_date"]=>
    int(1)
    ["filter_html"]=>
    int(0)
    ["censor"]=>
    int(1)
    ["default_permissions"]=>
    array(4) {
      [0]=>
      int(3)
      [1]=>
      int(2)
      [2]=>
      int(2)
      [3]=>
      int(2)
    }
  }
  ["LANG_STATIC"]=>
  &array(75) {
    ["newpage"]=>
    string(8) "New Page"
    ["adminhome"]=>
    string(10) "Admin Home"
    ["staticpages"]=>
    string(12) "Static Pages"
    ["staticpageeditor"]=>
    string(18) "Static Page Editor"
    ["writtenby"]=>
    string(10) "Written By"
    ["date"]=>
    string(12) "Last Updated"
    ["title"]=>
    string(5) "Title"
    ["content"]=>
    string(7) "Content"
    ["hits"]=>
    string(4) "Hits"
    ["staticpagelist"]=>
    string(16) "Static Page List"
    ["url"]=>
    string(3) "URL"
    ["edit"]=>
    string(4) "Edit"
    ["lastupdated"]=>
    string(12) "Last Updated"
    ["pageformat"]=>
    string(11) "Page Format"
    ["leftrightblocks"]=>
    string(19) "Left & Right Blocks"
    ["blankpage"]=>
    string(10) "Blank Page"
    ["noblocks"]=>
    string(9) "No Blocks"
    ["leftblocks"]=>
    string(11) "Left Blocks"
    ["addtomenu"]=>
    string(11) "Add To Menu"
    ["label"]=>
    string(5) "Label"
    ["nopages"]=>
    string(37) "No static pages are in the system yet"
    ["save"]=>
    string(4) "save"
    ["preview"]=>
    string(7) "preview"
    ["delete"]=>
    string(6) "delete"
    ["cancel"]=>
    string(6) "cancel"
    ["access_denied"]=>
    string(13) "Access Denied"
    ["access_denied_msg"]=>
    string(149) "You are illegally trying access one of the Static Pages administration pages.  Please note that all attempts to illegally access this page are logged"
    ["all_html_allowed"]=>
    string(19) "All HTML is allowed"
    ["results"]=>
    string(20) "Static Pages Results"
    ["author"]=>
    string(6) "Author"
    ["no_title_or_content"]=>
    string(69) "You must at least fill in the <b>Title</b> and <b>Content</b> fields."
    ["no_such_page_anon"]=>
    string(15) "Please log in.."
    ["no_page_access_msg"]=>
    string(200) "This could be because you're not logged in, or not a member of à Ottawa. Please <a href="http://www.aottawa.com/users.php?mode=new"> become a member</a> of à Ottawa to receive full membership access"
    ["php_msg"]=>
    string(5) "PHP: "
    ["php_warn"]=>
    string(95) "Warning: PHP code in your page will be evaluated if you enable this option. Use with caution !!"
    ["exit_msg"]=>
    string(11) "Exit Type: "
    ["exit_info"]=>
    string(90) "Enable for Login Required Message.  Leave unchecked for normal security check and message."
    ["deny_msg"]=>
    string(113) "Access to this page is denied.  Either the page has been moved/removed or you do not have sufficient permissions."
    ["stats_headline"]=>
    string(20) "Top Ten Static Pages"
    ["stats_page_title"]=>
    string(10) "Page Title"
    ["stats_hits"]=>
    string(4) "Hits"
    ["stats_no_hits"]=>
    string(86) "It appears that there are no static pages on this site or no one has ever viewed them."
    ["id"]=>
    string(2) "ID"
    ["duplicate_id"]=>
    string(82) "The ID you chose for this static page is already in use. Please select another ID."
    ["instructions"]=>
    string(266) "To modify or delete a static page, click on that page's edit icon below. To view a static page, click on the title of the page you wish to view. To create a new static page, click on "Create New" above. Click on on the copy icon to create a copy of an existing page."
    ["centerblock"]=>
    string(13) "Centerblock: "
    ["centerblock_msg"]=>
    string(85) "When checked, this Static Page will be displayed as a center block on the index page."
    ["topic"]=>
    string(7) "Topic: "
    ["position"]=>
    string(10) "Position: "
    ["all_topics"]=>
    string(3) "All"
    ["no_topic"]=>
    string(13) "Homepage Only"
    ["position_top"]=>
    string(11) "Top Of Page"
    ["position_feat"]=>
    string(20) "After Featured Story"
    ["position_bottom"]=>
    string(14) "Bottom Of Page"
    ["position_entire"]=>
    string(11) "Entire Page"
    ["head_centerblock"]=>
    string(11) "Centerblock"
    ["centerblock_no"]=>
    string(2) "No"
    ["centerblock_top"]=>
    string(3) "Top"
    ["centerblock_feat"]=>
    string(11) "Feat. Story"
    ["centerblock_bottom"]=>
    string(6) "Bottom"
    ["centerblock_entire"]=>
    string(11) "Entire Page"
    ["inblock_msg"]=>
    string(12) "In a block: "
    ["inblock_info"]=>
    string(28) "Wrap Static Page in a block."
    ["title_edit"]=>
    string(9) "Edit page"
    ["title_copy"]=>
    string(24) "Make a copy of this page"
    ["title_display"]=>
    string(12) "Display page"
    ["select_php_none"]=>
    string(18) "do not execute PHP"
    ["select_php_return"]=>
    string(20) "execute PHP (return)"
    ["select_php_free"]=>
    string(11) "execute PHP"
    ["php_not_activated"]=>
    string(153) "The use of PHP in static pages is not activated. Please see the <a href="http://www.aottawa.com/docs/staticpages.html#php">documentation</a> for details."
    ["printable_format"]=>
    string(16) "Printable Format"
    ["copy"]=>
    string(4) "Copy"
    ["limit_results"]=>
    string(13) "Limit Results"
    ["search"]=>
    string(6) "Search"
    ["submit"]=>
    string(6) "Submit"
  }
  ["retval"]=>
  string(0) ""
  ["filename_newsfeed"]=>
  string(39) "./backend/center_feed_oshietecanada.txt"
  ["status"]=>
  array(26) {
    [0]=>
    int(2056)
    [1]=>
    int(71747340)
    [2]=>
    int(33188)
    [3]=>
    int(1)
    [4]=>
    int(32387)
    [5]=>
    int(32388)
    [6]=>
    int(0)
    [7]=>
    int(8812)
    [8]=>
    int(1327735285)
    [9]=>
    int(1326981064)
    [10]=>
    int(1326981064)
    [11]=>
    int(4096)
    [12]=>
    int(24)
    ["dev"]=>
    int(2056)
    ["ino"]=>
    int(71747340)
    ["mode"]=>
    int(33188)
    ["nlink"]=>
    int(1)
    ["uid"]=>
    int(32387)
    ["gid"]=>
    int(32388)
    ["rdev"]=>
    int(0)
    ["size"]=>
    int(8812)
    ["atime"]=>
    int(1327735285)
    ["mtime"]=>
    int(1326981064)
    ["ctime"]=>
    int(1326981064)
    ["blksize"]=>
    int(4096)
    ["blocks"]=>
    int(24)
  }
  ["news_feed"]=>
  string(0) ""
  ["urlrss"]=>
  string(45) "http://www.oshietecanada.com/blog/wp-rss2.php"
  ["limits"]=>
  int(30)
  ["buff"]=>
  string(0) ""
}
(This text is only displayed to users in the group 'Root')