And in the inc.php i have diffrent functions, but when i try to use them they wont work. I tested to run the script by it self without joomla and then the functions work perfect.
I get no errors no nothing but it wont work what is the problem?
Re:Installed mod_php but it can't run the functions 1 Year, 5 Months ago
Karma: 10
If the files were not included, you should either see errors in the page or the PHP error logs and/or the server error logs if error reporting is on. You can turn it on at runtime with:
error_reporting(E_ALL);
You can choose to show errors on the page for debugging with:
ini_set('display_errors', 1);
You can test if a function exists after you include files with: