0
votes
1answer
74 views

Strict standards warning: Singleton implementation with PHP

I have created a logger as a singleton for my PHP application with Zend framework. Implementation is pretty straight-forward: class Logger { protected static $_logger; private function ...
0
votes
0answers
187 views

Strict Standards: mysqli_next_result() error with mysqli_multi_query

I have tried using multi_query but I keep getting a strict Standards message popping up. $querystring = "INSERT INTO responses VALUES('1', '2', '3', '4'); INSERT INTO responses VALUES('1', '2', '3', ...
1
vote
2answers
142 views

PHP Strict Standards: Non-static method Fatal::dbError()

I am troubleshooting an error in PHP and I don't know how to resolve it. I don't have any PHP knowledge. Here is the code: function _act($sql) { if (!$this->_link) { ...
0
votes
2answers
529 views

Strict Standards: Only variables should be passed by reference in functions.php

I'm a bit confused by the error I am getting. The error is: Strict Standards: Only variables should be passed by reference in functions.php The line in reference is: $action = array_pop($a ...
-1
votes
3answers
155 views

PHP Strict Standards: Creating default object from empty value

i have this error in my cronjobs report PHP Strict Standards: Creating default object from empty value in /home/admin/domains/DOMAIN.com/public_html/birthdate.php on line 28 Strict Standards: ...
0
votes
2answers
1k views

Strict Standards: Only variables should be passed by reference - php error

$file_name = $_FILES['profile_image']['name']; $file_ext = end(explode('.', $file_name)); //line 10 $file_ext = strtolower($file_ext); $file_temp = ...
1
vote
1answer
952 views

Dokeos warning: Strict Standards

When installing dokeos 2.1 into htdocs, it shows warnings like these: Strict Standards: Declaration of SortableTableFromArray::get_table_data() should be compatible with that of ...
1
vote
2answers
5k views

Joomla 1.6 problem

I recently installed Joomla 1.6 on my XAMPP local server and i got this error message: Strict Standards: Declaration of JButtonPopup::fetchId() should be compatible with that of JButton::fetchId() ...