I'm getting a strange error when I attempt to log into a dev site running on a locally hosted machine. I get the log in screen, but after I enter the credentials, I got the following response:
This error is almost certainly caused by a version mismatch of the StackExchange.Redis library, rather than anything related to the login itself. The message indicates that the application is trying to call a method that exists in one version of the library, but at runtime a different version is being loaded where that method doesn’t exist.
Since you mentioned another Creatio instance on the same server works fine, the most likely issue is that the two sites have different versions of StackExchange.Redis.dll (or related dependencies like System.Memory.dll) in their bin folders, or different binding redirects in web.config.
A good starting point is to compare the Redis-related DLLs between the working and non-working instances and make sure they match exactly. Also check the web.config for any binding redirects that might be forcing a different version at runtime. If everything looks the same, it’s worth verifying which assembly is actually being loaded, as sometimes an unexpected version can be picked up from another location.
In short, focus on aligning the Redis-related dependencies between the two instances—this type of error should be resolved once the correct assembly version is being loaded.
My UI for Opportunity in Classic and Freedom Shell are set to Freedom Pages.
Is there any other reason why in Mobile it is not using the List Page I created for Opportunity? I don't see in the Opportunity schema object places to set the List Page for Mobile
Note: I created a new Package for Mobile and checked the mobile app option in the package creation.
The way to convert Leads to Opportunities, when you are working with (creating) a new customer, is a little convoluted. I have to click on the Lead, hit save, hit converted etc. Has anyone written a business process to make that more streamlined or automatic?
For customers, where Lead management is not Marketing department but Sales department responsibility, we often start from Opportunity. So, Lead is left only for automatically Leads (like from Landing page and so on)
Within a business process does anyone know if it is possible to remove records where the same data value of a field appears more than once (distinct value)
example data
Value A
Value B
Value C
Value A
I want to be left with unique 'Values' so one of the 'Value A' records is removed.
I recently started exploring T.I.D.E (ATF TIDE) for working with Git integration in Creatio, and I’m trying to understand how widely it’s being used in real projects.
A couple of questions I had:
Is anyone here actively using T.I.D.E in their development workflow?
How stable/reliable is it compared to the default SVN approach?
Are there any proper setup guides or documentation available (especially for Git authentication and repository setup)?
Any common pitfalls or things to watch out for?
I’ve gone through some basic setup, but I’m facing issues around repository cloning and authentication, so any guidance or real-world experience would really help.