Hi there I copy all my stuff from my ftp to my local machine (mamp pro)
I export the MysQL database and replace the old URL to the new one
( http://rammler.de/demo/joos/ to http://bernd.local:8888/wordpress/joos/ )
SQL
UPDATE wp_options SET option_value =
replace(option_value, 'http://rammler.de/demo/joos/', 'http://bernd.local:8888/wordpress/joos/');
UPDATE wp_posts SET post_content =
replace(post_content, 'http://rammler.de/demo/joos/', 'http://bernd.local:8888/wordpress/joos/');
UPDATE wp_posts SET guid =
replace(guid, 'http://rammler.de/demo/joos/', 'http://bernd.local:8888/wordpress/joos/');
And I change the config.php
But now when I type the new URL http://bernd.local:8888/wordpress/joos/ – the browser jump to http://bernd.local/wordpress/joos/ and this didnt work, cause the port is missing.
How can i fix this?
Big THX, Bernd














