krielldesigns
Member
Posted 1 year ago #
Help!
The site is at http://www.mariescountrygetaway.com. The site is transferred over in theory - all the files have been moved over and the style seems to be there, but none of the pages are there (and I can't see them when I log into admin...)...
Apparently, .htaaccess etc. will not transfer over, even though I've changed the permissions... is this on the host's end?
Any thoughts??? Thank you for your time!
Did you export your database from the old host and import it at the new? Database is what stores all the contents.
krielldesigns
Member
Posted 1 year ago #
Yes I did thank you - I think it must be the permission thing that they're not letting me change (from the host side) because it works when I turn off "pretty" permalinks and just use the default.. I've tried changing htaccess to allow different kinds of writing, but is there another directory that I could try to change? The hta file is still not being written to...
Well, if your .htaccess is not writable by wordpress then you could try do it manually.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
krielldesigns
Member
Posted 1 year ago #
Thanks, I tried that too... but it won't let me save it.. it remains blank.