• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

change wordpress url in plesk parallels

Noturns

Regular Pleskian
I recently changed the main domain url from website.com to www.website.com,
this resulted in 404-errors when i navigated to wordpress

I found a solution on the internet and updated the records with phpmyadmin
http://themergency.com/generators/wordpress-site-url-migration-generator/

When i click on Login at the the WordPress Installations i'm still being navigated to the old website url. It supprices me that there is no option to change it on Plesk level after wordpress is deployed.

How can i change or update the wordpress path once it is installed in Plesk?

I'm using CentOS6.2, maybe there is a config file or an database for Plesk?
 
Last edited:
Solved! as i just discovered myself in the Wordpress Installations panel - just click on refresh and the url automatically updates :)
 
Hi Noturns,

some basic wordpress configurations are not only set in the database, but as well in the wordpress configuration file: /wp-config.php

A setting as "define( 'DOMAIN_CURRENT_SITE', 'YOURDOMAIN.COM' );" could be modified manually to "define( 'DOMAIN_CURRENT_SITE', 'WWW.YOURDOMAIN.COM' );"

As well, if you are just editing anyway, you could consider raising the wordpress standards, with some addiotnal entries like:
PHP:
define( 'WP_MEMORY_LIMIT', '96M' );
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
 
Back
Top