Addons Are Conflicting

Hello Sir,
My addon is conflicting while I was downloading it. Though it does not displayed any error instead of it. It remains on the upload addon pop up page where the addon name is displayed. Clicking after several times on upload addon nothing happens and no results it still remains on that pop up page.

I have heard that we can find the problem by error_log function and by checking function stack but as new in cs cart do not know how and where to implemt it. Please guide me through the process.

I have stuck on the problem for 3 days now.

Please respond fast.

Check server error logs. Usually it can be found in the control panel of your server. If you do not find it, just ask hosting administrator

Thanks eCom Labs i have now fixed the issue thanks for reply.

Thanks eCom Labs i have now fixed the issue thanks for reply.

And what did you find/fix?

I was unable to download addon. As in cscart logs no error are generated related to it. As I have gone through the questions asked related to this scenario in others post. And got to know about error logs. That is why I asked how to set error log in my cscart setup.

I have search over internet and finded the we have to set in config file error log and path.

In error logs it was stated a function declared twice in two separate addon and there was a path to both the file I just commented the function then the conflicts was resolved.

I want to ask something about the error_log. As it was only displaying certain error. Error like PHP error was not visible when i was running the addon and facing an issue.

I have made a local_conf.php file and in it I have set the code :-
Please verify what should I change to make all the error display in error log file.

ini_set('log_errors', true);
ini_set('error_reporting', 32767);
ini_set('error_log', "error_log.txt");
?>

You should use

error_reporting(E_ALL);

instead of

ini_set('error_reporting', 32767);

You can't set the error_log with 'ini_set'.

I don't think 'log_errors' is necessary when using 'error_reporting()'.

I have search over internet and finded the we have to set in config file error log and path.

In error logs it was stated a function declared twice in two separate addon and there was a path to both the file. I just commented the function then the conflicts was resolved.

Suggest you identify which addon is more recent and contact that developer and identify the conflict so they can address it in their product.

I have search over internet and finded the we have to set in config file error log and path.

In error logs it was stated a function declared twice in two separate addon and there was a path to both the file. I just commented the function then the conflicts was resolved.