UPDATES VIA   RSS  |  Email Get updates via feedburner Get updates via twitter
Home

Posts tagged with error

WordPress 2.8.4: Not ready to be installed with PHP 5.3 ?

Posted on 01. Sep, 2009 by .

2

I’ve just tried to install WordPress 2.8.4 on my testing machine (PHP 5.3). Right on the installation page a dozen of errors filled my screen, something like: Strict Standards: Declaration of Walker_Page::start_lvl() should be compatible with that of Walker::start_lvl() in /opt/lampp/htdocs/wordpress/wp-includes/classes.php on line 1214 This is not a big issue and it doesn’t interrupt the [...]

Continue Reading

Ubuntu terminal: invalid host type && configure: error: can only configure for one host and one target at a time

Posted on 24. Aug, 2009 by .

1

If you get this error, then most likely a file doesn’t exist or the browser plays tricks on you, driving you mad. For example here’s  a command: ./configure –with-apxs2=/usr/bin/apxs2 –with-mysql=/usr/bin/mysql Either /usr/bin/apxs2 doesn’t exist or the argument is incorrect. Instead of a one hyphen before “with-apxs2….”, there should be two. The browser automatically transform the [...]

Continue Reading

PHP Error: Call to a member function fetch_assoc() on a non-object in

Posted on 23. Jun, 2009 by .

4

If you get this error: Call to a member function fetch_assoc() on a non-object in … , it means that you have an error in your mysql syntax. Supposing that $mysqli is your database connection object, put echo $mysqli->error; just before the line you’re getting the error on. $mysqli=new mysqli(HOST,USER,PASS,DB); $mQuery=$mysqli->query(‘select `data` from `this_table` where [...]

Continue Reading