Thank you very much for the very fast reply. the files and folders belong to "www-data" (the user where the webserver service is running with). File permissions are 644 and folder permissions 755.
Is that correct?
Re: Empty iframe page / what´s wrong?
-
- User w
- Posts: 10
- Joined: Mon May 23, 2016 8:22 am
- axew3
- w3all User
- Posts: 2883
- Joined: Fri Jan 22, 2016 5:15 pm
- Location: Italy
- Contact:
Re: Empty iframe page / what´s wrong?
644 on page-board.php should be ok, but try to give 755 to page-board.php, look if work .. if not revert to 644 and let think what evil it can do
-
- User w
- Posts: 10
- Joined: Mon May 23, 2016 8:22 am
Re: Empty iframe page / what´s wrong?
Sorry, I have set the permission to 755. Didn´t change anything. Here is the screenshot:
- Attachments
-
- page-board_2.png (11.04 KiB) Viewed 4123 times
- axew3
- w3all User
- Posts: 2883
- Joined: Fri Jan 22, 2016 5:15 pm
- Location: Italy
- Contact:
Re: Empty iframe page / what´s wrong?
looking to the result: the page-board.php isn't find out into your WordPress twentysixteen template folder. If it exist inside this folder, permissions where the only one thing can be wrong to me.
Your page board in WordPress, do not load the page-board.php. It is very strange ...
p.s i see there is a bug on js iframe, if i move mouse over attachment post bit, the page scroll top. It will be fixed ...
while returning to your problem ... at moment
Your page board in WordPress, do not load the page-board.php. It is very strange ...
p.s i see there is a bug on js iframe, if i move mouse over attachment post bit, the page scroll top. It will be fixed ...
while returning to your problem ... at moment
- axew3
- w3all User
- Posts: 2883
- Joined: Fri Jan 22, 2016 5:15 pm
- Location: Italy
- Contact:
Re: Empty iframe page / what´s wrong?
what contain your wp root .htaccess file? Can you post his content? (surely not necessary as it will be the default one)
-
- User w
- Posts: 10
- Joined: Mon May 23, 2016 8:22 am
Re: Empty iframe page / what´s wrong?
The .htaccess vom the root auf WP contains:
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.
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
Well - do you see, what I see? The RewriteBase rule uses the wrong path.
I will change it to the correct path.