Jump to content
php.lv forumi

Kohana help!


aika

Recommended Posts

Tika pārcelts esošs Kohanas projekts uz jaunu vietu, vienīgais kas izmainījās - PHP 5.5 (bija 5.3) 

projekts brēc:

Database_Exception [ 0 ]: [0]

MODPATH/database/classes/kohana/database/mysql.php [ 67 ]
62 		catch (ErrorException $e)
63 		{
64 			// No connection exists
65 			$this->_connection = NULL;
66 
67 			throw new Database_Exception(mysql_errno(), '[:code] :error', array(
68 					':code' => mysql_errno(),
69 					':error' => mysql_error(),
70 				));
71 		}
72 

MODPATH/database/classes/kohana/database/mysql.php [ 158 ] » Kohana_Database_MySQL->connect()
153 	}
154 
155 	public function query($type, $sql, $as_object = FALSE, array $params = NULL)
156 	{
157 		// Make sure the database is connected
158 		$this->_connection or $this->connect();


utt

Google nepalīdz!

ar konekcijas parametriem (db;users) viss kārtībā, pārbaudīts.

Plz help!

Edited by aika
Link to comment
Share on other sites

OK, pieliku MySQLi moduli, diemžēl šobrīd pats modulis izsauc kļūdu:

public function disconnect()
	{
		try
		{
			// Database is assumed disconnected
			$status = TRUE;

			if ($this->_connection instanceof mysqli)
			{
				if ($status = $this->_connection->close())
				{
					// Clear the connection
					$this->_connection = NULL;
				}
			}

			parent::disconnect();
		}
		catch (Exception $e)
		{
			// Database is probably not disconnected
			$status = ! ($this->_connection instanceof mysqli);
		}

		return $status;
	}

Error logos strīpā birst: PHP Fatal error:  Cannot call abstract method Kohana_Database::disconnect() . Atsauce uz koda fragmentu (augšā), 123 rindu: parent::disconnect();

Plīz fix!

Edited by aika
Link to comment
Share on other sites

Vecīt, tur tak skaidri un gaiši pateikts, kur problēma! Ja tu tik skaidrus error message nesaproti, tad programmēšana nav priekš tevis.

 

Jā man OOP nav priekš manis pagaidām! Ņemot vērā ka modulis ņemts 1:1 no autora, kā lai es zinu kur viņš ir sapisies meistarībā?!

 

Galu galā, projekts strādāja uz 5.3, es palīdzu tikai pārcelt uz jaunu hostu! Ne mans projekts, ne mans lauciņš! 

Edited by aika
Link to comment
Share on other sites

Labi , tad atgriežamies pie sākuma problēmas: kaut kas izsauc jebkura requesta pāriešanu uz http://lapa.lv/lv/notikums, kas acīmredzot pats izsauc kaut kādu kļūdu , līdz ar to ieejam redirectu loopā! 

bootstrapa error routes :

Route::set('error', 'error/<action>(/<message>)', array('action' => '[0-9]++', 'message' => '.+'))
->defaults(array(
    'controller' => 'error_handler'
));

defaultās routess nav;

Kohana::init(array(
	'base_url'   => '/',
	'index_file' => FALSE,
	'errors' => TRUE,
));

kā man noķert to blusu, kas routē visu uz /lv/notikums/ ?!

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...