
[ 1546415 ] Error in form.php
Because this error is XOOPS related.
Fatal error: Call to a member function isContainer() on a non-object in E:webhtdocsxoops-2.0.15classxoopsformform.php on line 193
$edituser->setVar("name_of_the_date_field_in_sql", new_value);
$edituser->setVar("name_of_the_date_field_in_sql", $new_value);
kernel/user.php
$this->initVar('user_intrest', XOBJ_DTYPE_TXTBOX, null, false, 150);
$this->initVar('user_mailok', XOBJ_DTYPE_INT, 1, false);
something like this
$this->initVar('name_of_the_date_field_in_sql', XOBJ_DTYPE_TXTAREA, null, false, null);
http://thedemoserver.com/BattleOfTheBands/modules/mymusic/
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Battle Of The Bands</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="content-language" content="en">
<meta name="rating" content="general">
<meta name="robots" content="index, follow">
<meta name="generator" content=" PopScript 1.2">
<meta name="keywords" content="enter your keywords here">
<meta name="description" content="Enter your site description here">
<meta name="author" content="Battle Of The Bands">
<meta name="copyright" content="© 2005 www.yourdomain.com">
<meta name="revisit-after" content="7 days"><link rel="shortcut icon" href="../../favicon.ico">
<script type='text/javascript'>
<!--
function xoopsGetElementById(id) {
if (document.getElementById(id)) {
return document.getElementById(id);
} else if (document.all[id]) {
return document.all[id];
} else if (document.layers && document.layers[id]) {
return (document.layers[id]);
} else {
return false;
}
}
function toggle_visibility(id, flag) {
if (xoopsGetElementById(id)) {
xoopsGetElementById(id).style.visibility = (flag) ? 'visible' : 'hidden';
}
}
function showImgSelected(imgId, selectId, imgDir) {
imgDom = xoopsGetElementById(imgId);
selectDom = xoopsGetElementById(selectId);
imgDom.src = "http://thedemoserver.com/BattleOfTheBands/"+ imgDir + "/" + selectDom.options[selectDom.selectedIndex].value;
}