What's new
Xen Factory

Register today to become a member! Once signed in, you'll be able to start purchasing our products, ask questions, request support and suggest new ideas!

  • We are aware that a no permission error was shown when you tried to purchase in the last 2 days, this is now fixed.

Bug Fixed Outdated templates & Server Error Log

Ozgr

Member
I just update RM Marketplace to the latest version.

Do I have here select "Auto merge" here?

1732519160908.png

1732519168821.png
1732519190489.png

And I get those kind of Server error logs:


1732899215778.png

1732519321001.png
 
Last edited:
Yes you can auto merge.

The other error might be related to the merge not being done, please auto merge and get back to me.
 
Hi,

Sorry I did not connect on Thursday and Friday and then it was the week-end.

I have checked the code and the only thing I can see is that is that the error popped-up for a resource from a user that does not exist anymore.
Is it the case ?

Clément
 
Hi,

Sorry I did not connect on Thursday and Friday and then it was the week-end.

I have checked the code and the only thing I can see is that is that the error popped-up for a resource from a user that does not exist anymore.
Is it the case ?

Clément
1733128596176.png

1733128658888.png

THE USER EXISTS
 
Last edited:
No no, I was talking about the resource author.

It seems from the error that the resource author does not exist.
 
No no, I was talking about the resource author.

It seems from the error that the resource author does not exist.
Yes, indeed, that issue came on the resources where author does no longer exist.
How to fix that at all ?
 
For now, edit the file src/addons/XFA/RMMarketplace/XFRM/Entity/ResourceItem.php.

Search for:
PHP:
$canAccept = \XF::asVisitor($this->User, function()
{
    return $this->Category->canSellChildResource();
});

Add before :
PHP:
if (!$this->User)
{
   return false;
}

I'll provide that fix in the next release.
 
I tried to reproduce it but wasn’t able to.

Are you able to pinpoint a reproductible behavior for me to debug ?
 
Top