Congratulations!

[Valid RSS] This is a valid RSS feed.

Recommendations

This feed is valid, but interoperability with the widest range of feed readers could be improved by implementing the following recommendations.

Source: http://xenforo.com/community/forums/-/index.rss

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/">
  3.  <channel>
  4.    <title>XenForo community</title>
  5.    <description>Forum software by XenForo</description>
  6.    <pubDate>Fri, 19 Apr 2024 12:28:05 +0000</pubDate>
  7.    <lastBuildDate>Fri, 19 Apr 2024 12:28:05 +0000</lastBuildDate>
  8.    <generator>XenForo community</generator>
  9.    <link>https://xenforo.com/community/</link>
  10.    <atom:link rel="self" type="application/rss+xml" href="https://xenforo.com/community/forums/-/index.rss"/>
  11.    <item>
  12.      <title>[duplicate] SMTP with AWS SES not working: wrong version number</title>
  13.      <pubDate>Fri, 19 Apr 2024 12:20:00 +0000</pubDate>
  14.      <link>https://xenforo.com/community/threads/duplicate-smtp-with-aws-ses-not-working-wrong-version-number.220956/</link>
  15.      <guid isPermaLink="false">220956</guid>
  16.      <author>invalid@example.com (Marcus)</author>
  17.      <category domain="https://xenforo.com/community/forums/bugs/"><![CDATA[Bug reports]]></category>
  18.      <dc:creator>Marcus</dc:creator>
  19.      <content:encoded><![CDATA[<div class="bbWrapper"><blockquote data-attributes="" data-quote="" data-source=""
  20. class="bbCodeBlock bbCodeBlock--expandable bbCodeBlock--quote js-expandWatch">
  21. <div class="bbCodeBlock-content">
  22. <div class="bbCodeBlock-expandContent js-expandContent ">
  23. [*]Symfony\Component\Mailer\Exception\TransportException: Email to from failed: Connection could not be established with host &quot;ssl://email-smtp.eu-central-1.amazonaws.com:587&quot;: stream_socket_client(): SSL operation failed with code 1. OpenSSL Error messages: error:0A00010B:SSL routines::wrong version number<br />
  24. [*]src/vendor/symfony/mailer/Transport/Smtp/Stream/SocketStream.php:154
  25. </div>
  26. <div class="bbCodeBlock-expandLink js-expandLink"><a role="button" tabindex="0">Click to expand...</a></div>
  27. </div>
  28. </blockquote>
  29.  
  30.  
  31.  
  32. <blockquote data-attributes="" data-quote="" data-source=""
  33. class="bbCodeBlock bbCodeBlock--expandable bbCodeBlock--quote js-expandWatch">
  34. <div class="bbCodeBlock-content">
  35. <div class="bbCodeBlock-expandContent js-expandContent ">
  36. Stack-Trace<br />
  37. #0 [internal function]...
  38. </div>
  39. <div class="bbCodeBlock-expandLink js-expandLink"><a role="button" tabindex="0">Click to expand...</a></div>
  40. </div>
  41. </blockquote><br />
  42. <a href="https://xenforo.com/community/threads/duplicate-smtp-with-aws-ses-not-working-wrong-version-number.220956/" class="link link--internal">Read more</a></div>]]></content:encoded>
  43.      <slash:comments>8</slash:comments>
  44.    </item>
  45.    <item>
  46.      <title>Reliable type hinting when using AbstractCollection/ArrayCollection/FinderCollection collections</title>
  47.      <pubDate>Fri, 19 Apr 2024 12:01:48 +0000</pubDate>
  48.      <link>https://xenforo.com/community/threads/reliable-type-hinting-when-using-abstractcollection-arraycollection-findercollection-collections.220909/</link>
  49.      <guid isPermaLink="false">220909</guid>
  50.      <author>invalid@example.com (Xon)</author>
  51.      <category domain="https://xenforo.com/community/forums/resolved-bugs/"><![CDATA[Resolved bug reports]]></category>
  52.      <dc:creator>Xon</dc:creator>
  53.      <content:encoded><![CDATA[<div class="bbWrapper">These collection classes result in entity property type hints of;<br />
  54.  
  55.  
  56.  
  57. <div class="bbCodeBlock bbCodeBlock--screenLimited bbCodeBlock--code">
  58. <div class="bbCodeBlock-title">
  59. PHP:
  60. </div>
  61. <div class="bbCodeBlock-content" dir="ltr">
  62. <pre class="bbCodeCode" dir="ltr" data-xf-init="code-block" data-lang="php"><code>/**
  63.  * @property-read \MyAddon\Entity\Foo[]|\XF\Mvc\Entity\AbstractCollection
  64.  */</code></pre>
  65. </div>
  66. </div>This has edge cases where the exact return type doesn&#039;t really match and iterating can lose the proper type hint. Especially if calling methods on <code class="bbCodeInline">AbstractCollection</code><br />
  67. <br />
  68. It would be nice if this was;<br />
  69.  
  70.  
  71.  
  72. <div class="bbCodeBlock bbCodeBlock--screenLimited bbCodeBlock--code">
  73. <div class="bbCodeBlock-title">
  74. PHP:
  75. </div>
  76. <div class="bbCodeBlock-content" dir="ltr">
  77. <pre class="bbCodeCode" dir="ltr" data-xf-init="code-block" data-lang="php"><code>/**
  78.  * @property-read \XF\Mvc\Entity\AbstractCollection&lt;\MyAddon\Entity\Foo&gt;
  79.  */</code></pre>
  80. </div>
  81. </div><br />
  82. Thankfully via phpdocs we can do this:<br />
  83. <br />
  84.  
  85.  
  86.  
  87. <div class="bbCodeBlock bbCodeBlock--screenLimited bbCodeBlock--code">
  88. <div class="bbCodeBlock-title">
  89. PHP:
  90. </div>
  91. <div class="bbCodeBlock-content" dir="ltr">
  92. <pre class="bbCodeCode" dir="ltr" data-xf-init="code-block" data-lang="php"><code>/**...</code></pre>
  93. </div>
  94. </div><br />
  95. <a href="https://xenforo.com/community/threads/reliable-type-hinting-when-using-abstractcollection-arraycollection-findercollection-collections.220909/" class="link link--internal">Read more</a></div>]]></content:encoded>
  96.      <slash:comments>3</slash:comments>
  97.    </item>
  98.    <item>
  99.      <title>Passkey removal does not invalidate existing sessions</title>
  100.      <pubDate>Fri, 19 Apr 2024 11:26:12 +0000</pubDate>
  101.      <link>https://xenforo.com/community/threads/passkey-removal-does-not-invalidate-existing-sessions.220969/</link>
  102.      <guid isPermaLink="false">220969</guid>
  103.      <author>invalid@example.com (Kirby)</author>
  104.      <category domain="https://xenforo.com/community/forums/bugs/"><![CDATA[Bug reports]]></category>
  105.      <dc:creator>Kirby</dc:creator>
  106.      <content:encoded><![CDATA[<div class="bbWrapper"><b>Steps to reproduce</b><br />
  107. <ol>
  108. <li data-xf-list-type="ol">Create a new account</li>
  109. <li data-xf-list-type="ol">Add a Passkey in browser context A</li>
  110. <li data-xf-list-type="ol">Log into the account with the passkey in another browser context (B)</li>
  111. <li data-xf-list-type="ol">Log into the account with username and password in a third browser context (C) using a backup code as TFA</li>
  112. <li data-xf-list-type="ol">Remove the Passkey from browser context A</li>
  113. <li data-xf-list-type="ol">Check session status in browser context B and C</li>
  114. <li data-xf-list-type="ol">Add another passkey in browser context A</li>
  115. <li data-xf-list-type="ol">Log into the account with the Passkey in browser context B</li>
  116. <li data-xf-list-type="ol">Change the...</li>
  117. </ol><br />
  118. <a href="https://xenforo.com/community/threads/passkey-removal-does-not-invalidate-existing-sessions.220969/" class="link link--internal">Read more</a></div>]]></content:encoded>
  119.      <slash:comments>2</slash:comments>
  120.    </item>
  121.    <item>
  122.      <title>[XenConcept] Quiz Manager [Paid]</title>
  123.      <pubDate>Fri, 19 Apr 2024 10:40:42 +0000</pubDate>
  124.      <link>https://xenforo.com/community/threads/xenconcept-quiz-manager-paid.219013/</link>
  125.      <guid isPermaLink="false">219013</guid>
  126.      <author>invalid@example.com (XenConcept)</author>
  127.      <category domain="https://xenforo.com/community/forums/add-on-releases-2-x.95/"><![CDATA[Add-on releases [2.x]]]></category>
  128.      <dc:creator>XenConcept</dc:creator>
  129.      <content:encoded><![CDATA[<div class="bbWrapper">XenConcept submitted a new resource:<br />
  130. <br />
  131. <a href="https://xenforo.com/community/resources/quiz-manager.9345/" class="link link--internal">Quiz manager</a> - Empower Your Community with Tests - The Ultimate Quiz Manager for XenForo<br />
  132. <br />
  133.  
  134.  
  135.  
  136.  
  137. <blockquote data-attributes="" data-quote="" data-source=""
  138. class="bbCodeBlock bbCodeBlock--expandable bbCodeBlock--quote js-expandWatch">
  139. <div class="bbCodeBlock-content">
  140. <div class="bbCodeBlock-expandContent js-expandContent ">
  141. The Quiz Add-on for your XenForo forum transforms your site into a more attractive platform by providing a fun and interactive experience for your users. This add-on enables users to test their knowledge, enjoy learning, and engage in friendly competition with others. It increases on-site engagement by capturing participants&#039; interest...
  142. </div>
  143. <div class="bbCodeBlock-expandLink js-expandLink"><a role="button" tabindex="0">Click to expand...</a></div>
  144. </div>
  145. </blockquote><br />
  146. <a href="https://xenforo.com/community/threads/xenconcept-quiz-manager-paid.219013/" class="link link--internal">Read more</a></div>]]></content:encoded>
  147.      <slash:comments>38</slash:comments>
  148.    </item>
  149.    <item>
  150.      <title>Less templates appear to be in strict maths mode (ie more parentheses)</title>
  151.      <pubDate>Fri, 19 Apr 2024 10:27:42 +0000</pubDate>
  152.      <link>https://xenforo.com/community/threads/less-templates-appear-to-be-in-strict-maths-mode-ie-more-parentheses.220975/</link>
  153.      <guid isPermaLink="false">220975</guid>
  154.      <author>invalid@example.com (Xon)</author>
  155.      <category domain="https://xenforo.com/community/forums/bugs/"><![CDATA[Bug reports]]></category>
  156.      <dc:creator>Xon</dc:creator>
  157.      <content:encoded><![CDATA[<div class="bbWrapper"><blockquote data-attributes="member: 397" data-quote="pegasus" data-source="post: 1674345"
  158. class="bbCodeBlock bbCodeBlock--expandable bbCodeBlock--quote js-expandWatch">
  159. <div class="bbCodeBlock-title">
  160. <a href="/community/goto/post?id=1674345"
  161. class="bbCodeBlock-sourceJump"
  162. rel="nofollow"
  163. data-xf-click="attribution"
  164. data-content-selector="#post-1674345">pegasus said:</a>
  165. </div>
  166. <div class="bbCodeBlock-content">
  167. <div class="bbCodeBlock-expandContent js-expandContent ">
  168. Math expressions in .less templates seem to now require being wrapped by parentheses e.g.<br />
  169.  
  170.  
  171.  
  172. <div class="bbCodeBlock bbCodeBlock--screenLimited bbCodeBlock--code">
  173. <div class="bbCodeBlock-title">
  174. Code:
  175. </div>
  176. <div class="bbCodeBlock-content" dir="ltr">
  177. <pre class="bbCodeCode" dir="ltr" data-xf-init="code-block" data-lang=""><code>property: (0.8 * @xf-style-property);</code></pre>
  178. </div>
  179. </div>Previously this was only necessary if the expression was ambiguous (such as multiple padding values).
  180. </div>
  181. <div class="bbCodeBlock-expandLink js-expandLink"><a role="button" tabindex="0">Click to expand...</a></div>
  182. </div>
  183. </blockquote><br />
  184. I haven&#039;t seen this reported as a bug.<br />
  185. <br />
  186. But this makes porting less to XF2.3 quite annoying as it is unsure when existing less will work as-is or just fails silently.</div>]]></content:encoded>
  187.      <slash:comments>0</slash:comments>
  188.    </item>
  189.    <item>
  190.      <title>Mysql error upgrading to 2.3 beta 4</title>
  191.      <pubDate>Fri, 19 Apr 2024 10:16:15 +0000</pubDate>
  192.      <link>https://xenforo.com/community/threads/mysql-error-upgrading-to-2-3-beta-4.220974/</link>
  193.      <guid isPermaLink="false">220974</guid>
  194.      <author>invalid@example.com (Marcel Broekema)</author>
  195.      <category domain="https://xenforo.com/community/forums/bugs/"><![CDATA[Bug reports]]></category>
  196.      <dc:creator>Marcel Broekema</dc:creator>
  197.      <content:encoded><![CDATA[<div class="bbWrapper">Made an exact copy of my production forum and (after disabling the Chat and Redis add-ons) see this error:<br />
  198. (second time running php cmd.php xf:upgrade, upgrades ends ok). Same problem when all add-ons are disabled and third try after removing all add-ons:<br />
  199. <br />
  200. <br />
  201. ~/httpdocs$ php cmd.php xf:upgrade<br />
  202. Current version: 2021570<br />
  203. Upgrade target: 2030034 (2.3.0 Beta 4)<br />
  204. Are you sure you want to continue with the upgrade? [y/n] y<br />
  205. <br />
  206. Running upgrade to 2.3.0 Alpha, step 1... done.<br />
  207. Running upgrade to 2.3.0...<br />
  208. <br />
  209. <a href="https://xenforo.com/community/threads/mysql-error-upgrading-to-2-3-beta-4.220974/" class="link link--internal">Read more</a></div>]]></content:encoded>
  210.      <slash:comments>1</slash:comments>
  211.    </item>
  212.    <item>
  213.      <title>I'm getting an error during installation</title>
  214.      <pubDate>Fri, 19 Apr 2024 10:07:43 +0000</pubDate>
  215.      <link>https://xenforo.com/community/threads/im-getting-an-error-during-installation.220973/</link>
  216.      <guid isPermaLink="false">220973</guid>
  217.      <author>invalid@example.com (onurhans53)</author>
  218.      <category domain="https://xenforo.com/community/forums/bugs/"><![CDATA[Bug reports]]></category>
  219.      <dc:creator>onurhans53</dc:creator>
  220.      <content:encoded><![CDATA[<div class="bbWrapper">I am trying to download and install 2.3 Beta 4 files. But I&#039;m getting this error.<br />
  221. <br />
  222. <a href="https://xenforo.com/community/attachments/ekran-al%C4%B1nt%C4%B1s%C4%B1-webp.301513/"
  223. target="_blank"><img src="https://xenforo.com/community/data/attachments/300/300497-86923a9a36729db653f48ec9475eadbc.jpg"
  224. class="bbImage "
  225. style="background-image:url(/community/data/attachments/300/300497-86923a9a36729db653f48ec9475eadbc.jpg);"
  226. alt="Ekran Alıntısı.webp"
  227. title="Ekran Alıntısı.webp"
  228. width="895" height="300" loading="lazy" /></a></div>]]></content:encoded>
  229.      <slash:comments>0</slash:comments>
  230.    </item>
  231.    <item>
  232.      <title>Payment Problem</title>
  233.      <pubDate>Fri, 19 Apr 2024 10:05:22 +0000</pubDate>
  234.      <link>https://xenforo.com/community/threads/payment-problem.220924/</link>
  235.      <guid isPermaLink="false">220924</guid>
  236.      <author>invalid@example.com (onurhans53)</author>
  237.      <category domain="https://xenforo.com/community/forums/xenforo-pre-sales-questions.5/"><![CDATA[XenForo pre-sales questions]]></category>
  238.      <dc:creator>onurhans53</dc:creator>
  239.      <content:encoded><![CDATA[<div class="bbWrapper">Hello,<br />
  240. <br />
  241. I paid for the license update yesterday. However, my license was not updated and I was accidentally charged twice. I opened a support request but still haven&#039;t received a response. What&#039;s the problem?</div>]]></content:encoded>
  242.      <slash:comments>10</slash:comments>
  243.    </item>
  244.    <item>
  245.      <title>[WMTech] Content Downloader [Paid]</title>
  246.      <pubDate>Fri, 19 Apr 2024 09:58:21 +0000</pubDate>
  247.      <link>https://xenforo.com/community/threads/wmtech-content-downloader-paid.147991/</link>
  248.      <guid isPermaLink="false">147991</guid>
  249.      <author>invalid@example.com (Yugensoft)</author>
  250.      <category domain="https://xenforo.com/community/forums/add-on-releases-2-x.95/"><![CDATA[Add-on releases [2.x]]]></category>
  251.      <dc:creator>Yugensoft</dc:creator>
  252.      <content:encoded><![CDATA[<div class="bbWrapper">Yugensoft submitted a new resource:<br />
  253. <br />
  254. <a href="https://xenforo.com/community/resources/content-downloader.6455/" class="link link--internal">Content Downloader</a> - Download entire thread or user content as standalone file<br />
  255. <br />
  256.  
  257.  
  258.  
  259.  
  260. <blockquote data-attributes="" data-quote="" data-source=""
  261. class="bbCodeBlock bbCodeBlock--expandable bbCodeBlock--quote js-expandWatch">
  262. <div class="bbCodeBlock-content">
  263. <div class="bbCodeBlock-expandContent js-expandContent ">
  264. Download entire forum content sets into a standalone HTML file.<br />
  265. <br />
  266. Can download:<br />
  267. <ul>
  268. <li data-xf-list-type="ul"><b>Thread</b>&#039;s entire content</li>
  269. <li data-xf-list-type="ul"><b>Member</b>&#039;s entire content</li>
  270. </ul>Useful <b>premium feature</b> for user upgrades.<br />
  271. <ul>
  272. <li data-xf-list-type="ul">Some users like to binge-read large high-value threads</li>
  273. <li data-xf-list-type="ul">Some users also like to read through all the content from popular posters</li>
  274. <li data-xf-list-type="ul">It&#039;s...</li>
  275. </ul>
  276. </div>
  277. <div class="bbCodeBlock-expandLink js-expandLink"><a role="button" tabindex="0">Click to expand...</a></div>
  278. </div>
  279. </blockquote><br />
  280. <a href="https://xenforo.com/community/threads/wmtech-content-downloader-paid.147991/" class="link link--internal">Read more</a></div>]]></content:encoded>
  281.      <slash:comments>14</slash:comments>
  282.    </item>
  283.    <item>
  284.      <title>What's new with Enhanced Search, Resource Manager and Media Gallery in XenForo 2.3?</title>
  285.      <pubDate>Fri, 19 Apr 2024 09:50:16 +0000</pubDate>
  286.      <link>https://xenforo.com/community/threads/whats-new-with-enhanced-search-resource-manager-and-media-gallery-in-xenforo-2-3.220935/</link>
  287.      <guid isPermaLink="false">220935</guid>
  288.      <author>invalid@example.com (Chris D)</author>
  289.      <category domain="https://xenforo.com/community/forums/have-you-seen/"><![CDATA[Have you seen...?]]></category>
  290.      <dc:creator>Chris D</dc:creator>
  291.      <content:encoded><![CDATA[<div class="bbWrapper">Today is the day we sadly have to report that this is the final &#039;Have you seen...?&#039; thread for XenForo 2.3. While there are still changes planned, these will almost exclusively be changes to existing features, bug fixes and miscellaneous improvements that aren&#039;t significant enough for their own thread. But this only brings with it the implication of very good news to come as we start wrapping up the beta process for XenForo 2.3 and rocket towards a stable release as soon as possible...<br />
  292. <br />
  293. <a href="https://xenforo.com/community/threads/whats-new-with-enhanced-search-resource-manager-and-media-gallery-in-xenforo-2-3.220935/" class="link link--internal">Read more</a></div>]]></content:encoded>
  294.      <slash:comments>38</slash:comments>
  295.    </item>
  296.    <item>
  297.      <title>XF3 General Information &amp; Discussion</title>
  298.      <pubDate>Fri, 19 Apr 2024 09:28:54 +0000</pubDate>
  299.      <link>https://xenforo.com/community/threads/xf3-general-information-discussion.217928/</link>
  300.      <guid isPermaLink="false">217928</guid>
  301.      <author>invalid@example.com (Paul B)</author>
  302.      <category domain="https://xenforo.com/community/forums/other-xenforo-discussions-and-feedback.45/"><![CDATA[Other XenForo discussions and feedback]]></category>
  303.      <dc:creator>Paul B</dc:creator>
  304.      <content:encoded><![CDATA[<div class="bbWrapper">To avoid the same issue we always have prior to a new first or second point release, this thread will serve as the main place for all discussion related to XF3.<br />
  305. <br />
  306. For 2.3 I think we were well into double figures for threads discussing it, so all other threads will be closed and pointed to this one.<br />
  307. Try and keep off topic and non relevant posts to a minimum to avoid them being moved to another thread, or deleted.<br />
  308. <br />
  309. <br />
  310. <b>What is XF3?</b><br />
  311. XF3 will primarily be 2.3 with a new style.<br />
  312. The decision...<br />
  313. <br />
  314. <a href="https://xenforo.com/community/threads/xf3-general-information-discussion.217928/" class="link link--internal">Read more</a></div>]]></content:encoded>
  315.      <slash:comments>11</slash:comments>
  316.    </item>
  317.    <item>
  318.      <title>Forum combined with blog (editorial system)</title>
  319.      <pubDate>Fri, 19 Apr 2024 09:24:22 +0000</pubDate>
  320.      <link>https://xenforo.com/community/threads/forum-combined-with-blog-editorial-system.220852/</link>
  321.      <guid isPermaLink="false">220852</guid>
  322.      <author>invalid@example.com (sascha78)</author>
  323.      <category domain="https://xenforo.com/community/forums/xenforo-pre-sales-questions.5/"><![CDATA[XenForo pre-sales questions]]></category>
  324.      <dc:creator>sascha78</dc:creator>
  325.      <content:encoded><![CDATA[<div class="bbWrapper">Dear Community<br />
  326. <br />
  327. I am new here and intend to use XENFORO for my project (travel topics). <br />
  328. <br />
  329. Although there are already older posts, I would like to ask the question at the present time whether it will be possible in the foreseeable future to use XENFORO as a blog (own travel reports) and thus build up a community for the exchange of information via the comments. <span style="color: rgb(184, 49, 47)">I don&#039;t want to integrate WordPress or other solutions - in IT we always say that every interface is one too many </span><img src="https://cdn.jsdelivr.net/joypixels/assets/8.0/png/unicode/64/1f609.png" class="smilie smilie--emoji" loading="lazy" width="64" height="64" alt=";)" title="Wink    ;)"  data-smilie="2"data-shortname=";)" /> <br />
  330. <br />
  331. Can a...<br />
  332. <br />
  333. <a href="https://xenforo.com/community/threads/forum-combined-with-blog-editorial-system.220852/" class="link link--internal">Read more</a></div>]]></content:encoded>
  334.      <slash:comments>13</slash:comments>
  335.    </item>
  336.    <item>
  337.      <title>Custom Error Pages</title>
  338.      <pubDate>Fri, 19 Apr 2024 08:58:40 +0000</pubDate>
  339.      <link>https://xenforo.com/community/threads/custom-error-pages.220961/</link>
  340.      <guid isPermaLink="false">220961</guid>
  341.      <author>invalid@example.com (Mister.T)</author>
  342.      <category domain="https://xenforo.com/community/forums/xenforo-questions-and-support.25/"><![CDATA[XenForo questions and support]]></category>
  343.      <dc:creator>Mister.T</dc:creator>
  344.      <content:encoded><![CDATA[<div class="bbWrapper">Hi,<br />
  345. <br />
  346. I have my own custom error pages on my default website : website.com but how do I go about adding them on the forum here forums.website.com, if I just add this in my htaccess file I keep getting, the default XenForo error pages instead.<br />
  347. <br />
  348.  
  349.  
  350.  
  351.  
  352. <blockquote data-attributes="" data-quote="" data-source=""
  353. class="bbCodeBlock bbCodeBlock--expandable bbCodeBlock--quote js-expandWatch">
  354. <div class="bbCodeBlock-content">
  355. <div class="bbCodeBlock-expandContent js-expandContent ">
  356. ErrorDocument 401 website.com/401.html<br />
  357. ErrorDocument 403 website.com/403.html<br />
  358. ErrorDocument 404 website.com/404.html<br />
  359. ErrorDocument 405 website.com/405.html<br />
  360. ErrorDocument 406 website.com/406.html<br />
  361. ErrorDocument 500 website.com/500.html<br />
  362. ErrorDocument...
  363. </div>
  364. <div class="bbCodeBlock-expandLink js-expandLink"><a role="button" tabindex="0">Click to expand...</a></div>
  365. </div>
  366. </blockquote><br />
  367. <a href="https://xenforo.com/community/threads/custom-error-pages.220961/" class="link link--internal">Read more</a></div>]]></content:encoded>
  368.      <slash:comments>1</slash:comments>
  369.    </item>
  370.    <item>
  371.      <title>D.C Style - Thumbnail</title>
  372.      <pubDate>Fri, 19 Apr 2024 08:56:12 +0000</pubDate>
  373.      <link>https://xenforo.com/community/threads/d-c-style-thumbnail.185177/</link>
  374.      <guid isPermaLink="false">185177</guid>
  375.      <author>invalid@example.com (D.C Style)</author>
  376.      <category domain="https://xenforo.com/community/forums/add-on-releases-2-x.95/"><![CDATA[Add-on releases [2.x]]]></category>
  377.      <dc:creator>D.C Style</dc:creator>
  378.      <content:encoded><![CDATA[<div class="bbWrapper">D.C Style submitted a new resource:<br />
  379. <br />
  380. <a href="https://xenforo.com/community/resources/d-c-style-thumbnail.8008/" class="link link--internal">D.C Style - Thumbnail</a> - Allow users to enable cover image &amp; thumbnail image for their threads.<br />
  381. <br />
  382.  
  383.  
  384.  
  385.  
  386. <blockquote data-attributes="" data-quote="" data-source=""
  387. class="bbCodeBlock bbCodeBlock--expandable bbCodeBlock--quote js-expandWatch">
  388. <div class="bbCodeBlock-content">
  389. <div class="bbCodeBlock-expandContent js-expandContent ">
  390. <h2 class="bbHeading"><b>Introduce</b>&#8203;</h2>Allow users to enable cover image for their threads and add thumbnails to forum view.<br />
  391. <br />
  392. <ul>
  393. <li data-xf-list-type="ul">Customize thumbnail for each thread. Supports attachment images, external images and thumbnail from videos on Youtube, Vimeo and Dailymotion (updating…).</li>
  394. <li data-xf-list-type="ul">Turn on/off cover image for each thread.</li>
  395. <li data-xf-list-type="ul">Add og:image tag for...</li>
  396. </ul>
  397. </div>
  398. <div class="bbCodeBlock-expandLink js-expandLink"><a role="button" tabindex="0">Click to expand...</a></div>
  399. </div>
  400. </blockquote><br />
  401. <a href="https://xenforo.com/community/threads/d-c-style-thumbnail.185177/" class="link link--internal">Read more</a></div>]]></content:encoded>
  402.      <slash:comments>126</slash:comments>
  403.    </item>
  404.    <item>
  405.      <title>Threads from guests?</title>
  406.      <pubDate>Fri, 19 Apr 2024 07:51:05 +0000</pubDate>
  407.      <link>https://xenforo.com/community/threads/threads-from-guests.220971/</link>
  408.      <guid isPermaLink="false">220971</guid>
  409.      <author>invalid@example.com (Robert9)</author>
  410.      <category domain="https://xenforo.com/community/forums/xenforo-development-discussions.34/"><![CDATA[XenForo development discussions]]></category>
  411.      <dc:creator>Robert9</dc:creator>
  412.      <content:encoded><![CDATA[<div class="bbWrapper">There is a new and very interesting forum with a good Google Ranking for some special interests<br />
  413. It has a message in a 72er bold Arial telling people that they should <b>not register</b> if they have nothing to tell/write.<br />
  414. <br />
  415. What happens all the time?<br />
  416. <br />
  417. Every day some people register and post nothing.<br />
  418. <br />
  419. My idea is now to shut off the register function or allow it only with a code.<br />
  420. <br />
  421. <br />
  422. <br />
  423. Solution1:<br />
  424. Give guests one forum to post, let a guest add 10 threads and maybe 20 posts per thread. This should...<br />
  425. <br />
  426. <a href="https://xenforo.com/community/threads/threads-from-guests.220971/" class="link link--internal">Read more</a></div>]]></content:encoded>
  427.      <slash:comments>1</slash:comments>
  428.    </item>
  429.    <item>
  430.      <title>Admin navigation looses scroll position on click</title>
  431.      <pubDate>Fri, 19 Apr 2024 07:13:28 +0000</pubDate>
  432.      <link>https://xenforo.com/community/threads/admin-navigation-looses-scroll-position-on-click.220957/</link>
  433.      <guid isPermaLink="false">220957</guid>
  434.      <author>invalid@example.com (Kirby)</author>
  435.      <category domain="https://xenforo.com/community/forums/bugs/"><![CDATA[Bug reports]]></category>
  436.      <dc:creator>Kirby</dc:creator>
  437.      <content:encoded><![CDATA[<div class="bbWrapper">When clicking an entry in the admin navigation menu a full new page is loaded and the scoll position is lost.<br />
  438. <br />
  439. This is kinda annoying especially on smaller creens with a few extra sections.<br />
  440. <br />
  441. Before clicking <b>Payment provider log<br />
  442. <a href="https://xenforo.com/community/attachments/1713460322658-webp.301484/"
  443. target="_blank"><img src="https://xenforo.com/community/data/attachments/300/300469-828dd054e932aacaca9c544b561e6f0c.jpg"
  444. class="bbImage "
  445. style="background-image:url(/community/data/attachments/300/300469-828dd054e932aacaca9c544b561e6f0c.jpg);"
  446. alt="1713460322658.webp"
  447. title="1713460322658.webp"
  448. width="465" height="300" loading="lazy" /></a></b><br />
  449. <br />
  450. After clicking<b> Payment provider log<br />
  451. <a href="https://xenforo.com/community/attachments/1713460365176-webp.301485/"
  452. target="_blank"><img src="https://xenforo.com/community/data/attachments/300/300470-04933fbe694f5a918dc36e4b56d989d4.jpg"
  453. class="bbImage "
  454. style="background-image:url(/community/data/attachments/300/300470-04933fbe694f5a918dc36e4b56d989d4.jpg);"
  455. alt="1713460365176.webp"
  456. title="1713460365176.webp"
  457. width="455" height="300" loading="lazy" /></a></b></div>]]></content:encoded>
  458.      <slash:comments>3</slash:comments>
  459.    </item>
  460.    <item>
  461.      <title>Invalidate Session on 2FA Activation/Change</title>
  462.      <pubDate>Fri, 19 Apr 2024 06:54:00 +0000</pubDate>
  463.      <link>https://xenforo.com/community/threads/invalidate-session-on-2fa-activation-change.220967/</link>
  464.      <guid isPermaLink="false">220967</guid>
  465.      <author>invalid@example.com (Steffen)</author>
  466.      <category domain="https://xenforo.com/community/forums/xenforo-suggestions.18/"><![CDATA[XenForo suggestions]]></category>
  467.      <dc:creator>Steffen</dc:creator>
  468.      <content:encoded><![CDATA[<div class="bbWrapper">It seems like it&#039;s best-practise to invalidate other sessions on 2FA activation/change (<a href="https://github.com/bugcrowd/vulnerability-rating-taxonomy/issues/257" target="_blank" class="link link--external" rel="nofollow ugc noopener">[1]</a>, <a href="https://security.stackexchange.com/questions/216580/2fa-mfa-and-session-management" target="_blank" class="link link--external" rel="nofollow ugc noopener">[2]</a>). At the moment, XenForo seems to invalidate other sessions on password change but not on 2FA activation/change.<br />
  469. <br />
  470. The scenario goes like this:<br />
  471. <ol>
  472. <li data-xf-list-type="ol">Log in to the same account with two different browsers</li>
  473. <li data-xf-list-type="ol">Enable 2FA in one of the logged-in sessions</li>
  474. <li data-xf-list-type="ol">Observe that the other browser&#039;s session remains active</li>
  475. </ol>This has been reported to us via email (with the unfortunately common...<br />
  476. <br />
  477. <a href="https://xenforo.com/community/threads/invalidate-session-on-2fa-activation-change.220967/" class="link link--internal">Read more</a></div>]]></content:encoded>
  478.      <slash:comments>1</slash:comments>
  479.    </item>
  480.    <item>
  481.      <title>XF 2.3 / 3.0 release date</title>
  482.      <pubDate>Fri, 19 Apr 2024 06:42:08 +0000</pubDate>
  483.      <link>https://xenforo.com/community/threads/xf-2-3-3-0-release-date.216961/</link>
  484.      <guid isPermaLink="false">216961</guid>
  485.      <author>invalid@example.com (BikeGremlin)</author>
  486.      <category domain="https://xenforo.com/community/forums/other-xenforo-discussions-and-feedback.45/"><![CDATA[Other XenForo discussions and feedback]]></category>
  487.      <dc:creator>BikeGremlin</dc:creator>
  488.      <content:encoded><![CDATA[<div class="bbWrapper">Is there a “pessimistic” timeline (with all the possible worst-case disclaimers) for the 2.3 (or 3.0 for that matter) release?<br />
  489. <br />
  490. I plan to start a forum, and would rather wait a month or two than hassle with updates from the start (does that make sense?).<br />
  491. <br />
  492. Do you know which PHP version will be optimal (8.1 is for the current version if I understand correctly)?<br />
  493. <br />
  494. Relja</div>]]></content:encoded>
  495.      <slash:comments>296</slash:comments>
  496.    </item>
  497.    <item>
  498.      <title>Next XF Version Release?</title>
  499.      <pubDate>Fri, 19 Apr 2024 06:29:03 +0000</pubDate>
  500.      <link>https://xenforo.com/community/threads/next-xf-version-release.220966/</link>
  501.      <guid isPermaLink="false">220966</guid>
  502.      <author>invalid@example.com (cherrysodastar)</author>
  503.      <category domain="https://xenforo.com/community/forums/xenforo-pre-sales-questions.5/"><![CDATA[XenForo pre-sales questions]]></category>
  504.      <dc:creator>cherrysodastar</dc:creator>
  505.      <content:encoded><![CDATA[<div class="bbWrapper">Hi again <img src="https://cdn.jsdelivr.net/joypixels/assets/8.0/png/unicode/64/1f642.png" class="smilie smilie--emoji" loading="lazy" width="64" height="64" alt=":)" title="Smile    :)"  data-smilie="1"data-shortname=":)" /><br />
  506. <br />
  507. I saw a thread about the next version coming out and it said something like, &quot;maybe mid-May.&quot;<br />
  508. <br />
  509. Since I can&#039;t post on that thread, I had to open a new one to ask.. is this an accurate timeline for the new version?<br />
  510. <br />
  511. Will the new version have significant changes? What can I look forward as far as new or updated features?<br />
  512. <br />
  513. Thank you.</div>]]></content:encoded>
  514.      <slash:comments>5</slash:comments>
  515.    </item>
  516.    <item>
  517.      <title>[DigitalPoint] App for Cloudflare®</title>
  518.      <pubDate>Fri, 19 Apr 2024 06:27:24 +0000</pubDate>
  519.      <link>https://xenforo.com/community/threads/digitalpoint-app-for-cloudflare%C2%AE.206176/</link>
  520.      <guid isPermaLink="false">206176</guid>
  521.      <author>invalid@example.com (digitalpoint)</author>
  522.      <category domain="https://xenforo.com/community/forums/add-on-releases-2-x.95/"><![CDATA[Add-on releases [2.x]]]></category>
  523.      <dc:creator>digitalpoint</dc:creator>
  524.      <content:encoded><![CDATA[<div class="bbWrapper">digitalpoint submitted a new resource:<br />
  525. <br />
  526. <a href="https://xenforo.com/community/resources/digitalpoint-cloudflare.8750/" class="link link--internal">[DigitalPoint] Cloudflare</a> - Configure and manage Cloudflare from within XenForo.<br />
  527. <br />
  528.  
  529.  
  530.  
  531.  
  532. <blockquote data-attributes="" data-quote="" data-source=""
  533. class="bbCodeBlock bbCodeBlock--expandable bbCodeBlock--quote js-expandWatch">
  534. <div class="bbCodeBlock-content">
  535. <div class="bbCodeBlock-expandContent js-expandContent ">
  536. <span style="font-size: 22px"><b>Features</b></span><br />
  537. Everything is available from within XenForo (you do not need to go to Cloudflare for things) via the Cloudflare API.  This allows you give admins permission to do certain things (for example block IP addresses within Cloudflare without giving them access to your Cloudflare account).<br />
  538. <br />
  539. It simplifies/automates much of the configuration and...
  540. </div>
  541. <div class="bbCodeBlock-expandLink js-expandLink"><a role="button" tabindex="0">Click to expand...</a></div>
  542. </div>
  543. </blockquote><br />
  544. <a href="https://xenforo.com/community/threads/digitalpoint-app-for-cloudflare%C2%AE.206176/" class="link link--internal">Read more</a></div>]]></content:encoded>
  545.      <slash:comments>1903</slash:comments>
  546.    </item>
  547.  </channel>
  548. </rss>
  549.  

If you would like to create a banner that links to this page (i.e. this validation result), do the following:

  1. Download the "valid RSS" banner.

  2. Upload the image to your own server. (This step is important. Please do not link directly to the image on this server.)

  3. Add this HTML to your page (change the image src attribute if necessary):

If you would like to create a text link instead, here is the URL you can use:

http://www.feedvalidator.org/check.cgi?url=http%3A//xenforo.com/community/forums/-/index.rss

Copyright © 2002-9 Sam Ruby, Mark Pilgrim, Joseph Walton, and Phil Ringnalda