Leiten Sie die WordPress-Site von Localhost zum Dashboard um
-
-
Haben Sie die Site-URL und die Home-URLgeändert?Did you change site URL and home URL ?
- 0
- 2016-04-23
- Sumit
-
Wennicheine WordPress-Site lokalteste/debugge,legeich die Site-URLin meiner Host-Dateifest,um auf die Sitemit derselben URL zuzugreifen.(Nachteilist,dass Sienicht auf die reale Site zugreifen können,während Sie diesen Datensatzin Ihrer Host-Datei haben)When I test/debug a wordpress site locally, I set the site url in my host file to access the site with the same url. (down side is that you can't access the real site while you have this record in your host file)
- 0
- 2016-04-24
- Rabin
-
Ja,ich ändere die Site-URL und die Home-URL ...Yes i change site url and home url...
- 0
- 2016-04-25
- Abdul Ali Khan
-
1 Antworten
- Stimmen
-
- 2016-04-24
Es klingt wie die Site & amp; Home-URLs sindnicht richtigeingestellt.
Sie können diesein wp-admin über den Einstellungsbildschirmfestlegen,obwohles den Anschein hat,als könnten Sie derzeitnicht dort hineinkommen. Eine Problemumgehungbesteht darin,Folgendes zutun:
- Bearbeiten Sie Ihre
wp-config.php
-Datei - Suchen Sienach
WP_HOME
oderWP_SITEURL
in dieser Datei - Wenn dies der Fallist,ändern Sie die angegebene Adressein
'http://localhost/wordpress/'
Wenn
WP_HOME
undWP_SITEURL
nochnichtin Ihrer Dateiwp-config.php
vorhanden sind,fügen Sie der Datei denfolgenden Code hinzu (irgendwo vor dem Kommentar "Dasist alles,hör auf zubearbeiten"):define ('WP_HOME','http://localhost/wordpress/'); define ('WP_SITEURL','http://localhost/wordpress/');
Wenn dies die richtige Adresseist,unter der Sieinstalliert haben,und alles korrekt verschoben wurde,sollten Sie zu Ihrem Anmeldebildschirm weitergeleitet werden,wenn Sie http://localhost/wordpress/wp-admin .
EDIT:
Wennesimmernochnicht umgeleitet wird,überprüfen wir Ihre
.htaccess
-Datei. Ichbin mir ziemlich sicher,dass dies keinen Einfluss auf die Anmeldungbei wp-admin haben sollte,aber wir solltenestrotzdem korrigieren. Öffnen Sie.htaccess
und suchen Sienach demfolgenden Wordpress-Abschnitt. Fügen Siewordpress/
hinzu,wo Sieihn unten auf derRewriteBase
undZeilen von RewriteRule
:# BEGINNEN Sie WordPress & lt; IfModulemod_rewrite.c > RewriteEngine On RewriteBase/wordpress/ RewriteRule ^index \ .php $ - [L] RewriteCond% {REQUEST_FILENAME}! -F RewriteCond% {REQUEST_FILENAME}! -D RewriteRule./wordpress/index.php [L] & lt;/IfModule > # ENDE WordPress
Das Aktualisieren der Datei
.htaccess
istein weiterer Schritt,der ausgeführt werdenmuss,wenn Sieeine Site verschieben. In denmeisten Fällen wirkt sich diesjedochnur auf Ihre Permalinks aus und wird durch Klicken auf Speichernin der Dateibehoben Einstellungen -> Permalink-Seitein wp-admin. Hoffentlich hilftes Ihnen auch,esjetztmanuell zu aktualisieren ...It sounds like the site & home URLs are not set correctly.
You can set these in wp-admin from the Settings screen, although it sounds like you may not be able to get in there right now, so a workaround is to do the following:
- Edit your
wp-config.php
file - Search to see if
WP_HOME
orWP_SITEURL
is present in this file - If they are, change the address listed to
'http://localhost/wordpress/'
If
WP_HOME
andWP_SITEURL
aren't present in yourwp-config.php
file yet, add the following code to the file (anywhere before the comment that says 'that's all, stop editing'):define('WP_HOME', 'http://localhost/wordpress/'); define('WP_SITEURL', 'http://localhost/wordpress/');
If this is the correct address you've installed at, and everything has been moved across correctly, you should then be taken to your login screen when you visit http://localhost/wordpress/wp-admin.
EDIT:
If it's still not redirecting, let's check your
.htaccess
file. I'm fairly sure this shouldn't be impacting the log-in to wp-admin, but we should correct it nevertheless. Open.htaccess
and look for the Wordpress section similar to the below, and addwordpress/
where you see it below on theRewriteBase
andRewriteRule
lines:# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /wordpress/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /wordpress/index.php [L] </IfModule> # END WordPress
Updating the
.htaccess
file is another step that needs to be taken when you move a site, but in most cases it will only affect your Permalinks and is taken care of just by clicking Save on the Settings -> Permalink page in wp-admin. Hopefully updating it manually now might help you too...-
Ja,ichbewegemich richtig. Verschiebe alle Dinge zu localhost.Yes I move Correctly Move All things to localhost..
- 0
- 2016-04-25
- Abdul Ali Khan
-
define ('WP_HOME','http://localhost/wordpress/'); define ('WP_SITEURL','http://localhost/wordpress/');und dasfunktioniert auchnicht ....define('WP_HOME', 'http://localhost/wordpress/'); define('WP_SITEURL', 'http://localhost/wordpress/'); and this is also not working....
- 0
- 2016-04-25
- Abdul Ali Khan
-
Wenn Sie sagen,dassesnichtfunktioniert,haben Sie dasgleiche Problemmit der Umleitung zu http://localhost/dashboard/,wenn Sie versuchen,http://localhost/wordpress/wp-admin zubesuchen?When you say 'not working', do you mean you are getting the same issue with it redirecting to http://localhost/dashboard/ when you try to visit http://localhost/wordpress/wp-admin ?
- 0
- 2016-04-25
- Tim Malone
-
Ja,ichbekomme dasgleiche Problem.Yes i getting same issue.
- 0
- 2016-04-25
- Abdul Ali Khan
-
Wasistin Ihrer `.htaccess`-Datei?What's in your `.htaccess` file?
- 0
- 2016-04-25
- Tim Malone
-
In der .htaccess-Datei # BEGINNEN Sie WordPress
RewriteEngine On RewriteBase/ RewriteRule ^index \ .php $ - [L] RewriteCond% {REQUEST_FILENAME}! -F RewriteCond% {REQUEST_FILENAME}! -D RewriteRule./index.php [L] # ENDE WordPress In .htaccess file, # BEGIN WordPressRewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPress- 0
- 2016-04-26
- Abdul Ali Khan
-
Hmm okIch habe dem obigen Beitrageinige Anweisungen zum Aktualisieren von ".htaccess" hinzugefügt. Lassen Siemich wissen,wie dasgeht.Hmm ok. I've added some instructions for updating `.htaccess` to the post above, let me know how that goes.
- 0
- 2016-04-26
- Tim Malone
-
Yay!Ichbin froh,dass wir dort angekommen sind :) Bitte akzeptieren Sie die Frage,obesfür Siefunktioniert hat :)Yay! Glad we got there :) Pls accept the question if it worked for you :)
- 0
- 2016-04-26
- Tim Malone
-
Wie akzeptiereicheine Frage?how to i accept question
- 0
- 2016-04-26
- Abdul Ali Khan
-
Ups sorry,ich wollte die Antwort akzeptieren.Links vonmeiner Antwort sollte sichein Häkchenbefinden,das Sie drücken können.Hilft anderen zu zeigen,wasfunktioniert hat undgibt mir aucheinige Punkte;)Oops sorry I meant accept the answer. On the left of my answer there should be a tick that you can press. Helps show others what worked, and gives me some points too ;)
- 0
- 2016-04-26
- Tim Malone
Ich lade die Wordpress-Website vom Server auf Localhost hoch,wennich http://localhost/wordpress/wp-admin öffnea>es leitet zumir http://localhost/dashboard/
weiter