joergf
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to config SSLThanks, helped
Forum: Fixing WordPress
In reply to: Changed WP URL and now cant reach backendthe functions.php of my theme has many many lines. no idea where to insert it.
i deletd .htaccess now, to get access to backend. then changed url to http://site.com and re uploaded htaccess. in theory it should be like before. but still “no results”.
what could be the problem, before i changed the url it worked fine.
has wp changed something alse?Forum: Fixing WordPress
In reply to: Changed WP URL and now cant reach backendthanks for your answers.
when i add the first part, to rewrite with http://www.domain.com, nothing happens and it still shows the no results page.
wehen i try to restore, by adding the lines in wp-config, it shows me internal server error.
can i change exactly the files, that worpress changed, by hand?
Forum: Fixing WordPress
In reply to: Changed WP URL and now cant reach backendi think thats it, but no idea what to do.
it actually look like this
<Files wp-login.php>
AuthName “Admin”
AuthType Basic
AuthUserFile /home/mysite/www/wp-admin/css/.htpasswd
require valid-user
</Files><FilesMatch “(\.htaccess|\.htpasswd|wp-config\.php|liesmich\.html|readme\.html)”>
order deny,allow
deny from all
</FilesMatch># 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