Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing Port number in WordPress blog

First of all I installed wamp server on port 8081 (Because there was IIS on 80). the word process was installed successfully and blog was running smoothly. Now I stopped the IIS and set the apache port to 80. But the application is redirecting to port 8081. (Also I copid the wordpress folder to my live domain, in there also it is redirecting to port 8081.) In which file, I need to change the port number? (I have already changed the port number in httpd.conf.)

Thank You in Advance. :)

like image 969
Keshab Avatar asked May 02 '13 09:05

Keshab


People also ask

How do I change my WordPress port number?

The NGINX server context use listen to set the TCP port number of a virtual host. To move WordPress from port 80 to 8080, the NGINX listen property needs to be set to 8080. Open your NGINX configuration file for your WordPress site and change the listen property to 8080. Saves your changes and reload NGINX.

What is WordPress default port?

By default, SMTP Server is given as smtp.floreo-agrotech.com; secured connection using SSL port 465 or TSL port 587.

How do I change the FTP port in WordPress?

By default, WordPress will use Port 22. To change it to your own port, for your hostname, you simply enter “hostname.com:port”. Easy stuff! That will tell the server that you want to use port 1234, no need to mess with any config files or anything.


2 Answers

I found same problem but I'm using xampp.

Scenario I have setup another new server using xampp in a different port (8090), then I transferred the existing WordPress to the new server but it was still keeping redirection to the original port.

Solutions Updated the option_value in the table wp_options in mysql to the new port. Here is an example updated query.

UPDATE `wordpress`.`wp_options`
SET
`option_value` = 'http://localhost:8090/wordpress'
WHERE `option_id` = 1 or `option_id` = 2;
like image 174
Khachornchit Songsaen Avatar answered Sep 17 '22 07:09

Khachornchit Songsaen


I had an issue where the original port I had specified when I installed WP was changed. I couldn't log into wp-admin because WP kept redirecting to the old port. I used phpMyAdmin to edit the wp_options table. Both the siteurl and home records used the old port. With phpMyAdmin, you can edit cells directly without having to export/import. I thought I'd add this as an answer just in case it helps someone else down the road.

Or use a SQL like this:

update wp_options SET option_value = 'http://your-domain/wordpress:new-port' where option_id = 1 and option_name = 'siteurl';

update wp_options SET option_value = 'http://your-domain:new-port/wordpress' where option_id = 2 and option_name = 'home';
like image 32
Michael Sobczak Avatar answered Sep 19 '22 07:09

Michael Sobczak