Error 404 nach dem Login

Please post all install related problems here. Visit this forum first for troubleshooting.
Post Reply
jamo
Posts: 13
Joined: Wed 12. Apr 2006, 09:25

Error 404 nach dem Login

Post by jamo »

Hallo zusammen,

die Installation lief ohne Problem durch-nach dem Login erscheint dann
eine Error 404 Meldung.
Wenn ich jetzt in der Adressleiste die URL manuell von
"http://www.meinedomain.de/phpwcms/login.php" auf "http://www.meinedomain.de/phpwcms/phpwcms/login.php" ändere (also noch "phpwcms" ) hinzufüge, komme ich in die Verwaltung, die aber ohne Bilder ,sprich GIF`s angezeigt wird. Gehe ich nun in der Verwaltung z.B. auf "Datei" erscheint in der Adressleiste diese URL "http://www.meinedomain.de/phpwcms/phpwc ... p?do=files".
Lösche ich jetzt wiederum das zweite >phpwcms< aus der Adressleiste,erscheint die Verwaltung korrekt,also mit allen nötigen GIF´s.
Jetzt kann ich auch Änderungen vornehmen (Artikel anlegen etc.), wobei dann ab uns zu beim speichern wieder der Error 404 erscheint-es wird aber trotzdem gespeichert. Puhh, ich hoffe,mein Problem ist verständlich.
Liegt hier ein Path-Problem vor oder liegt es daran , dass ich bei der Installation meine lokale Firewall (Zonelarm) nicht deaktiviert habe. Auch wenn ich sie jetzt deaktiviere,bleibt das Problem oder muss ich phpwcms neuinstallieren? Fragen über Fragen .... :cry:
Ich würde mich über jede Hilfe freuen !!

Meine config-datei sieht so aus.

$phpwcms["site"] = "http://www.mydomain.com/";


$phpwcms["root"] = "phpwcms";
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Post by flip-flop »

Hi jamo,

was für ein Server? Linux oder Windows, Apache oder IIS?

Probiere mal das hier:

Code: Select all

$phpwcms["site"]              = "http://".$_SERVER['SERVER_NAME']."/";
$phpwcms["admin_email"]       = "webmaster@mydomain.com";

// paths
$phpwcms["DOC_ROOT"]          = $_SERVER['DOCUMENT_ROOT'];
$phpwcms["root"]         	  = "phpwcms";         //default: "" 
wenn kein IIS, dann diese Zeile auskommentieren (ganz unten):

Code: Select all

// $_SERVER['DOCUMENT_ROOT']     = '/home/www/xxxxx/html'; 
Gruß Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
jamo
Posts: 13
Joined: Wed 12. Apr 2006, 09:25

Post by jamo »

Hallo flip-flop,

danke für deine Hilfe,aber ich habe den Fehler gefunden. Ich habe mich zu sehr an die Installalationsanweisung gehalten und einfach nicht mitgedacht.

Ich hatte nach genauerer Prüfung folgendes in der conf.inc.php stehen

$phpwcms["site"] = "http://www.mydomain.de/.";


habe diese geändert auf:

$phpwcms["site"] = "http://www.mydomain.de/";

und siehe da, es funktioniert alles! Danke Dir trotzdem!
Gruss jamo
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Post by flip-flop »

Hi,

Code: Select all

$phpwcms["site"]              = "http://".$_SERVER['SERVER_NAME']."/"; 
wenn möglich, verwende den oberen Ausdruck.

gruß Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
jamo
Posts: 13
Joined: Wed 12. Apr 2006, 09:25

Post by jamo »

OK, ich probiere es mal aus ! Was bewirkt denn genau deine Alternative bzw. wo ist der Unterschied?....nur mal so, damit ich es verstehe :wink:

Gruss
jamo
User avatar
flip-flop
Moderator
Posts: 8178
Joined: Sat 21. May 2005, 21:25
Location: HAMM (Germany)
Contact:

Post by flip-flop »

Hi,

das hängt mit dem Caching zusammen. http://www.phpwcms.de/forum/viewtopic.php?p=52464#52464
Muss nicht aber sollte.

Gruß Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
jamo
Posts: 13
Joined: Wed 12. Apr 2006, 09:25

Post by jamo »

Danke Dir, flip-flop !!!

Gruss
jamo
Post Reply