[24-Apr-2006 15:31:25] PHP Fatal error: Call to undefined function: query() in c:\phpdev\www\roundcubemail\program\include\rcube_db.inc on line 213
I tried to change the function and looked out for it but I found that the function does not expect any arguments but the line which calls it does send it two arguments. I am pasting below the codesnippet of the Function query() and the
call to that function also:
Path :
phpdev\www\roundcubemail\program\inlcude\ rcube_db:
The Definition of the Function:
/**
* Execute a SQL query
*
* @param string SQL query to execute
* @param mixed Values to be inserted in query
* @return number Query handle identifier
*
@access public
*/
function query()
{
$params = func_get_args();
$query = array_shift($params);
return $this->_query($query, 0, 0, $params);
}
And rthis is the line no which generated the error :213:
the call:
if ($numrows ||
$offset)
$result = $this->db_handle->limitQuery($query,$offset,$numrows,$params);
else
$result = $this->db_handle->query($params, $query);
Pls help me guys any kind of help would be accepted with loads of gratitude. You cannot imagine what predicament I am in. I am very new to all this pls let me know that is it possible even at the first place to install it on windows + Apache+ PHP + MySql combination and testing on the windows locally. Would it open up???? Though I've already tried to install on the linux server at the domain www.designworxz.com but of no avail. (I've
already tried PaulSchamuaoutu notes for the installation and wonder how people say it is a ten minutes job to install the product and has a clean installation procedure).
I am Stuck guys pls help.
Humbly, Vivek.