Actually i want SSO in Vtiger CRM with 3rd Paty application .
For example if i log in in the application , i want to login the same user in the Vtiger Also.
I have done this thing with SugarCRM and SuiteCRM using entry point , but need some help to do this with VtigerCRM.
Please help me to make a entry point in Vtiger CRM as we make in SugarCRM , In Sugar CRM we can make a custom entry point and call it from anywhere by doing Auth=false .
Is there any way possible to do this in Vtiger CRM ???
Your help is really appreciated.
I got the solution for this .
this is the URL to use to login automatically for version v6.x.x
http://youhost/vtigercrm/index.php?module=Users&action=Login&username=youruser&password=yourpassword
it's some little difference with version 5.x.x
http://yourhost/vtigercrm/index.php?module=Users&action=Authenticate&return_module=Users&return_action=Login&user_name=YOURUSER&user_password=YOURPASSWORD
Related
I would like to fire an event when the user logs in to his account on Dynamics CRM ? Such as opening a Web App beside the CRM... Is This possible ?
I know that I can write plug-in that allows to augment some business process such as account creation. Any advice will be appreciated !
CRM does not expose a plugin message for "UserLogon/UserAccess" on which you can register a plugin.
What you could do though is enable Audit User Access and register your plugin on Create of an audit entity and filter on the value in AuditAction (operation) and User Access Via Web (64) is the value you are looking for.
var entity = ((Entity)pluginExecutionContext.InputParameters["Target"]).ToEntity<Audit>();
if (entity.Operation.GetValueOrDefault() == 64)
{
//logic here
}
I think dynamicallyCRM gives a good idea, but if you are trying to open some website, plugin is not the option; it's meant to execute server side logic.
If all end users use the same homepage when login to CRM (let's say they are asked not to change it), you can set up a custom page as the homepage, and there you are able to add scripts to do whatever you want.
Can anyone give some advice on how to create a custom module, which will allow users to create sub-users that are able to login through sugar?
Actually this functionality is already available in sugar to create sub user,But if you want to create your own Module then , just go through the existing module you will find a way.
Please go through this link to know more about Sub user creation.
User management Sugarcrm 7.6
User management Sugarcrm 6.5
Thank you
I guess It will help you.
I am in no way a programmer, but I am trying my best to to follow online instructions and additional instructions from Intuit, but I have followed everything up to a point and now do not know where to proceed from here.
I have already...
1: Created an account
2: Created an App ID
3: Created a connection Ticket...
But now I have come to the point where I don't know where to proceed with the Connection Ticket ID#
I would assume I plug it into ZenCart somewhere but I have been unable to locate any online articles that point me in the right direction. Any help would be greatly appreciated. Thank you.
Have you written any code, or added a ZenCart payment module into ZenCart that you downloaded somewhere?
ZenCart does not support Intuit Merchant Services out of the box.
I'm able to setup sugarcrm to my local machine. Also I've a bit of knowledge of studio. Now I've got a requirement like login to sugarcrm using google account. If user want to login to sugar he/she'll have to use his/her google credential. If the credential is correct and the email id matches with the email id for a user in user module, the he'll be able to login to sugar.
I'm pretty new to sugar so please provide help. Please write if the problem description is not clear to you.
Thanks
It sounds like your goal is to enable Google Authentication within SugarCRM, which would mean a rewrite of the entire login page and process. I think that's beyond the scope of a SO post, but I think you'd start here: https://code.google.com/p/google-authenticator/
SugarCRM does come equipped with the Zend Library, including a lot of classes for working with Google APIs, so that's a plus.
A simpler answer, if it meets requirements, is to set the Users' user_names to their google email addresses, either #gmail.com or #googleappdomain.com, whatever. The draw back here is that the accounts aren't actually linked with Google, so passwords won't stay in sync.
I have create a custom user field called pm-id. I wish to include this in to the user registration email.
The standard method [user:pm_id] not working
Can anyone help me
Thank you
Try either [user:field_pm_id] or [user:field_pm-id]. I'm not sure what the machine name for your field is and it's definitely not just pm-id.
If you install the Token module, you should be able to see what tokens are available to you.