Jump to content
xt:Commerce Community Forum

Wer kann helfen :(


Base84

Recommended Posts

wenn ich mich zum admin menü will zeigt der mir nur diese fehler an :(

bin nicht der freak eher ein Noob benutze den shop zum ersten mal

das sind die fehler

--------------------------------------------------------------------------

Warning: session_save_path() [function.session-save-path]: SAFE MODE Restriction in effect. The script whose uid is 1154 is not allowed to access owned by uid 0 in /var/www/web7/html/admin/includes/application_top.php on line 302

--------------------------------------------------------------------------

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /var/www/web7/html/admin/includes/application_top.php:302) in /var/www/web7/html/admin/includes/application_top.php on line 338

--------------------------------------------------------------------------

Warning: Cannot modify header information - headers already sent by (output started at /var/www/web7/html/admin/includes/application_top.php:302) in /var/www/web7/html/admin/includes/functions/general.php on line 130

--------------------------------------------------------------------------

hoffe mir kann einer helfen safme mode ist aus :( danke schonmal im voraus

Link to comment
Share on other sites

  • 1 year later...

Hallo,

ich habe nun genau das gleiche Problem und hab bis jetzt noch leider keine hilfe gefunden. hast du den fehler in den griff bekommen?hmm, beitrag ist ja knapp 2 jahre her.

also das ist mein fehler:

Warning: session_save_path() [function.session-save-path]: SAFE MODE Restriction in effect. The script whose uid/gid is 33/34984 is not allowed to access /tmp owned by uid/gid 0/0 in /mnt/webspace/04/34984/online-ecke.com/304SP2.1_release/xtcommerce/admin/includes/application_top.php on line 302

ich benutze diese kostenlose software zum ersten mal, bin sozusagen auch ein neuling und hab keine ahnung wie ich den fehler weg kriege.

ich hoffe dass mir jemand helfen kann,

danke schonmal im voraus und

Gruß

Kerim

Link to comment
Share on other sites

Hallo,

In der Datei:

catalog/includes/functions/sessions.php[/PHP]

Finde:

[PHP] function tep_session_save_path($path = '') {
if (!empty($path)) {
return session_save_path($path);
} else {
return session_save_path();
}
} [/PHP]

Ersetzen mit:

[PHP]
function tep_session_save_path($path = '') {
if (STORE_SESSIONS != 'mysql') {
if (!empty($path)) {
return session_save_path($path);
} else {
return session_save_path();
}
}
} [/PHP]

Öffnen:

[PHP]catalog/admin/includes/functions/sessions.php[/PHP]

Finden:

[PHP] function tep_session_save_path($path = '') {
if ($path != '') {
return session_save_path($path);
} else {
return session_save_path();
}
}
[/PHP]

Ersetzen:

[PHP] function tep_session_save_path($path = '') {
if (STORE_SESSIONS != 'mysql') {
if (!empty($path)) {
return session_save_path($path);
} else {
return session_save_path();
}
}
} [/PHP]

Grüße

Andreas

Link to comment
Share on other sites

hallo,

ich hab die genannten zeilen geändert, oder besser gesagt das erste geändert und dann das 2. hinzugefügt da es gar nicht existierte. bis jetzt leider ohne erfolg.

ich zeig mal wie das bei mir aussieht.

folgende zeilen sind vom application_top.php zeile 300 bis 302:

// set the session name and save path

session_name('XTCsid');

if (STORE_SESSIONS != 'mysql') session_save_path(SESSION_WRITE_DIRECTORY);

und diese folgenden zeilen sind vom session.php zeile 121 bis 126:

function xtc_session_save_path($path = '') {

if (!empty($path)) {

return session_save_path($path);

} else {

return session_save_path();

}

dann noch application_top.php zeile 250 bis 253:

// Define how do we update currency exchange rates

// Possible values are 'oanda' 'xe' or ''

define('CURRENCY_SERVER_PRIMARY', 'oanda');

define('CURRENCY_SERVER_BACKUP', 'xe');

um ganz genau zu sein hier nochmal die fehler:

im adminbereich:

Warning: session_save_path() [function.session-save-path]: SAFE MODE Restriction in effect. The script whose uid/gid is 33/34984 is not allowed to access / owned by uid/gid 0/0 in /mnt/webspace/04/34984/online-ecke.com/304SP2.1_release/xtcommerce/admin/includes/application_top.php on line 302

und im shop:

Warning: session_save_path() [function.session-save-path]: SAFE MODE Restriction in effect. The script whose uid/gid is 33/34984 is not allowed to access / owned by uid/gid 0/0 in /mnt/webspace/04/34984/online-ecke.com/304SP2.1_release/xtcommerce/includes/application_top.php on line 250

im shopbereich zeigt er fehler in zeile 250 und im adminbereich in zeile 302.

hoffe man kann es so in den griff kriegen, neu installieren wäre nicht so günstig da ich schon einiges im shop gemacht habe. das ganze müsste ich dann wieder tun, da steckt schon viel arbeit und zeit drin.

hoffe mir kann jemand helfen

grruß

kerim

Link to comment
Share on other sites

hallo,

im shopbereich zeigt er fehler in zeile 250 und im adminbereich in zeile 302.

hoffe man kann es so in den griff kriegen, neu installieren wäre nicht so günstig da ich schon einiges im shop gemacht habe. das ganze müsste ich dann wieder tun, da steckt schon viel arbeit und zeit drin.

hoffe mir kann jemand helfen

grruß

kerim

Hi, musst nich neu installieren.

Einfach in den configure Dateien ändern.

Die define 'Store_Session' Zeile suchen (ist ziemlich weit unten) und dort 'mysql' eintragen.

define('STORE_SESSIONS', 'mysql'); // leave empty '' f

Gruß

Link to comment
Share on other sites

Archived

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

×
  • Create New...