A friend gave me half created site in wordpress in order to finish it. I've installed wamp, set apache port to 8080, import site db in phpmyadmin, and when i type in browser
I get this <a href="http://prntscr.com/cgw45i" rel="nofollow">http://prntscr.com/cgw45i</a> screen.
When I type
I get transfered to phpmyadmin page.
But when i type
(wordpress is folder name in wamp/www where site is located) ,
transforms into
, and blank page shows.
Tried to change
but nothing happens.
And when I install wordpress into new folder and run it, it works. Then I tried to copy files from wordpress folder to site folder(in site folder I've installed new wordpress, but still no success).
I've added
to wp-config.php , but than just transfers me to localhost/site/en...
It is just like that somewhere in code he try to assign his old address...
Code:
localhost:8080
I get this <a href="http://prntscr.com/cgw45i" rel="nofollow">http://prntscr.com/cgw45i</a> screen.
When I type
Code:
localhost:8080/phpmyadmin
But when i type
Code:
localhost:8080/wordpress
Code:
localhost:8080/wordpress
Code:
http://localhost/wordpress/en/home/
Tried to change
Code:
$suppress_localhost = false;
but nothing happens.
And when I install wordpress into new folder and run it, it works. Then I tried to copy files from wordpress folder to site folder(in site folder I've installed new wordpress, but still no success).
I've added
Code:
define('WP_HOME','localhost/site'); // also tried with localhost:8080/site
define('WP_SITEURL','localhost/site');
to wp-config.php , but than just transfers me to localhost/site/en...
It is just like that somewhere in code he try to assign his old address...