0
votes

I have build my own component. I know very well about these stuff but all of sudden I wonder that the joomla request to my custom component is not displaying anything. Its displaying blank page. See this: http://designsoft.bestplacestestserver.com/index.php?option=com_marketplacemanager

Here is the very initial code of 'marketplacemanager.php' file of component where the request is not arriving. Don't know why.

Code - marketplacemanager.php

defined('_JEXEC') or die;

jimport('joomla.application.component.helper');

echo 'aa'; exit; // should have something displayed as here

3
check your error log, and also check tutorial how to create mvc component in JoomlaMarko D

3 Answers

2
votes

Go to global configuration. On the server tab turn error reporting to development. Reload the page. Most likely you will now see the error.

0
votes

Try this, replace the first line of your code with:

defined('_JEXEC') or die('why is blank?');

If still does not show anything it means displaying errors on your server is locked, so checking the error log would be the only option.

0
votes

The problem has been resolved. Actually MVC naming pattern or something else was wrong. I didn't properly renamed my existing component that I was reusing.