Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Upload has a deprecated constructor in /home/lagunaph/public_html/include/lib/core/Upload.php on line 7
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; ErrorHandler has a deprecated constructor in /home/lagunaph/public_html/include/lib/core/ErrorHandler.php on line 3
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; UrlRewriter has a deprecated constructor in /home/lagunaph/public_html/include/lib/core/UrlRewriter.php on line 11
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; DB_Sql has a deprecated constructor in /home/lagunaph/public_html/include/lib/core/db_mysql.php on line 3
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; PHPMailer has a deprecated constructor in /home/lagunaph/public_html/include/lib/core/classphpmailer.php on line 3
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; BaseObject has a deprecated constructor in /home/lagunaph/public_html/include/lib/core/BaseObject.php on line 11
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; ListObject has a deprecated constructor in /home/lagunaph/public_html/include/lib/core/ListObject.php on line 11
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Smarty has a deprecated constructor in /home/lagunaph/public_html/include/lib/core/smarty/Smarty.class.php on line 64
Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/lagunaph/public_html/include/lib/classes/base/Valid.php on line 469
Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/lagunaph/public_html/include/lib/classes/base/Valid.php on line 470
Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/lagunaph/public_html/include/lib/classes/base/Valid.php on line 472
Deprecated: Array and string offset access syntax with curly braces is deprecated in /home/lagunaph/public_html/include/lib/classes/base/Valid.php on line 476
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Image has a deprecated constructor in /home/lagunaph/public_html/include/lib/classes/base/Image.php on line 19
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; User has a deprecated constructor in /home/lagunaph/public_html/include/lib/classes/User.php on line 13
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Paginator has a deprecated constructor in /home/lagunaph/public_html/include/lib/classes/Paginator.php on line 14
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; DynamicConfig has a deprecated constructor in /home/lagunaph/public_html/include/lib/classes/DynamicConfig.php on line 9
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; PayPal has a deprecated constructor in /home/lagunaph/public_html/include/lib/classes/PayPal.php on line 66
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; HtmlContent has a deprecated constructor in /home/lagunaph/public_html/include/lib/classes/HtmlContent.php on line 9
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; JsMenu has a deprecated constructor in /home/lagunaph/public_html/include/lib/classes/JsMenu.php on line 14
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; BreadCrumb has a deprecated constructor in /home/lagunaph/public_html/include/lib/classes/BreadCrumb.php on line 16
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; InputValidator has a deprecated constructor in /home/lagunaph/public_html/include/lib/classes/InputValidator.php on line 24
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Admin has a deprecated constructor in /home/lagunaph/public_html/include/lib/classes/Admin.php on line 11
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; xmlParser has a deprecated constructor in /home/lagunaph/public_html/include/lib/classes/xmlparser.php on line 78
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; XmlBuilder has a deprecated constructor in /home/lagunaph/public_html/include/lib/classes/xmlbuilder.php on line 25
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; news_Template has a deprecated constructor in /home/lagunaph/public_html/include/lib/siteclasses/NewsTemplate.php on line 2
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; DB has a deprecated constructor in /home/lagunaph/public_html/include/lib/siteclasses/Db.php on line 19
Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; Newsletter has a deprecated constructor in /home/lagunaph/public_html/include/lib/siteclasses/Newsletter.php on line 11
session_start(): Cannot start session when headers already sent in /index.php (29)
24 25 26 27 28 29 30 31 32 33 34
| $mapped_controller = isset($mapping[$page]) ? $mapping[$page] : $page;
$controller = $config->absolute_path . '/pages/' . $mapped_controller . '.php';
$template = $config->absolute_path . '/templates/' . $mapped_controller . '.tpl';
if(file_exists($controller)) {
session_start();
require_once $controller;
$content_var = $smarty->get_template_vars('CONTENT');
if(empty($content_var)) {
$content_var = $mapped_controller;
}
|
Undefined property: Config::$mysql in /include/lib/core/db_mysql.php (21)
16 17 18 19 20 21 22 23 24 25 26
| var $Link_ID = null; var $Query_ID = null; function DB_Sql($query = '') { $conn = $GLOBALS['config']->mysql; $this->Host = $conn->host; $this->Database = $conn->database; $this->User = $conn->user; $this->Password = $conn->password;
|
Trying to get property 'host' of non-object in /include/lib/core/db_mysql.php (22)
17 18 19 20 21 22 23 24 25 26 27
| var $Query_ID = null; function DB_Sql($query = '') { $conn = $GLOBALS['config']->mysql; $this->Host = $conn->host; $this->Database = $conn->database; $this->User = $conn->user; $this->Password = $conn->password; $this->Debug = (bool)(@$GLOBALS['config']->debug_mode);
|
Trying to get property 'database' of non-object in /include/lib/core/db_mysql.php (23)
18 19 20 21 22 23 24 25 26 27 28
| function DB_Sql($query = '') { $conn = $GLOBALS['config']->mysql; $this->Host = $conn->host; $this->Database = $conn->database; $this->User = $conn->user; $this->Password = $conn->password; $this->Debug = (bool)(@$GLOBALS['config']->debug_mode);
|
Trying to get property 'user' of non-object in /include/lib/core/db_mysql.php (24)
19 20 21 22 23 24 25 26 27 28 29
| function DB_Sql($query = '') { $conn = $GLOBALS['config']->mysql; $this->Host = $conn->host; $this->Database = $conn->database; $this->User = $conn->user; $this->Password = $conn->password; $this->Debug = (bool)(@$GLOBALS['config']->debug_mode); $this->query($query);
|
Trying to get property 'password' of non-object in /include/lib/core/db_mysql.php (25)
20 21 22 23 24 25 26 27 28 29 30
| { $conn = $GLOBALS['config']->mysql; $this->Host = $conn->host; $this->Database = $conn->database; $this->User = $conn->user; $this->Password = $conn->password; $this->Debug = (bool)(@$GLOBALS['config']->debug_mode); $this->query($query); }
|
Fatal error: Uncaught Error: Call to undefined function mysql_connect() in /home/lagunaph/public_html/include/lib/core/db_mysql.php:52
Stack trace:
#0 /home/lagunaph/public_html/include/lib/core/db_mysql.php(78): DB_Sql->connect()
#1 /home/lagunaph/public_html/include/lib/core/db_mysql.php(29): DB_Sql->query('SELECT * FROM p...')
#2 /home/lagunaph/public_html/pages/home.php(4): DB_Sql->DB_Sql('SELECT * FROM p...')
#3 /home/lagunaph/public_html/index.php(30): require_once('/home/lagunaph/...')
#4 {main}
thrown in /home/lagunaph/public_html/include/lib/core/db_mysql.php on line 52