Images not showing on Wordpress

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: Images not showing on Wordpress

Re: Images not showing on Wordpress

by axew3 » Wed Jul 10, 2024 8:32 am

Re: Images not showing on Wordpress

by axew3 » Tue Jul 09, 2024 9:19 pm

I will try to cover in another post this aspect that may deserve a solution (maybe two very good solutions, but the complete one i should still finish to figure out).

Think that Peerke refer to the fact that for example, an user could copy the URL base64 encoded (WP page url) and go to share it, so it is true that:
1) if the template integration code will be removed, then those links will lead to nowhere.
2) if a BOT/SPIDER go to check it, because it has been pasted by someone into an external site, will be probably redirected to a NOT FOUND even while the template integration is used, because or will follow the redirect (but i do not know what bots/spiders do in those cases, normally they completely ignore javascript) or also just as the code is, since bots are excluded by run the overall_header js code (it start with <!-- IF not S_IS_BOT --><script>) then again, the BOT will not found any URL.
Of course bots access to the forum at the real url, and the js code do not affect, but if it is true that a ranking for a site is given also by how many external sites links his url, who know (i don't) if the bots will consider anyway to top up the ranking or simply ignore because the link url do not exist?

So which is the solution to fix this aspect, and since real phpBB urls cannot be used to replace the WP url?
Going to open another topic, because this as you see is away from the original question.
Please open new topics when there are new questions so it will be maybe useful also for someone else.

[EDITED 2 times]

Re: Images not showing on Wordpress

by Ezrael » Tue Jul 09, 2024 12:46 pm

Peerke wrote: Tue Jul 09, 2024 12:24 pm I have checked, but i allready removed the // in the overal header.

About the links; it's not very important, but if it can be the real URL it's better.
Okay strange because when I use the link to one of your topics the phpbb opens the link which was not iframed in WP, which is an indicator that the code doesn't redirect the forum to wp.

Example:

https://sjoerdhosting.nl/test/forums/?c ... BocD90PTk=

https://www.sjoerdhosting.nl/test/forum ... ic.php?t=9

About your concern's: The whole link isn't shown in most of the browsers anyway and you can use both links if the plugin is proper installed in case of you want to use the links on external pages.

Example

https://surferparadise.de/forum/?w3=dml ... E5NCNwMTk0

https://forum.surferparadise.de/viewtopic.php?t=152

Re: Images not showing on Wordpress

by Peerke » Tue Jul 09, 2024 12:24 pm

I have checked, but i allready removed the // in the overal header.

About the links; it's not very important, but if it can be the real URL it's better.

Re: Images not showing on Wordpress

by Ezrael » Tue Jul 09, 2024 12:01 pm

Ah you have already used the template integration. Look#s like you are using the shortcodes and not the iframe template integration.

Looks like you still use the following code in your overall_header.html

Code: Select all

//document.location.replace(href0);
Because your Forum won't redirect to WP at the moment.

To activate the redirection, you should replace the above mentioned code in the overall_header.html by

Code: Select all

document.location.replace(href0);
Edit: I don't understand your concern's about the link because with a proper installation of W3ALL Plugin, you can use both links, which will end in the correct Post, Topic,...

Re: Images not showing on Wordpress

by Peerke » Tue Jul 09, 2024 11:53 am

Where can i find the tutorial how to build the template integration?

I now have been used this one:
https://www.axew3.com/w3/2020/01/phpbb- ... iframe-v5/

Top