Welcome Guest, Not a member yet? Register   Sign In
Making CodeIgniter and SugarCRM play well together
#1

[eluser]spyro[/eluser]
I am working on a SugarCRM integration in which I would like to use the SugarCRM model in CodeIgniter. This way I don't have to rebuild all of the database interactions. From within the Sugar directory this is no problem. You can include the following lines in a script and everything works.


Code:
SugarCRM Entry point code:
if(!defined('sugarEntry'))define('sugarEntry', true);
require_once('include/entryPoint.php');

As I said, this will only work from within the SugarCRM directory. If you try to use these lines in a CI model in an outside dir then call the Sugar methods directly you get redirected to install.php in Sugar. This is because entryPoint.php cannot find the Sugar config.php file.

Here is the folder structure

/www/website/
/sugarcrm
/config.php
/include/entryPoint.php
/system/application/

One thing that I have tried was putting these lines of code in a file under the SugarCRM directory and then including it in my CI model but it still executes as if i were outside of the SugarCRM directory which causes a redirect.

Does anyone have any suggestions on a work around?
#2

[eluser]spyro[/eluser]
Can anyone suggestion a way to organize CI to where it is in the SugarCRM directory but the URLs still work as if it is in root.




Theme © iAndrew 2016 - Forum software by © MyBB