When I try to debug my payment class using a debugger I get an error 403. That happens with every class inside module payments, so my question is, where in the store tree, can the payment class be placed during testing, to avoid, the permission problems?
I made a test an created a bogus class inside there, and had the same permission error.
Something like
<?php class foo {
}
?>
<?php
$classes = get_declared_classes();
foreach ($classes as $class) {
echo $class . "<br />";?>
}
?>
That simple code, had the same problem ...
so to debug any recommendations as to where place the code?







Bookmarks