3

I have apache running on port 1024 and WAMP Server is running fine. But when I try to run Wordpress at localhost:1024 the install wont work.

I have tried everything I can think of but I cannot get it running. Anyone had this problem?

Thanks Daniel.

user2043488
  • 41
  • 1
  • 2

2 Answers2

1

You must edit the file wp-config.php and change the following:

define('WP_HOME','http://localhost:1024/');
define('WP_SITEURL','http://localhost:1024/');
Simon Rigét
  • 2,211
  • 3
  • 26
  • 28
0

Wordpress will natively run on any port apache runs on (I use various ports for test servers daily)

Make an index.php with something like

<?php phpinfo(); ?>

And test if you can display the page. If the page doesn't display then your apache settings are misconfigured. (Check /etc/apache2/sites-available/default)

Richard Denton
  • 774
  • 1
  • 5
  • 13