mac sunucusunda mamp kullanarak yerel sunucumda barındırma


0

Yerel olarak bir WordPress sitesini MAMP sunucumda barındırmak istiyorum. İzlemiş olduğum prosedür bu: 1.Tekrarcı eklentisini siteye yerleştirdi ve site paketini yarattı. 2. Yükleyiciyi ve arşiv dosyasını ve installer.php dosyasını paketten indirdi. 3. MAMP sunucusunu kullanarak veritabanını phpmyadmin içinde hazırladım. 4. Arşiv dosyasını ve yükleyiciyi MAMP / Applications / htdocs içindeki bir klasöre yerleştirin. 5. Localhost / foldername / installer.php dosyasını açmaya çalıştım.

Tüm bu adımları takip ettikten sonra hatayı alıp yerel olarak çalıştıramazsınız. wordpress zaten yerel sunucuda kurulu. Bu soruna bir çözüm önerin.


1
"Hata alıyorum" derken hangi hata olur?
ssnobody

404 hatası bulunamadı
Vishwanath Singh

404 bulunamadı, DocumentRoot / foldername / installer.php dosyasını arıyorum ve bulamıyor. DocumentRoot'un doğru yere işaret ettiğini kontrol ederim.
ssnobody

Yanıtlar:


0

Ekstra bir eklenti kullanmadan bir siteyi localhost'a alternatif bir şekilde kopyalayabilirsiniz.

Adımlar:

1. Export the database using phpmyadmin interface and save that as a .sql file.

2. Extract wordpress.zip file downloaded from wordpress.org to MAMP/htdocs.

3. Copy wp-content folder and wp_config.php from old site and Paste it under new wordpress folder.(Replace the files)

4. Create a database in new host with same database name and import the .sql file.

5. Goto localhost:8888 in your browser. (Before this, you need to change document root to this wordpress folder by using preferences in MAMP) You will get your site.

Notlar:

If you find any old urls in your site, (Broken urls to media items) You can do a search and replace in database using the following sql queries. Do this one by one inside your wordpress database.

UPDATE wp_posts SET guid = replace(guid, 'http://old-site','http://new-site');

UPDATE wp_posts SET post_content = replace(post_content, 'http://old-site', 'new-site');

UPDATE wp_postmeta SET meta_value = replace(meta_value,'old-site','new-site');
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.