Jump to content
xt:Commerce Community Forum

Installationsprobleme


erichon

Recommended Posts

Moin,

soweit ich wei?, weder noch. Zumindest habe ich das hier so insgesamt rausgelesen, gibt auch einen Thread, in dem das jemand fragte, da sein Provider im Herbst umstellen wollte. Bei 1und1 hat man da noch Gl?ck; beide Versionen laufen dort parallel und so l?uft auch unser shop noch.

Viele Gr??e!

Thomas

Link to comment
Share on other sites

oll?,

so an alle die dieses propblem auch haben:

Warning: main(includes/configure.php): failed to open stream: No such file or directory in /home/.sites/112/site7/web/xtcommerce/includes/application_top.php on line 42

Warning: main(): Failed opening 'includes/configure.php' for inclusion (include_path='/usr/sausalito/ui/libPhp:/usr/sausalito/ui/web') in /home/.sites/112/site7/web/xtcommerce/includes/application_top.php on line 42

Warning: main(DIR_WS_INCLUDESfilenames.php): failed to open stream: No such file or directory in /home/.sites/112/site7/web/xtcommerce/includes/application_top.php on line 57

Fatal error: main(): Failed opening required 'DIR_WS_INCLUDESfilenames.php' (include_path='/usr/sausalito/ui/libPhp:/usr/sausalito/ui/web') in /home/.sites/112/site7/web/xtcommerce/includes/application_top.php on line 57

hier die l?sung:

in der der datei admin/includes/classes/upload.phpfolgende zeile (33) auskomentieren (sprich zwei // davor setzen):

   $this->set_file($file);

   $this->set_destination($destination);

   $this->set_permissions($permissions);

   $this->set_extensions($extensions);


   if (xtc_not_null($this->file) && xtc_not_null($this->destination)) {

    if ( ($this->parse() == true) && ($this->save() == true) ) {

     return true;

    } else {

     // self destruct

     [COLOR=red] // [/COLOR]$this = null;


     return false;

    }

   }

  }

...und wie ich schon sagte aufgeben is net :):):)

gru? an erichon der geht an dich :D

lutz

Link to comment
Share on other sites

ooops bl?der code :stupid:

so hier richtig:

$this->set_file($file);

$this->set_destination($destination);

$this->set_permissions($permissions);

$this->set_extensions($extensions);

if (xtc_not_null($this->file) && xtc_not_null($this->destination)) {

if ( ($this->parse() == true) && ($this->save() == true) ) {

return true;

} else {

// self destruct

// $this = null;

return false;

}

}

}

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...