Can you try just to re-assign the header from Customizer?
Thread Starter
Thomas
(@stoetzman)
Thanks for your quick reply.
I’m not sure what you mean by ‘re-assign’ the header from Customizer? but I can’t change the header image in Customizer. If I activate the parent theme it works; if I use the child theme, it doesn’t.
I forgot to tell, when I move everything back to the sub-directory and change the index.php from “require (‘./joerg/wp-blog-header.php)” to “require (‘./wp-blog-header.php)” it works again.
That article you were using, actually only emulates the moving of the site, as site still would be in subdir, but WP would display paths as it would be in the main dir. Personally I moved site from subdir only once and I did it in a real way – moved all installation.
Do you want to try full move?
Thread Starter
Thomas
(@stoetzman)
I have done it many times and never had a problem. Maybe I need to create a new child theme but I’ll give your idea a go first. I’ll let you know.
Thanks for your help
Thread Starter
Thomas
(@stoetzman)
Hi Tomas,
I moved the entire installation into the root folder. It works now. Not sure what the problem was. I like the idea of having the installation in a sub-folder. I heard it’s more secure and I personally think it looks tidier. But that’s just me 😉
Thanks again for your support
My take is that WP by default expects to be in the root of public_html, so I think this way there are less possibilities to have some conflicts with plugins, but perhaps I’m not right.
For the security I use .htaccess in the wp-admin to filter by IP address of incoming connection, so only I would be able to dial-in:
AuthUserFile /dev/null
AuthGroupFile /dev/null
AuthName "Access Control"
AuthType Basic
order deny,allow
deny from all
# whitelist home IP address
allow from 00.000.000.000
Another measure – I like to relocate wp-config.php file to upper dir outside of public_html:
https://wordpress.stackexchange.com/a/74972
I also use bad behavior plugin to filter many bots:
https://wordpress.org/plugins/bad-behavior/
But of course these days there are many more good security plugins.
Thread Starter
Thomas
(@stoetzman)
Hey, thank you for the advice re. security. Very helpful 🙂