• Hello Fabrik Community

    Fabrik is now in the hands of the development team that brought you Fabrik for Joomla 4. We have recently transitioned the Fabrik site over to a new server and are busy trying to clean it up. We have upgraded the site to Joomla 4 and are running the latest version of Fabrik 4. We have also upgraded the Xenforo forum software to the latest version. Many of the widgets you might have been used to on the forum are no longer operational, many abandoned by the developers. We hope to bring back some of the important ones as we have time.

    Exciting times to be sure.

    The Fabrik 4.0 Official release is now available. In addition, the Fabrik codebase is now available in a public repository. See the notices about these in the announcements section

    We wish to shout out a very big Thank You to all of you who have made donations. They have really helped. But we can always use more...wink..wink..

    Also a big Thank You to those of you who have been assisting others in the forum. This takes a very big burden off of us as we work on bugs, the website and the future of Fabrik.

Issue with var_dump in php plugin list

kouros91

Member
HI; It seems that var-dump doesn't work when i want to ask value of a var. in a php code with php plugin list. Is it a problem of my code or fabrik ?
even if i put a simple code ine the php code plugin list like
$coucou = 0;
var_dump($coucou);exit;
Same issue with $statusMsg($coucou);
No display of $statusMsg . It's the same with others php plugin list.
i get nothing.
In this case, i have 10 php plugin list buttons. It's an administrator list with a few buttons.
If it's a issue from php plugin list, how can i have display value of a variable ?

When i test without Ajax in list navigation, var_dump is ok !
Is there a possibility to keep var_dump with ajax option in list ?

Thank you
.
Nicolas
 
Last edited:
When running AJAX code, remember that it is ... well, AJAX. The output of your code isn't loaded automatically in the browser, like when you load a page. It's being returned to the Javascript function that called the AJAX request, which then processes it and does whatever it is your code does with it.

So to see any output from AJAX code, you have to run something like Chrome, open Dev Tools, and look in the Network tab to see the response from the AJAX call. Or use the JS debugger, put a breakpoint in your onSuccess() callback in the AJAX call, and look at the returned value.

Alternatively, use j!dump ...

https://extensions.joomla.org/extension/j-dump

... then you'll see your dumped ba==values the next time you refresh the page.

-- hugh
 
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top