wamp - Localhost install of wordpress on zend server, style is absent -
here's did:
- installed wordpress db table .sql backup file.
- installed plugins , themes site.
- made site url , wordpress url localhost
- changed url in wp_options table localhost.
but site displays raw html, no styles whatsoever.
*i have read documentation on permalinks. did recommended using wamp. didn't either, don't see wordpress bar on site @ top of page.
try this in wp-config.php
:
update_option('siteurl','http://localhost'); update_option('home','http://localhost');
or if want more temporary solution ( doesn't disturb database values ), put in wp-config.php
:
define('wp_home','http://localhost'); define('wp_siteurl','http://localhost');
Comments
Post a Comment