Skip to content

Flarum - WordPress Journey

WordPress
59 2 17.6k 1
  • @Sala said in Flarum - WordPress Journey:

    Bdw when I use security headers, I noticed the bbcodes icons in editor for answering questions disappear

    Can you elaborate a bit on this? Not sure what you mean.

    @phenomlab same here 30tb I also thought I had lapses in technology, maybe new things came without my notice 😂

    The bbcodes icons
    https://i.postimg.cc/R0YNnrGK/Screenshot-20221209-162710.png

    So they show when creating a new topic, but not showing on answering on already created topic.

    It doesn’t hurt but it’s caused by adding that security headers module. Anyway to rectify the cause?

  • @phenomlab same here 30tb I also thought I had lapses in technology, maybe new things came without my notice 😂

    The bbcodes icons
    https://i.postimg.cc/R0YNnrGK/Screenshot-20221209-162710.png

    So they show when creating a new topic, but not showing on answering on already created topic.

    It doesn’t hurt but it’s caused by adding that security headers module. Anyway to rectify the cause?

    @Sala Can you show me the output from the console when responding to a message? My personal thoughts are that this could be CORS related, but I need to verify that first.

  • @Sala Can you show me the output from the console when responding to a message? My personal thoughts are that this could be CORS related, but I need to verify that first.

    @phenomlab I knew you would love this, security part. 🥳 I’ve forwarded to you a test user.

  • @phenomlab I knew you would love this, security part. 🥳 I’ve forwarded to you a test user.

    @Sala It the BBCodes show on a new topic as below

    4440ddfa-bcdc-415c-820a-4abe1c5e5b39-image.png

    On response to a question, the same DIV is there but not populated

    4f73ccb0-8991-49c1-8be2-a580a3f3732d-image.png

    This is almost certainly a CORS issue, but I’ll need to see the headers you’ve applied to comment further, or make suggestions.

  • @Sala It the BBCodes show on a new topic as below

    4440ddfa-bcdc-415c-820a-4abe1c5e5b39-image.png

    On response to a question, the same DIV is there but not populated

    4f73ccb0-8991-49c1-8be2-a580a3f3732d-image.png

    This is almost certainly a CORS issue, but I’ll need to see the headers you’ve applied to comment further, or make suggestions.

    @phenomlab this one is going to be hard, I put it on pause

  • @phenomlab this one is going to be hard, I put it on pause

    @Sala not sure what you mean? I need the headers you specified in your .htaccess file (I’m assuming Apache here).

  • @Sala not sure what you mean? I need the headers you specified in your .htaccess file (I’m assuming Apache here).

    @phenomlab I have forwarded to you the headers found in htaccess

  • @phenomlab I have forwarded to you the headers found in htaccess

    @Sala thanks. I’ve checked the headers and again and I can’t see anything in the specific code I provided that would cause the bbcode to not display.

    Does it work if you remove all the headers? If this is the case, my recommendation would be to enable them one by one and find out which one actually causes the issue. Once we know which one it is, we can then modify it to allow the display of bbcode.

    It just seems odd to me that everything works fine on a new post, but not on reply. This would tell me they it’s not the headers, but I could be wrong. You may want to try disabling wp-rocket to see if that resolves the issue rather than removing the headers.

  • @Sala thanks. I’ve checked the headers and again and I can’t see anything in the specific code I provided that would cause the bbcode to not display.

    Does it work if you remove all the headers? If this is the case, my recommendation would be to enable them one by one and find out which one actually causes the issue. Once we know which one it is, we can then modify it to allow the display of bbcode.

    It just seems odd to me that everything works fine on a new post, but not on reply. This would tell me they it’s not the headers, but I could be wrong. You may want to try disabling wp-rocket to see if that resolves the issue rather than removing the headers.

    @phenomlab yesterday I fix 2 bugs on just at the time you needed an answer for the headers, I immediately knew this one needed a test of one by one bcoz it could be the Defer for Js .

  • @phenomlab yesterday I fix 2 bugs on just at the time you needed an answer for the headers, I immediately knew this one needed a test of one by one bcoz it could be the Defer for Js .

    @Sala yes, deferring JS can have a negative effect on functionality. For speed reasons, you typically place JS in the footer rather than the header, but this then means it’s not executed in time and in the DOM when needed.

    Another potentially damaging feature is minifying JS to reduce it’s size. Whilst wp-rocket offers several mechanisms to make the site load faster, you’d need to test each one of these settings to ensure it doesn’t negatively impact the site.

  • @Sala yes, deferring JS can have a negative effect on functionality. For speed reasons, you typically place JS in the footer rather than the header, but this then means it’s not executed in time and in the DOM when needed.

    Another potentially damaging feature is minifying JS to reduce it’s size. Whilst wp-rocket offers several mechanisms to make the site load faster, you’d need to test each one of these settings to ensure it doesn’t negatively impact the site.

    @phenomlab Hurray!
    We have found the line that blocked the icons, it was this one:-

    Header set Permissions-Policy "geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()" 
    

    Now it’s your part to come up with another config line 🙏

  • @phenomlab Hurray!
    We have found the line that blocked the icons, it was this one:-

    Header set Permissions-Policy "geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()" 
    

    Now it’s your part to come up with another config line 🙏

    It’s solved
    Demoted the above line and re- modified the

    Header set Feature-Policy "geolocation 'self' https://sopriza.com/" 
    

    To

    Permissions-Policy: geolocation=(self "https://sopriza.com") 
    

    A+

  • It’s solved
    Demoted the above line and re- modified the

    Header set Feature-Policy "geolocation 'self' https://sopriza.com/" 
    

    To

    Permissions-Policy: geolocation=(self "https://sopriza.com") 
    

    A+

    @Sala yes, that will resolve the status rating, but that header doesn’t have any impact against JS loading.

    Very odd.

  • @Sala yes, that will resolve the status rating, but that header doesn’t have any impact against JS loading.

    Very odd.

    @phenomlab I’ll be happy if you can help me with the Js link which was causing that, i will be able to exclude it and stop any future problems

  • @phenomlab I’ll be happy if you can help me with the Js link which was causing that, i will be able to exclude it and stop any future problems

    @Sala Sorry - which JS link ?

  • @Sala Sorry - which JS link ?

    @phenomlab the one which enables the bbcode icons to populate

  • @phenomlab the one which enables the bbcode icons to populate

    @Sala I will likely need admin access to your site for this.


Related Topics
  • Rotating Star Effect

    Solved Let's Build It wordpress css
    17
    12 Votes
    17 Posts
    4k Views
    @phenomlab thanks a lot for these, both of the below are awesome! https://codepen.io/bennettfeely/pen/vYLmYJz https://codepen.io/C-L-the-selector/pen/MWZbWBo
  • WP / Woocommerce Mystery

    Solved Configure wordpress
    23
    1
    12 Votes
    23 Posts
    8k Views
    @Panda said in WP / Woocommerce Mystery: Just back to my other question, have you ever used Shopify? It insists on a templating language to use any custom js. Not personally as never had any need, however, I do know that it uses Liquid for JS templating. It’s written in Ruby and is used to generate dynamic content on shop fronts. There’s zero reason as to why it wouldn’t work with data supplied by 3rd party API’s, although WordPress code won’t natively work for obvious reasons, and as such, this code would need to be re-written. The JS part will likely work with minor modification, but not the PHP file in it’s current form.
  • 3 Votes
    5 Posts
    2k Views
    @crazycells I know that Flarum has (or had) an extension that lists the users. That wasn’t even in the core - as basic as that is.
  • Flarum SEO is worst and i still want to use it 😭

    General flarum
    15
    6 Votes
    15 Posts
    4k Views
    @Hari said in Flarum SEO is worst and i still want to use it : Flarum is coded in such a way where it tells spiders not to crawl any internal links by adding nofollow tag. How stupid this is Yes, I agree this doesn’t make any sense. If you compare to WordPress, then (via a plugin of course) you can set the attribute as you wish. It doesn’t make any sense to take a blanket approach. I guess I unerstand why they are doing this, but it’s not an optimum SEO methodology. @Hari said in Flarum SEO is worst and i still want to use it : For few minutes i thought i should register a domain called flarumSEOsucks.com They’d probably sue you for using the Flarum name in a URL
  • how to change flarum configuration from apache to nginx?

    Solved Configure flarum
    3
    0 Votes
    3 Posts
    1k Views
    See https://sudonix.com/topic/226/issues-getting-flarum-to-work-on-new-host/28?_=1645013723672
  • move out from flarum to wordpress

    WordPress wordpress flarum migration
    87
    52 Votes
    87 Posts
    35k Views
    @Hari Glad to see this went so well, and that you’ve finally departed the Flarum ecosystem
  • WordPress installation

    WordPress wordpress
    6
    0 Votes
    6 Posts
    2k Views
    @phenomlab said in WordPress installation: @jac that plugin is for single sign on between WordPress and NodeBB. The plugin you really need is this Brilliant, that does look good!
  • WordPress & NodeBB

    Solved WordPress
    6
    0 Votes
    6 Posts
    2k Views
    @jac That won’t matter. You just redirect at nginx or apache level and it’ll work. The generally accepted standard though is to use a subdomain.