View Full Version : Is ARTeam up?
tHE mUTABLE
December 7th, 2007, 17:37
Hello Everyone,
Is ARTeam website is up or something else wrong?
TIA
naides
December 7th, 2007, 18:56
AS late as 3-4 hours ago it was up and running. Now I get busy signal. . .
tHE mUTABLE
December 7th, 2007, 19:07
Thanks. But I've been trying since yesterday but to no avail...
JMI
December 7th, 2007, 19:39
It appears that their server is temporarily down.
Regards,
potassium
December 8th, 2007, 00:55
Indeed, so it seems. Very annoying. I'll try to get hold of Shub.
Nacho_dj
December 8th, 2007, 02:37
It seems the server has got unstable in the last days.

SSlEvIN
December 8th, 2007, 03:54
Hi,
This is what I ve got an hour ago:
Quote:
smarty; $smarty->params = $params; $page = ''; if (isset($params['mact'])) { $ary = explode(',', $params['mact'], 4); $smarty->id = (isset($ary[1])?$ary[1]:''); } else { $smarty->id = (isset($params['id'])?$params['id']:''); } if (isset($smarty->id) && isset($params[$smarty->id . 'returnid'])) { $page = $params[$smarty->id . 'returnid']; } else if (isset($config["query_var"]) && $config["query_var"] != '' && isset($_GET[$config["query_var"]])) { $page = $_GET[$config["query_var"]]; //trim off the extension, if there is one set if ($config['page_extension'] != '' && endswith($page, $config['page_extension'])) { $page = substr($page, 0, strlen($page) - strlen($config['page_extension'])); } } else { $calced = cms_calculate_url(); if ($calced != '') $page = $calced; } //See if our page matches any predefined routes $page = rtrim($page, '/'); if (strpos($page, '/') !== FALSE) { $routes =& $gCms->variables['routes']; $matched = false; foreach ($routes as $route) { $matches = array(); if (preg_match($route->regex, $page, $matches)) { //Now setup some assumptions if (!isset($matches['id'])) $matches['id'] = 'cntnt01'; if (!isset($matches['action'])) $matches['action'] = 'defaulturl'; if (!isset($matches['inline'])) $matches['inline'] = 0; if (!isset($matches['returnid'])) $matches['returnid'] = ''; #Look for default page if (!isset($matches['module'])) $matches['module'] = $route->module; //Get rid of numeric matches foreach ($matches as $key=>$val) { if (is_int($key)) { unset($matches[$key]); } else { if ($key != 'id') $_REQUEST[$matches['id'] . $key] = $val; } } //Now set any defaults that might not have been in the url if (isset($route->defaults) && count($route->defaults) > 0) { foreach ($route->defaults as $key=>$val) { $_REQUEST[$matches['id'] . $key] = $val; } } //Get a decent returnid if ($matches['returnid'] == '') { $matches['returnid'] = ContentManager::GetDefaultPageID(); } $_REQUEST['mact'] = $matches['module'] . ',' . $matches['id'] . ',' . $matches['action'] . ',' . $matches['inline']; $page = $matches['returnid']; $smarty->id = $matches['id']; $matched = true; } } if (!$matched) { $page = substr($page, strrpos($page, '/') + 1); } } if ($page == '') { $page =& ContentManager::GetDefaultContent(); } else { $page = preg_replace('/\variables['pageinfo'] =& $pageinfo; $gCms->variables['content_id'] = $pageinfo->content_id; $gCms->variables['page'] = $page; $gCms->variables['page_id'] = $page; $gCms->variables['page_name'] = $pageinfo->content_alias; $gCms->variables['position'] = $pageinfo->content_hierarchy; $gCms->variables['friendly_position'] = ContentManager::CreateFriendlyHierarchyPosition($pageinfo->content_hierarchy); $smarty->assign('content_id', $pageinfo->content_id); $smarty->assign('page', $page); $smarty->assign('page_id', $page); $smarty->assign('page_name', $pageinfo->content_alias); $smarty->assign('position', $pageinfo->content_hierarchy); $smarty->assign('friendly_position', $gCms->variables['friendly_position']); } else if (get_site_preference('enablecustom404') == '' || get_site_preference('enablecustom404') == "0" { ErrorHandler404(); exit; } $html = ''; $cached = ''; if (isset($_GET["print"])) { ($smarty->is_cached('print:'.$page, '', $pageinfo->template_id)?$cached="":$cached="not " ; $html = $smarty->fetch('print:'.$page, '', $pageinfo->template_id) . "\n"; } else { #If this is a case where a module doesn't want a template to be shown, just disable caching if (isset($smarty->id) && $smarty->id != '' && isset($_REQUEST[$smarty->id.'showtemplate']) && $_REQUEST[$smarty->id.'showtemplate'] == 'false') { $html = $smarty->fetch('template:notemplate') . "\n"; } else { $smarty->caching = false; $smarty->compile_check = true; ($smarty->is_cached('template:'.$pageinfo->template_id)?$cached="":$cached="not " ; $html = $smarty->fetch('template:'.$pageinfo->template_id) . "\n"; } } #if ((get_site_preference('enablecustom404') == '' || get_site_preference('enablecustom404') == "0" && (!$config['debug'])) #{ # set_error_handler($old_error_handler); #} if (!$cached) { #Perform the content postrendernoncached callback reset($gCms->modules); while (list($key) = each($gCms->modules)) { $value =& $gCms->modules[$key]; if ($gCms->modules[$key]['installed'] == true && $gCms->modules[$key]['active'] == true) { $gCms->modules[$key]['object']->ContentPostRenderNonCached($html); } } } #Perform the content postrender callback reset($gCms->modules); while (list($key) = each($gCms->modules)) { $value =& $gCms->modules[$key]; if ($gCms->modules[$key]['installed'] == true && $gCms->modules[$key]['active'] == true) { $gCms->modules[$key]['object']->ContentPostRender($html); } } header("Content-Type: " . $gCms->variables['content-type'] . "; charset=" . (isset($pageinfo->template_encoding) && $pageinfo->template_encoding != ''?$pageinfo->template_encoding:get_encoding())); echo $html; @ob_flush(); $endtime = microtime(); if ($config["debug"] == true) { echo "
Generated in ".microtime_diff($starttime,$endtime)." seconds by CMS Made Simple using ".(isset($db->query_count)?$db->query_count:'')." SQL queries and ".(function_exists('memory_get_usage')?memory_get_usage():'n/a')." bytes of memory
"; } #echo "
Generated in ".microtime_diff($starttime,$endtime)." seconds by CMS Made Simple (".$cached."cached) using ".(isset($db->query_count)?$db->query_count:'')." SQL queries and ".(function_exists('memory_get_usage')?memory_get_usage():'n/a')." bytes of memory
"; if (get_site_preference('enablesitedownmessage') == "1" || $config['debug'] == true) { $smarty->clear_compiled_tpl(); $smarty->clear_all_cache(); } if ($config["debug"] == true) { #$db->LogSQL(false); // turn off logging # output summary of SQL logging results #$perf = NewPerfMonitor($db); #echo $perf->SuspiciousSQL(); #echo $perf->ExpensiveSQL(); echo $sql_queries; foreach ($gCms->errors as $error) { echo $error; } } # vim:ts=4 sw=4 noet ?> |
Regards,
Shub-nigurrath
December 8th, 2007, 04:36
Hi mates and fans ^_^
we have now ISP problems, seems like the ISP is renovating their systems. New control panel is already on but there are some issues on the forum (like one sslevin reported). BTW I'm in contact with them, hope to fix all soon.
Luckily I did a whole backup two days ago, phfew.
dELTA
December 8th, 2007, 08:54
I hope everything gets back to working order for you guys soon. Until that (and of course even after that, and always

) you are of course welcome to hang around here as much as you want.

If you would need some more special assistance, contact us privately and I'm sure it can be arranged.

JMI
December 8th, 2007, 09:49
There are many RCE fans waiting for your site to return to "normal" operation.
Regards,
Shub-nigurrath
December 8th, 2007, 12:49
news from the ISP, they had severe disk crash and had to recover all from backups. Now things are returning to normality but do not do important posts before all is fine. I will take chance to upgrade forum and restore form backup so some post might be lost. I will post a news in the main page when all will be absolutely OK.
JMI
December 8th, 2007, 17:52
Thanks for the update Shub. Glad to hear things are almost back to normal.

Shub-nigurrath
December 10th, 2007, 13:03
finally ISP is up again, but have to recover most of the things and upgrade forum..it will take few days ..
tHE mUTABLE
December 10th, 2007, 19:31
?! I'll really miss you guys...
rallesh
December 13th, 2007, 10:16
Hope for the best Looking forward to be in the forum back again.
JMI
December 13th, 2007, 10:52
Just try to remember that with things mechanical, like hard drives, and electrical, that problems always tend to eventually occur. The true saving criteria is a good back-up plan and sending the backups off the server for "safe keeping."
Regards,
Shub-nigurrath
December 13th, 2007, 17:55
10x JMI, of course I did it and would be no problem if only was that. What we are doing now is upgrading the IPB site and this creates some problems with the rest of the site and the tutorials system. That's the only problem left.
Powered by vBulletin® Version 4.2.2 Copyright © 2018 vBulletin Solutions, Inc. All rights reserved.