Re: Empty iframe page / what´s wrong?

Post a reply


This question is a means of preventing automated form submissions by spambots.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :| :mrgreen: :geek: :ugeek:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

If you wish to attach one or more files enter the details below.

Maximum filesize per attachment: 1 MiB.

Expand view Topic review: Re: Empty iframe page / what´s wrong?

Re: Empty iframe page / what´s wrong?

by axew3 » Thu May 26, 2016 6:24 pm

yes this is: when you install WordPress, .htaccess is auto created, path to directory is set about where it is installed. So, when you move your WP, you not only have to change path on htaccess, but also some db value to get it work ok on the new directory correctly.

Re: Empty iframe page / what´s wrong?

by Chillmaster » Thu May 26, 2016 5:44 am

How did it come to this error?

1. Originally WP was installed in a subdirectory.
2. When I moved the contents of the directory to another one, .htaccess was not automatically changed

These two points above led to errors when loading the "board" page.

So the .htaccess has to be checked, if the paths are correct.

Re: Empty iframe page / what´s wrong?

by axew3 » Wed May 25, 2016 3:22 pm

work like a charm now,
sorry i didn't understand immediately it!

Solved: Empty iframe page / what´s wrong?

by Chillmaster » Wed May 25, 2016 2:05 pm

THAT was the problem!!! Thank you for the very fast and good support.

Re: Empty iframe page / what´s wrong?

by Chillmaster » Wed May 25, 2016 2:02 pm

The .htaccess vom the root auf WP contains:

Code: Select all


# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wpress/index.php [L]
</IfModule>

# END WordPress
If I am the only one, where the integration fails - ..............

Well - do you see, what I see? The RewriteBase rule uses the wrong path.

I will change it to the correct path.

Re: Empty iframe page / what´s wrong?

by axew3 » Wed May 25, 2016 1:18 pm

what contain your wp root .htaccess file? Can you post his content? (surely not necessary as it will be the default one)

Top