Hi Tracy. Sorry, I missed your last post. There is an issue with open_base_dir and user avatars. You can fix this with a quick edit to changebasic.php. Line 246 of that file looks like this:

copy($HTTP_POST_FILES['userfile']['tmp_name'], "{$config['avatars']}/$Picturefile");

That, needs to be changed to this:

move_uploaded_file($HTTP_POST_FILES['userfile']['tmp_name'], "{$config['avatars']}/$Picturefile");