Hola
Instale AzDGDatingLite y al tratar de subir una fotografia
me da el siguiente error:
Warning: move_uploaded_file(): SAFE MODE Restriction in effect. The script whose uid is 1134
is not allowed to access /home/evenet/domains/evenet.com.ar/public_html/AzDGDatingLite/members/uploads/072005
owned by uid 48 in /home/evenet/domains/evenet.com.ar/public_html/AzDGDatingLite/classes/upload.class.php
on line 86
***********
***********
Esta es la parte del script al cual hace referencia en "Line 84"
***********
81 function move_file() {
82 if($this->check_size() && $this->check_extension() && $this->check_uploaded() && $this->check_wh()) {
83 if(@is_writable(dirname($this->path)))
84 {
85 $this->move = move_uploaded_file($this->up_file, $this->path.$this->type);
86 @chmod($this->path.$this->type, 0644);
87 return true;
88 }
89 else
90 {
91 $this->errors = 'Directory ' . str_replace(C_PATH,'',dirname($this->path))
92 . ' doesn`t writable.';
93 return false;
94 }
95 } else {
96 return false;
97 }
98 }
Alguien sabra explicarme que puede suceder?