Closed ghost closed 10 months ago
It looks like the issue is here (in feeds_tamper_access()
):
elseif (is_object($importer)) {
$importer = $importer->id;
}
All keys in the $importer
object are suffixed with :protected
, so the code above should instead be:
elseif (is_object($importer)) {
$importer = $importer->id:protected;
}
(or whatever's adding that :protected
suffix should be removed).
Actually, even if I hack the module to return TRUE regardless, I then get this error:
Empty configuration identifier.
So possibly a larger issue here...
Maybe it's a PHP version issue. Perhaps we need to ensure it's forward compatible. I've been testing it in Lando and default is PHP 7.2
I think this is the easiest approach: https://github.com/backdrop-contrib/feeds_tamper/commit/e60b478e08a4ab5914d92604096da0d4c03f6250 - access it with the getter which is available in the parent class.
I'm going to say this is tentatively solved. Let me know if not.
Sorry, didn't fix it. I still get:
Access denied You are not authorized to access this page.
Is this still an issue @BWPanda. I haven't been able to replicate.
@herbdool Sorry, I had to stop using this module.
Closing since we can't replicate. If someone has this issue again, please reopen or open a new issue with steps to reproduce.
When trying to edit or delete a tamper, I get an 'Access denied' error: