Hello,
can someone tell me how i can set a profilefield of a user within my PHP Code?
At the moment I am using this code:
PHP Code:
if ($_REQUEST['do'] == 'update')
{
$vbulletin->input->clean_array_gpc('p', array(
'username' => TYPE_STR,
'password' => TYPE_STR
));
// init user data manager
$userdata =& datamanager_init('User', $vbulletin, ERRTYPE_STANDARD);
$userdata->set_existing($vbulletin->userinfo);
// profile stuff
$userdata->set('field5', $vbulletin->GPC['username']);
$userdata->set('field6', $vbulletin->GPC['password']);
// save the data
$userdata->save();
if ($vbulletin->session->vars['profileupdate'])
{
$vbulletin->session->set('profileupdate', 0);
}
$vbulletin->url = 'rodcust.php?' . $vbulletin->session->vars['sessionurl'] . 'do=overview';
eval(print_standard_redirect('redirect_updatethanks', true, true));
}
But this outputs errors:
Quote:
Schwerer Fehler: Field field5 is not defined in $validfields in class vB_DataManager_User in [path]\includes\class_dm.php (Zeile 515)
|
After some time of search i found this:
PHP Code:
// set the valid fields
$userdata->validfields['field5'] = array(TYPE_STR, REQ_YES);
$userdata->validfields['field6'] = array(TYPE_STR, REQ_YES);
and added it after before "// profile stuff". It ended up in this:
Quote:
Datenbankfehler in vBulletin 4.1.4:
Invalid SQL:
UPDATE user SET
field5 = 'test',
field6 = 'test'
WHERE userid = 1;
MySQL-Fehler : Unknown column 'field5' in 'field list'
Fehler-Nr. : 1054
Fehler-Zeit : Saturday, 02.07.2011 @ 11:32:51
Datum : Saturday, 02.07.2011 @ 11:32:51
Skript : http://domain.tld/page.php?do=update
Referrer : http://domain.tld/page.php
IP-Adresse : 255.255.255.255
Benutzername : user
Klassenname : vB_Database
MySQL-Version : 5.1.53-community-log
|
So please can someone tell me how i can set the profilefields "field5" and "field6" within my PHP code?