Umleitung zur alten Domain nach der Migration
-
-
Ich habe diese Zeilenin wp-config.php hinzugefügt undes hatfunktioniert. `define ('WP_SITEURL','https://domain.com'); define ('WP_HOME','https://domain.com'); `I have added these lines in wp-config.php and it worked. `define('WP_SITEURL', 'https://domain.com'); define('WP_HOME', 'https://domain.com');`
- 2
- 2018-06-12
- Vignesh Chinnaiyan
-
Überprüfen Sie diesen Link,derfür Sie hilfreich sein könnte.https://www.phparticles.com/wordpress/replace-old-to-new-url-in-the-wordpress-database/Check this link which might be helpful to you. https://www.phparticles.com/wordpress/replace-old-to-new-url-in-the-wordpress-database/
- 0
- 2020-07-20
- Mr.Happy
-
6 Antworten
- Stimmen
-
- 2015-05-07
Mein Problemistbehoben. Ichposte dies als Antwort,damitjemand anderes davonprofitieren kann.
Mein Problem war,dass
siteurl
undhomeurl
nicht aktualisiert wurden. Daher habeichdefine('RELOCATE',true);
in myplatziertwp-config.php
Datei.Underneut versucht,auf die Website zuzugreifen,ging es zur richtigen URL,aber allecss
war weg. Dannging ich zuwp-admin
undes kam auch ohnecss
,aberich habeimmernoch versucht,mich anzumelden,aber dieses Mal habeich die richtige URL undwith css
Anmeldeseite,abernicht angemeldet. Dann habeich wieder versucht,mich anzumelden und dieses Mal habeichmicherfolgreich angemeldet. Dann habeichbeideurls
aus densettings
im Admin-Bereichgeändert.Danachmüssen Sie alle Browser-Cache-Dateien löschen,umjede Art von dauerhafter Umleitung zu löschen.
Ich hoffe,dies hilftjemand anderem,der sichmit demgleichen Problembefasst.
My issue is resolved, I am posting this as an answer so that someone else can benefit out of it.
My issue was,
siteurl
andhomeurl
were not updated, so I have placeddefine('RELOCATE',true);
in mywp-config.php
file. And again tried to access the website , it gone to the correct url but all thecss
was gone. Then I headed over towp-admin
and it also came with nocss
but still I tried to login but this time it has taken me to the correct url andwith css
login page but didn't logged in. Then Again I have attempted to login and this time I have logged in successfully. Then I have changed both theurls
fromsettings
in the admin panel.After this you must to delete all your browser cache files to delete anny kind of persistant redirection.
Hope this helps someone else dealing with the same problem.
-
Das hat den Trickfürmichgetan!That did the trick for me!
- 0
- 2018-11-29
- Avishai
-
Hallo!Ichfragemich,wo Sie diesin Ihrer Konfigurationsdatei hinzugefügt haben,weiliches anmehreren Stellenmit wenig Erfolg versuche.Hi! I'm wondering whereabouts in your config file you added this, because I'm trying at several places with little success.
- 0
- 2018-12-10
- QuestionerNo27
-
- 2015-08-29
Ich hatte dasgleiche Problem (funktioniertjetzteinwandfrei),hierist wasichgetan habe
Anstatt zu versuchen,auf das Admin-Panelmit Ihrer Site.com/wp-admin zuzugreifen,habeichesmit Ihrer Site.com/wp-login.php versucht undbin zum Admin-Panelmeinerneuen Sitegelangt.Dann habeich die Site-Domainin den allgemeinen Einstellungengeändert undjetztfunktionierteseinwandfrei.
I had the same problem (works fine now), here is what i done
instead of try to access to the admin panel whit yoursite.com/wp-admin i tried with yoursite.com/wp-login.php and it took me to the admin panel of my new site. Then I changed the site domain in general settings and now it works just fine.
-
Danke,ich konnte die Einstellungenbearbeiten undjetztfunktionieren dieinternen Seiteneinwandfrei,aber die Homepagefunktioniertnicht.Ich habe die Permalinksin der URLfür die Homepage aktualisiertThanks, I was able to edit the settings and now the internal pages are working just fine but the home page is not working. I have updated the permalinks n the url for the home page
- 0
- 2019-01-03
- viCky
-
- 2018-04-23
Führen Sie Folgendes aus,wenn Sie die Domäne wechseln:
UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'siteurl'; UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'home';
Run the following when you are changing domain:
UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'siteurl'; UPDATE wp_options SET option_value = 'https://yournew.domain' WHERE option_name = 'home';
-
Aberesisteindeutignichtgenug.Die alte Domain wird weiterhinin Posts,Seitenleisten,anderen Optionen usw.gespeichert.But it's clearly not enough. The old domain will be still stored in posts, sidebars, other options and so on...
- 0
- 2018-05-25
- Krzysiek Dróżdż
-
- 2017-02-26
Das Ändern des Felds wp_options hilftein wenig,abermanchmal verwenden Ihre Seiten,Beiträge und Plugins absolute Verweise auf Bilder und andere Dateien.In diesem Fallmüssen Sie diegesamte Datenbank aktualisieren.Daesin phpMyAdmin keineinfaches "Alleersetzen"gibt (es sei denn,Sieerstelleneine UPDATE-Anweisungin SQL),istes ambesten:
- Sichern Sie Ihregesamte Datenbank als SQL-Datei.(Ich würde die Option DROP TABLEeinschließen)
- Exportieren Sie Ihregesamte Datenbank als SQL-Datei (Textdatei) und öffnen Sie siein einem Texteditor.(Ich verwende Notepad ++ )
- Führen Sieein Alleersetzen aller Instanzen Ihrer alten Domain durch Ihreneue Domain aus.(d. h. olddomain.commit newdomain.com)
- Speichern Sie das aktualisierte SQL undimportieren Siees zurückin phpMyAdmin.
Voila!
Changing wp_options field will help a little, but sometimes your pages, posts and plugins will use absolute references to images and other files. In this case, you'll need to update the entire database. Since there's no easy "replace all" in phpMyAdmin (unless you construct an UPDATE statement in SQL), it's best to:
- Backup your entire database as an sql file. (I would include the DROP TABLE option)
- Export your entire database as a sql (text) file and open it in a text editor. (I use Notepad++)
- Do a Replace All of all instances of your old domain with your new domain. (i.e. olddomain.com with newdomain.com)
- Save the updated SQL and import it back into phpMyAdmin.
Voila!
-
Wenn dies das Problemnicht vollständig löst: 1. Suchen Siein wp-config.phpnach Referenzen Ihrer alten Domain 2. Benennen Sie Ihre .htaccess-Datei vorübergehend um 3. Verschieben Sie vorübergehend alle Sicherheits- oder Permalink-Plugin-Ordner zum UmschreibenIf this doesn't fully resolve the problem: 1. Check for any references of your old domain in wp-config.php 2. Temporarily rename your .htaccess file 3. Temporarily move any security or permalink rewrite plugin folders
- 0
- 2017-02-26
- Tone Williams
-
Ich denke,dasist die umfassendste Lösung.Ichfragemich,warumich dieerste Personbin,die abstimmtI think this is the most comprehensive solution. Wonder why I'm the first person upvoting
- 0
- 2018-07-25
- che-azeh
-
Diesist diebeste Lösung ... SIDENOTE: Wenn Sie Cloudflare verwenden,leeren Sie Ihren Cachein Ihrer Cloudflare-Konsole!This is the best solution... SIDENOTE: If you use cloudflare, clear your cache in your cloudflare console!
- 0
- 2020-05-18
- Evan Parsons
-
- 2016-09-20
Ändern Sie die URLin der Optionsdatenbankdateiin phpmyadmin.Bedeutet Ihrentatsächlichen URL-Link.Öffnen Sie dann die Seite wp-admin..mit dem Link wp-login.php .. Geben Sie Ihre Authentifizierungein und ändern Siein der allgemeinen Einstellung das URL-Verzeichniserneut undgreifen Sie auf die Website zu.
Change the URL in option database file in phpmyadmin. Means your actual URL link. Then open wp-admin page..with wp-login.php link.. Type your authentication then in general setting change the URL directory again and access the website.
-
- 2016-10-03
Umnur die Antwort von Reezppo zuerweitern,
Öffnen Sie PHPMyadminin Ihrem cPanel und klicken Sie dann auf die Datei wp_options. Dann sehen Sieeine Reihe von Feldern,die Sie ändern können,und Sie sehen die alte URL,die Sie dannmanuellin dieneue URL ändern können (an zwei Stellen)..Speichern Siees dann und kehren Sie zu yoursite.com/wp-login.php zurück. Sie sollten sich dann anmelden können,ohne umzuleiten.Denken Sie daran,dass Sie sichmit dem alten Wordpress-Benutzernamen und -Kennwort (dem von der ursprünglichen Site,die Sie verschoben haben) anmelden.
To just expand on Reezppo's answer,
Open PHPMyadmin in your cPanel and then click on the wp_options file and then you will see a bunch of fields that you can change and you will see the old url which you can then change manually to the new url (in two places). Then save it and go back to yoursite.com/wp-login.php and it should let you login without redirecting. Remember you will be logging in with the old Wordpress username and password (the one from the original site that you have moved).
Ich habeeine meiner Websites aufeine neue Domain verschoben. Im Folgendenist aufgeführt,wasichgetan habe.
phpmyadmin
Jetzt habeichfolgende Probleme:
wp-admin
wird auch zur alten Domain umgeleitet,wennich versuche,mydomain.com/wp-admin
Bitte helfen Sie,wenn Sie Ideen dazu haben. Jede Hilfe wäre sehr dankbar.