phpbb 2.0.23 - von externem avatar hochladen

  • hallo! ich kriege leider folgenden fehler wenn ich versuche ein externes avatar hochzuladen

    Code
    Warning: tempnam() [function.tempnam]: open_basedir restriction in effect. File(/tmp) is not within the allowed path(s): (/var/www/virtual/rock-vienna.com/:/usr/share/php/) in /var/www/virtual/rock-vienna.com/htdocs/board/includes/usercp_avatar.php on line 170

    voll unlogisch hab ich noch nie gesehen

    weiß wer ne lösung? danke

    PHP
    if(isset($this) || !isset($this)){ // that's the question...
  • ok habs mal doch selber geschafft ^^

    hab einfach die infizierten zeilen genommen:

    Code
    $tmp_path = ( !@$ini_val('safe_mode') ) ? '/tmp' : './' . $board_config['avatar_path'] . '/tmp';
    			$tmp_filename = @tempnam($tmp_path, uniqid(rand()) . '-');

    und habe darauf das gemacht:

    Code
    //$tmp_path = ( !@$ini_val('safe_mode') ) ? '/tmp' : './' . $board_config['avatar_path'] . '/tmp';
    			$tmp_path = './' . $board_config['avatar_path'] . '/tmp';
    			$tmp_filename = @tempnam($tmp_path, uniqid(rand()) . '-');
    PHP
    if(isset($this) || !isset($this)){ // that's the question...