just installed version 2 on my local test server. Can connect to my server (I can write a new article and post it), however if I want to load existing items, I get an infinite "Status : Working" message. Checking php error log, I ge t this message :
Quote
PHP Notice: Undefined variable: i in (...snip...)mambots\blogg-x_2_0\blogg-x_server.php on line 632
the line is:
Code:
$text = mysql_result($result,$i);
inside
Code:
function getsingle($m)
,however $i is not defined inside this context, and given the function name, I guess $i could be replaced with 0 instead, and that seems to solve the problem (I can load items now).