Recent content by GPA-R

  1. G

    Why are you running an EOL version of PHP?

    Currently Running on 7.4.18 FPM. There's absolutely no reason for me to upgrade to 8. Actually I rarely upgrade a stable/secure/supported version for anything newer. In some environments stability and security are more important than "shiny" new features.
  2. G

    As designed Images in activity summary email shown as broken

    Hi, Images/attachments included at the beginning of a post/message (thus included in the summary email) are shown as broken in email clients due to not being accessible by guests. Maybe image tags should be stripped in the summary email.
  3. G

    XF 2.1 Threads are pending approval but still visible to all

    Hi again, The problem still persists on the latest version. ( currently running 2.2.4 ) Posts flagged by Akismet and pending approval are still published. Is this the expected behaviour..?
  4. G

    XF 2.1 Template to edit for rss post body?

    Bump! I have the same question. I thought there was a template for the this that could be changed but can't seem to find anything. Is there?
  5. G

    php74 preloading configs

    Well, you can always try it on a sandbox :) If something is wrong you will get an error in your logs but it shouldn't break anything! The preloading will just not work. If you don't have opcache enabled just enable it and you should be OK. You can live without preloading :P
  6. G

    php74 preloading configs

    Yes the files need to be manually specified. Usually you create an autoload file which reads all the relevant PHP files and adds them in the preloading cache. Unfortunately I don't know exactly which XF file you would need to add. I assume whatever is under the src folder but I might be wrong.
  7. G

    php74 preloading configs

    Normally, whenever a PHP script needs to be run/executed it is being loaded and parsed. As you understand, this takes time and processing power. opcache caches a precompiled version of a PHP file so only the first time that is run is loaded and parsed. Then in all subsequent requests the code is...
  8. G

    php74 preloading configs

    To check if opcache is working in general, just run var_dump(opcache_get_status()); If it returns false it's not enabled/working. If it returns an array with information then it's working.
  9. G

    php74 preloading configs

    Memcached is irrelevant to opcache. Memcached provides in memory database caching whereas opcache provides caching for PHP files. Opcache (as well as memcached) can significantly improve site performance and it is highly recommended. Preloading introduced in 7.4 enhances the existing opcache.
  10. G

    XenCentral Multisite System 2 [Paid]

    I have the same issue with the sitemap as others have pointed out. For sites added after the latest update I get "Invalid sitemap file". Also the error log is bombarded every day with thousands of records of ErrorException: [E_NOTICE] Trying to get property 'content_type' of non-object...
  11. G

    XenCentral Multisite System 2 [Paid]

    Hi, Yes the property is there, the input box however is empty even though there is a value set. The value can be seen in the DB and it is also rendered correctly on the front-end. Does it matter that it's not UA-XXXX and it's a TagManager Tag instead (GTM-XXXX)?
  12. G

    XenCentral Multisite System 2 [Paid]

    Hi, Is there any known issue with the Google Analytics web property ID? It is not shown in the admin dashboard when editing a site however I can see it in the options of the site in the DB. Running XC 2.1.0 Release Candidate 2
  13. G

    XF 2.1 How Can i add nofollow for all members pages xenforo 2.1

    For what it's worth, I had noindex on member pages and also Disallow: /members/ in robots.txt That resulted in member pages being indexed because Google was blocked by robots.txt and couldn't reach those pages to see that they had noindex tag. However it was following links to member pages from...
  14. G

    XF 2.2 Stop BoardTitle from being appended in all pages

    Hello, That's exactly what I did but apparently it is not being applied to my child-theme as it seems to be using a different format. I guess I'll have to use that one as search in replacement.
  15. G

    XF 2.2 Stop BoardTitle from being appended in all pages

    Hi, By default XF appends the board title in all pages' title. How can this be removed? Any template modification of <title><xf:title formatter="%s | %s" fallback="{$xf.options.boardTitle}" page="{$pageNumber}" /></title> doesn't seem to make any difference. Trying to avoid editing the...
Top Bottom