View Single Post
  #5  
Old 30th January 2018, 15:41
DanuTz241987 DanuTz241987 is offline
Member
 
Join Date: Feb 2016
Posts: 11
Default
php -v
PHP 7.0.27-1+ubuntu14.04.1+deb.sury.org+1 (cli) (built: Jan 11 2018 23:19:41) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies
with Zend OPcache v7.0.27-1+ubuntu14.04.1+deb.sury.org+1, Copyright (c) 1999-2017, by Zend Technologies
root@vmi156767:~# service apache2 restart
* Restarting web server apache2 [ OK ]
this is how I see it after deleting php5 and updating to php 7


index pages

Code:
array(         'gallery'      ),     /** include css **/     'css' => array(         'bbcode',         'index-portals'       ) ); $stdfoot = array(     /** include js **/     'js' => array(          'shout',          'java_klappe',      'jquery.cookie',      'portals',      'jquery-ui-i18n.min',      'jquery.bgiframe-2.1.2',      'jquery-ui.min'     ) ); $lang = array_merge(load_language('global') , load_language('index')); $HTMLOUT = ''; //Start Portals Div $HTMLOUT .=''; //==Global blocks by elephant //==Curuser blocks by pdq     if (curuser::$blocks['index_page'] & block_index::IE_ALERT && $BLOCKS['ie_user_alert']) { $HTMLOUT .="";     require_once (BLOCK_DIR . 'index/ie_user.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::ANNOUNCEMENT && $BLOCKS['announcement_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/announcement.php'); $HTMLOUT .="
";     }      if ($CURUSER['class'] >= UC_STAFF &&  curuser::$blocks['index_page'] & block_index::STAFF_SHOUT &&  $BLOCKS['staff_shoutbox_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/staff_shoutbox.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::SHOUTBOX && $BLOCKS['shoutbox_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/shoutbox.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::NEWS && $BLOCKS['news_on']) { $HTMLOUT .="";      require_once (BLOCK_DIR . 'index/news.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::ADVERTISEMENTS && $BLOCKS['ads_on']) { $HTMLOUT .="";        require_once (BLOCK_DIR . 'index/advertise.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::FORUMPOSTS && $BLOCKS['forum_posts_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/forum_posts.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::MOVIEOFWEEK && $BLOCKS['movie_ofthe_week_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/mow.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::LATEST_TORRENTS && $BLOCKS['latest_torrents_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/latest_torrents.php'); $HTMLOUT .="
";     } /*     if (curuser::$blocks['index_page'] & block_index::LATEST_TORRENTS_SCROLL && $BLOCKS['latest_torrents_scroll_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/latest_torrents_scroll.php'); $HTMLOUT .="
";     } */     if (curuser::$blocks['index_page'] & block_index::STATS && $BLOCKS['stats_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/stats.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::ACTIVE_USERS && $BLOCKS['active_users_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/active_users.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::IRC_ACTIVE_USERS && $BLOCKS['active_irc_users_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/active_irc_users.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::LAST_24_ACTIVE_USERS && $BLOCKS['active_24h_users_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/active_24h_users.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::BIRTHDAY_ACTIVE_USERS && $BLOCKS['active_birthday_users_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/active_birthday_users.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::LATEST_USER && $BLOCKS['latest_user_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/latest_user.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::ACTIVE_POLL && $BLOCKS['active_poll_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/poll.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::XMAS_GIFT && $BLOCKS['xmas_gift_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/gift.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::RADIO && $BLOCKS['radio_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/radio.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::TORRENTFREAK && $BLOCKS['torrentfreak_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/torrentfreak.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::DISCLAIMER && $BLOCKS['disclaimer_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/disclaimer.php'); $HTMLOUT .="
";     }      if (curuser::$blocks['index_page'] & block_index::DONATION_PROGRESS && $BLOCKS['donation_progress_on']) { $HTMLOUT .="";         require_once (BLOCK_DIR . 'index/donations.php'); $HTMLOUT .="
";     } //End Portals Div $HTMLOUT .="
";  echo stdhead('Home', true, $stdhead) . $HTMLOUT . stdfoot($stdfoot); ?>
Click the image to open in full size.Click the image to open in full size.

Last edited by DanuTz241987; 30th January 2018 at 15:58.
Reply With Quote