• 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.

Troubleshooting tools

  • Views Views: 12,677
  • Last updated Last updated:
  • Firebug
    "Firebug integrates with Firefox to put a wealth of web development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and Javascript live in any web page".

    Jing
    "Jing captures anything on you see on your computer screen, as an image or short video, and lets you share it instantly".

    Joomla Error Reporting
    Not for your production site, but for your development environment you can go into Joomla's Global Configuration, Server tab and set Error Reporting to maximum to allow php to give you detailed information about any warnings or errors it finds.

    Fabrik Debug
    In Fabrik's back-end, select Options then the Debugging tab and set "Allow fabrikDebug" to yes. Video on how to do this in this forum thread - https://fabrikar.com/forums/index.p...y-lists-to-use-it-on-views.41066/#post-206867.

    Then if you edit the URL for the page you are trying to fix to append the following string:
    Code:
    &fabrikdebug=1
    you will get additional Debugging information. In other words if you were not using SEF (search engine friendly URLS), it would look like ...

    Code:
    http://your.site/index.php?option=com_fabrik&view=list&listid=123&fabrikdebug=1
    ... with the ? after the URL part, and before option=. But with SEF, it be something like ...

    Code:
    http://your.site/fabrik/list/123?fabrikdebug=1
    ... ot whatever SEF format you are using.

    Joomla System Debug
    Although this does not show much information about Fabrik, it can be useful for general Joomla Debugging to go into Joomla's Global Configuration, System tab and set "Debug System" to yes.

    Joomla Language Debug
    If you are working on translation of Fabrik literal strings, it might be useful to go into Joomla's Global Configuration, System tab and set "Debug Language" to yes.

    php variable display
    If you are working on php code on a remote server and want to be able easily to dump variables so you can see what is happening in your code, then the J!Dump extension from the Joomla Extension Directory could be useful. Any variables that you dump will be shown in a pop-up window.

    (If you have a local server, you might find using and IDE with Debugging even better - see Joomla's Setting up your workstation for web development or Setting up your workstation for Joomla development.)

    Note: If you find Other Tools useful, please share them here.
Back
Top