<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									UM Integration - Replace Profile &amp; Memory Cache conflict - wpForo Integration				            </title>
            <link>https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sat, 14 Mar 2026 12:47:34 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: UM Integration - Replace Profile &amp; Memory Cache conflict</title>
                        <link>https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/paged/2/#post-19628</link>
                        <pubDate>Fri, 21 Sep 2018 17:02:26 +0000</pubDate>
                        <description><![CDATA[Hi @anonymous3542,Yes, it does look like a bug. I have gone in and updated several templates i.e. post.php, forum.php, topic.php and recent.php to address this. Ideally, it would be good to ...]]></description>
                        <content:encoded><![CDATA[<p>Hi @anonymous3542,</p><p>Yes, it does look like a bug. I have gone in and updated several templates i.e. post.php, forum.php, topic.php and recent.php to address this. Ideally, it would be good to fix the wpforo_member_link() function in functions-template.php to include the following at the very start:</p><pre>$member = esc_url(WPF()-&gt;member-&gt;profile_url($member));</pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/wpforo-integration/">wpForo Integration</category>                        <dc:creator>themofella</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/paged/2/#post-19628</guid>
                    </item>
				                    <item>
                        <title>RE: UM Integration - Replace Profile &amp; Memory Cache conflict</title>
                        <link>https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/paged/2/#post-19627</link>
                        <pubDate>Fri, 21 Sep 2018 16:49:39 +0000</pubDate>
                        <description><![CDATA[@themofella thanks for the extensive response. I  seem to be able to replicate this issue on either of my two sites that both use wpForo and UM together as you&#039;ve reported: Conclusion 1 - Lo...]]></description>
                        <content:encoded><![CDATA[<p>@themofella thanks for the extensive response. I  seem to be able to replicate this issue on either of my two sites that both use wpForo and UM together as you've reported: </p><blockquote><p>Conclusion 1 - Logged in users are taken to the wpForo profile page when they click on their own link, while they are taken to the UM profile of other members. Is this meant to be the expected behaviour?</p></blockquote><p>Very strange - can't say I noticed this before, but after trying to replicate your steps, it seems that this a bug.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/wpforo-integration/">wpForo Integration</category>                        <dc:creator>Anonymous3542</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/paged/2/#post-19627</guid>
                    </item>
				                    <item>
                        <title>RE: UM Integration - Replace Profile &amp; Memory Cache conflict</title>
                        <link>https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/paged/2/#post-19622</link>
                        <pubDate>Fri, 21 Sep 2018 14:59:23 +0000</pubDate>
                        <description><![CDATA[OK. So finally I have managed to find a solution to the issue I reported earlier i.e. that profile link within the topic/reply section for logged in user takes users to the wpforo profile pa...]]></description>
                        <content:encoded><![CDATA[<p>OK. So finally I have managed to find a solution to the issue I reported earlier i.e. that profile link within the topic/reply section for logged in user takes users to the wpforo profile page instead of UM profile page. This is because of how the profile link is accessed within the post.php file.</p><p>This can be fixed easily (although I think it needs to be fixed in the official release as it is possibly a bug) by adding a line to the post.php through a theme override as follows. Find the following piece of code...</p><div><pre>    foreach($posts as $key =&gt; $post) : ?&gt;<br />        &lt;?php $member = wpforo_member($post); $post_url = wpforo_post($post,'url'); ?&gt;<br />        &lt;div id="post-&lt;?php echo intval($post) ?&gt;" class="post-wrap wpfn-&lt;?php echo ($key+1); ?&gt;&lt;?php if( $post ) echo ' wpfp-first' ?&gt;"&gt;</pre></div><div>... and inject the following line after the wpforo_member call...</div><pre>        &lt;?php $member = esc_url(WPF()-&gt;member-&gt;profile_url($member)); ?&gt;</pre><div>... to have a final code which reads as below:</div><div><div><pre>    foreach($posts as $key =&gt; $post) : ?&gt;<br />        &lt;?php $member = wpforo_member($post); $post_url = wpforo_post($post,'url'); ?&gt;<br />        &lt;?php $member = esc_url(WPF()-&gt;member-&gt;profile_url($member)); ?&gt;<br />        &lt;div id="post-&lt;?php echo intval($post) ?&gt;" class="post-wrap wpfn-&lt;?php echo ($key+1); ?&gt;&lt;?php if( $post ) echo ' wpfp-first' ?&gt;"&gt;</pre></div></div><div> </div><div>It will be great if this can be fixed in the official release. However if this is likely to break something else then can please someone shout. So far I have not seen any issues occuring as a result of this fix.</div>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/wpforo-integration/">wpForo Integration</category>                        <dc:creator>themofella</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/paged/2/#post-19622</guid>
                    </item>
				                    <item>
                        <title>RE: UM Integration - Replace Profile &amp; Memory Cache conflict</title>
                        <link>https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/#post-19599</link>
                        <pubDate>Thu, 20 Sep 2018 21:55:11 +0000</pubDate>
                        <description><![CDATA[Managed to resolve the tab not showing issue. I had to go to Ultimate Member &gt; Settings &gt; Appearance &gt; Profile Menu and uncheck the Forums Tab checkbox, save, then check the Forums ...]]></description>
                        <content:encoded><![CDATA[<p>Managed to resolve the tab not showing issue. I had to go to Ultimate Member &gt; Settings &gt; Appearance &gt; Profile Menu and uncheck the Forums Tab checkbox, save, then check the Forums Tab checkbox and then save. This then resulted in the tab appear on the Ultimate Member profile page. Probably the installation scripts are not setting up the Forums Tabs setting properly. Hope this helps anyone who faces this issue.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/wpforo-integration/">wpForo Integration</category>                        <dc:creator>themofella</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/#post-19599</guid>
                    </item>
				                    <item>
                        <title>RE: UM Integration - Replace Profile &amp; Memory Cache conflict</title>
                        <link>https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/#post-19598</link>
                        <pubDate>Thu, 20 Sep 2018 21:47:11 +0000</pubDate>
                        <description><![CDATA[OK. I can now report that the issue exists even with a completely fresh setup. Just to make sure that I have not missed out on an important step... this is what I have done...1) Installed th...]]></description>
                        <content:encoded><![CDATA[<p>OK. I can now report that the issue exists even with a completely fresh setup. Just to make sure that I have not missed out on an important step... this is what I have done...</p><p>1) Installed the latest WordPress on my Flywheel Local server on Mac. WordPress version is 4.9.8.</p><p>2) Installed the latest version of Ultimate Member. Version 2.0.25.</p><p>3) Installed the latest version of wpForo. Version 1.5.3.</p><p>4) Created a test user (joe bloggs) and checked the UM profile for this user. No tab for forum was visible.</p><p>5) Enabled the option to replace forum profile with UM profile, created a topic on the forum using the Joe Bloggs account and clicked the through to the profile link within the topic on forum. I was taken to the forum profile page of Joe Bloggs i.e. NO UM integration seen. </p><p>6) Created a test user called Jane Doe and logged in. Now clicked the profile link of Joe Bloggs within the topic and I was taken to the UM profile.</p><p>Conclusion 1 - Logged in users are taken to the wpForo profile page when they click on their own link, while they are taken to the UM profile of other members. Is this meant to be the expected behaviour?</p><p>7) Disable memory cache and I was able to recreate the issue of endless loop  that I reported earlier.</p><p>Conclusion 2 - The conflict between Memory Cache setting and Replace with UM Profile setting exists even on a completely fresh install of all the components.</p><p>Any thoughts?</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/wpforo-integration/">wpForo Integration</category>                        <dc:creator>themofella</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/#post-19598</guid>
                    </item>
				                    <item>
                        <title>RE: UM Integration - Replace Profile &amp; Memory Cache conflict</title>
                        <link>https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/#post-19596</link>
                        <pubDate>Thu, 20 Sep 2018 21:12:34 +0000</pubDate>
                        <description><![CDATA[Thanks for the quick response @anonymous3542. I don&#039;t have any other caching plugin. I guess, I can ignore the cache settings. I had mentioned it in case it was impacting the integration. I ...]]></description>
                        <content:encoded><![CDATA[<p>Thanks for the quick response @anonymous3542. I don't have any other caching plugin. I guess, I can ignore the cache settings. I had mentioned it in case it was impacting the integration. I am using Elementor in addition to UM and wpForo, but I doubt that would cause an issue. I will try a completely fresh install and report back.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/wpforo-integration/">wpForo Integration</category>                        <dc:creator>themofella</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/#post-19596</guid>
                    </item>
				                    <item>
                        <title>RE: UM Integration - Replace Profile &amp; Memory Cache conflict</title>
                        <link>https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/#post-19592</link>
                        <pubDate>Thu, 20 Sep 2018 20:02:28 +0000</pubDate>
                        <description><![CDATA[@themofella I can&#039;t say I&#039;ve experienced this issue. I have the memory cache enabled with full integration (UM). Are you using any other caching plugin, and have you excluded wpForo ?]]></description>
                        <content:encoded><![CDATA[<p>@themofella I can't say I've experienced this issue. I have the memory cache enabled with full integration (UM). Are you using any other caching plugin, and have you excluded wpForo ?</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/wpforo-integration/">wpForo Integration</category>                        <dc:creator>Anonymous3542</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/#post-19592</guid>
                    </item>
				                    <item>
                        <title>RE: UM Integration - Replace Profile &amp; Memory Cache conflict</title>
                        <link>https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/#post-19591</link>
                        <pubDate>Thu, 20 Sep 2018 19:46:38 +0000</pubDate>
                        <description><![CDATA[Just so that you know what all has been done... I have done a clean Wordpress install using the latest version. Installed UM and some of its premium plugins, all of which are up-to-date. Ins...]]></description>
                        <content:encoded><![CDATA[<p>Just so that you know what all has been done... I have done a clean Wordpress install using the latest version. Installed UM and some of its premium plugins, all of which are up-to-date. Installed wpForo and first tested it with the default settings, where the replace with ultimate member profile setting is switched off by default. I then changed the setting and enabled it, also cleared both UM cache and wpForo cache and still none of the integrations with UM work.</p><p>The endless loop error occurs even for a fresh install like above. The error messages are:</p><p>Fatal error: Maximum function nesting level of '256' reached, aborting! in /app/public/wp-includes/l10n.php on line <em>840</em></p><p>Fatal error: Maximum function nesting level of '256' reached, aborting! in /app/public/wp-includes/wp-db.php on line <em>602</em></p><p>Within the detail, I see the same stack trace repeated again and again, which tells me it is getting into an endless loop somehow. </p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/wpforo-integration/">wpForo Integration</category>                        <dc:creator>themofella</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/#post-19591</guid>
                    </item>
				                    <item>
                        <title>UM Integration - Replace Profile &amp; Memory Cache conflict</title>
                        <link>https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/#post-19590</link>
                        <pubDate>Thu, 20 Sep 2018 19:35:43 +0000</pubDate>
                        <description><![CDATA[Hi,I am facing a strange issue i.e. when I disable Memory Cache and Enable the Replace Forum Profile with Ultimate Member Profile, it appears to go into an endless loop on some of the core c...]]></description>
                        <content:encoded><![CDATA[<p>Hi,</p><p>I am facing a strange issue i.e. when I disable Memory Cache and Enable the Replace Forum Profile with Ultimate Member Profile, it appears to go into an endless loop on some of the core calls and crashes out. </p><p>It does not crash if I enable the Memory Cache, however the integration with UM does not work i.e. I am still taken to the wpForo member profiles. The other integrations relating to Notifications and UM Tab are not working either.</p><p>I so want to use wpForo as it looks very promising, especially due to its UM integrations. @anonymous3542 you appear to be the defacto expert on this, so would really appreciate your help.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/wpforo-integration/">wpForo Integration</category>                        <dc:creator>themofella</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/wpforo-integration/um-integration-replace-profile-memory-cache-conflict/#post-19590</guid>
                    </item>
							        </channel>
        </rss>
		