Перейти к содержимому


Фотография
- - - - -

Не могу войти в биллинг


  • Пожалуйста, авторизуйтесь, чтобы ответить
22 ответов в этой теме

#21 Igor Diakonov

Igor Diakonov

    Super True Member

  • Admin
  • PipPipPipPipPip
  • 10 190 сообщений
224
Очень хороший
  • Пол:Мужчина
  • Город:SPB

Опубликовано 12 Апрель 2011 - 16:58

Ошибок нет никаких. Как только денег на счёт положите - всё станет отображаться как надо.
  • 0

#22 Shwuk

Shwuk

    Super True Member

  • True Members
  • PipPipPipPipPip
  • 1 181 сообщений
20
Обычный
  • Город:Ленинградa
  • Интересы:хобби: Энтомология(насекомые и т.п.)

Опубликовано 16 Июль 2011 - 04:48

взломали? :/ вообще не зайти.

Database_Exception [ 23 ]: Out of resources when opening file '/tmp/#sql_338f_0.MYD' (Errcode: 24) [ SHOW COLUMNS FROM `cms_pages` ]
MODPATH/database/classes/kohana/database/mysql.php [ 148 ]

143 {
144 // This benchmark is worthless
145 Profiler::delete($benchmark);
146 }
147
148 throw new Database_Exception(':error [ :query ]',
149 array(':error' => mysql_error($this->_connection), ':query' => $sql),
150 mysql_errno($this->_connection));
151 }
152
153 if (isset($benchmark))

MODPATH/database/classes/kohana/database/mysql.php [ 217 ] » Kohana_Database_MySQL->query(arguments)

type integer 1

sql string(29) "SHOW COLUMNS FROM `cms_pages`"

as_object bool FALSE


212 $result = $this->query(Database::SELECT, 'SHOW COLUMNS FROM '.$table.' LIKE '.$this->quote($like), FALSE);
213 }
214 else
215 {
216 // Find all column names
217 $result = $this->query(Database::SELECT, 'SHOW COLUMNS FROM '.$table, FALSE);
218 }
219
220 $columns = array();
221 foreach ($result as $row)
222 {

MODPATH/orm/classes/kohana/orm.php [ 1150 ] » Kohana_Database_MySQL->list_columns(arguments)

table string(5) "pages"


1145 * @return array
1146 */
1147 public function list_columns()
1148 {
1149 // Proxy to database
1150 return $this->_db->list_columns($this->_table_name);
1151 }
1152
1153 /**
1154 * Proxy method to Database field_data.
1155 *

MODPATH/orm/classes/kohana/orm.php [ 1025 ] » Kohana_ORM->list_columns()

1020 $this->_table_columns = ORM::$_column_cache[$this->_object_name];
1021 }
1022 else
1023 {
1024 // List columns and mirror for performance
1025 $this->_table_columns = $this->list_columns();
1026 $this->_table_columns = array_combine($this->_table_columns, $this->_table_columns);
1027
1028 // Load column cache
1029 ORM::$_column_cache[$this->_object_name] = $this->_table_columns;
1030 }

MODPATH/orm/classes/kohana/orm.php [ 506 ] » Kohana_ORM->reload_columns()

501
502 $this->_has_many[$alias] = array_merge($defaults, $details);
503 }
504
505 // Load column information
506 $this->reload_columns();
507 }
508
509 /**
510 * Initializes validation rules, callbacks, filters, and labels
511 *

MODPATH/orm/classes/kohana/orm.php [ 147 ] » Kohana_ORM->_initialize()

142 // Optimize for performance
143 $this->_ignored_columns = array_combine($this->_ignored_columns, $this->_ignored_columns);
144 }
145
146 // Initialize database
147 $this->_initialize();
148
149 // Clear the object
150 $this->clear();
151
152 if ($id !== NULL)

MODPATH/orm/classes/kohana/orm.php [ 119 ] » Kohana_ORM->__construct(arguments)

id NULL


114 public static function factory($model, $id = NULL)
115 {
116 // Set class name
117 $model = 'Model_'.ucfirst($model);
118
119 return new $model($id);
120 }
121
122 /**
123 * Prepares the model database connection and loads the object.
124 *

APPPATH/classes/controller/welcome.php [ 9 ] » Kohana_ORM::factory(arguments)

model string(4) "page"


4 public $template = 'index';
5
6 public $auth_required = FALSE;
7
8 public function action_index() {
9 $page = ORM::factory('page')->where('alias', '=', 'index')->find();
10
11 if ( !$page->loaded() ) $this->request->redirect('404');
12 $this->template->page = $page;
13
14 $this->template->page_about = ORM::factory('page')->where('module', '=', 'about')->find();

{PHP internal call} » Controller_Welcome->action_index()

SYSPATH/classes/kohana/request.php [ 846 ] » ReflectionMethod->invokeArgs(arguments)

object object Controller_Welcome(4) {
public template => object View(2) {
protected _file => string(63) "/www/sites/rts/rts-online.ru/htdocs/application/views/index.php"
protected _data => array(0)
}
public auth_required => bool FALSE
public auto_render => bool TRUE
public request => object Request(9) {
public route => object Route(4) {
protected _uri => string(32) "((/(/)))"
protected _regex => array(0)
protected _defaults => array(2) (
"controller" => string(7) "welcome"
"action" => string(5) "index"
)
protected _route_regex => string(87) "#^(?:(?P[^/.,;?]++)(?:/(?P[^/.,;?]++)(?:/(?P[^/.,;?]++))?)?)?$#"
}
public status => integer 500
public response => string(0) ""
public headers => array(1) (
"Content-Type" => string(24) "text/html; charset=utf-8"
)
public directory => string(0) ""
public controller => string(7) "welcome"
public action => string(5) "index"
public uri => string(0) ""
protected _params => array(0)
}
}

args array(0)


841
842 // Determine the action to use
843 $action = empty($this->action) ? Route::$default_action : $this->action;
844
845 // Execute the main action with the parameters
846 $class->getMethod('action_'.$action)->invokeArgs($controller, $this->_params);
847
848 // Execute the "after action" method
849 $class->getMethod('after')->invoke($controller);
850 }
851 catch (Exception $e)

APPPATH/bootstrap.php [ 119 ] » Kohana_Request->execute()

114 ));
115
116 try {
117 try {
118 $request = Request::instance();
119 $request->execute();
120 }
121 catch (ReflectionException $e) {
122 Kohana::$log->add('ERROR_404', Kohana::exception_text($e));
123
124 if (!IN_PRODUCTION) {

DOCROOT/index.php [ 103 ] » require(arguments)

0 string(61) "/www/sites/rts/rts-online.ru/htdocs/application/bootstrap.php"


98 // Load empty core extension
99 require SYSPATH.'classes/kohana'.EXT;
100 }
101
102 // Bootstrap the application
103 require APPPATH.'bootstrap'.EXT;

Environment


ser.rts.spb.ru использует недействительный сертификат безопасности.

К сертификату нет доверия, так как он является самоподписанным.

(Код ошибки: sec_error_untrusted_issuer


  • 0
АвиаСалонМакс
Макс2009
Posted ImagePosted ImagePosted Image
ставлю пивас или чай с медом.....

#23 deepweb

deepweb

    Дипыч

  • Admin
  • PipPipPipPipPip
  • 1 639 сообщений
42
Обычный
  • Пол:Мужчина
  • Город:Санкт-Петербург

Опубликовано 23 Июль 2011 - 12:31

ы
  • -1
на всём готовеньком ты счастлив ли дурак?

IPTV online


Посетителей, читающих эту тему: 1

0 пользователей, 1 гостей, 0 анонимных пользователей