ever since installing this mod, i get the following error when my users try to uplaod a regular avatar from their computer, or even when an admin tries to upload an avator.
Code:
Warning: move_uploaded_file() [function.move-uploaded-file]: open_basedir restriction in effect. File(/tmp/7c0d8328e2a1be6fd3de993f7bb9f052) is not within the allowed path(s): (/usr/share/pear/:/usr/local/apache2/:/misc/35/000/134/065/6/) in /includes/class_upload.php on line 413
somekind of user permissions conflict is going on. Even does the same on my test board with a fresh installation of VB.
when i drop the tables from the database, all is okay....
It is worth looking into
The class_upload.php is not damaged or corrupted in any way, Line 413 of the specific file, has to do with the permissions set for the usergroups upon uploading.
line 413
Code:
$moveresult = $this->registry->userinfo['permissions']['adminpermissions'] & $this->registry->bf_ugp_adminpermissions['cancontrolpanel'] ? move_uploaded_file($this->upload['location'], $temppath) : @move_uploaded_file($this->upload['location'], $temppath);