- 21 Jan 2012, 16:11
#14028
Boa noite a todos
Estou com um problema para instalar no servidor extensão no servidor. pois intalei no localhost e ficou 100%
Minha loja esta em 3 liguas acredito ser por isto o problema.
Retorna este erro.
Notice: Error: Could not load language module/custom_code! in /home/raridade/public_html/system/library/language.php on line 26
Ja dei varias voltas e acrecentei --- private $default = 'english';---
Mas da erro !
Ocodigo da pasta language.php
<?php
final class Language {
private $default = 'english';
private $directory;
private $data = array();
public function __construct($directory) {
$this->directory = $directory;
}
public function get($key) {
return (isset($this->data[$key]) ? $this->data[$key] : $key);
}
public function load($filename) {
$file = DIR_LANGUAGE . $this->directory . '/' . $filename . '.php';
if (file_exists($file)) {
$_ = array();
require($file);
$this->data = array_merge($this->data, $_);
return $this->data;
} else {
trigger_error('Error: Could not load language ' . $filename . '!');
exit();
}
}
}
?>
Agradeço desde ja a ajuda.

http://www.globalnotas.com
Estou com um problema para instalar no servidor extensão no servidor. pois intalei no localhost e ficou 100%
Minha loja esta em 3 liguas acredito ser por isto o problema.
Retorna este erro.
Notice: Error: Could not load language module/custom_code! in /home/raridade/public_html/system/library/language.php on line 26
Ja dei varias voltas e acrecentei --- private $default = 'english';---
Mas da erro !
Ocodigo da pasta language.php
<?php
final class Language {
private $default = 'english';
private $directory;
private $data = array();
public function __construct($directory) {
$this->directory = $directory;
}
public function get($key) {
return (isset($this->data[$key]) ? $this->data[$key] : $key);
}
public function load($filename) {
$file = DIR_LANGUAGE . $this->directory . '/' . $filename . '.php';
if (file_exists($file)) {
$_ = array();
require($file);
$this->data = array_merge($this->data, $_);
return $this->data;
} else {
trigger_error('Error: Could not load language ' . $filename . '!');
exit();
}
}
}
?>
Agradeço desde ja a ajuda.
http://www.globalnotas.com



