Leaderboard
Popular Content
Showing content with the highest reputation since 07/06/21 in all areas
-
Hi Tanmoyrock, You can give these users a role then set it in admin "index.php/admin/editRoleAccess" which lets you set the record access, field access can be set from "index.php/admin/manageRoles" more options can also be found in the "User Management" on the admin page. -Jack2 points
-
Hi Vitalii, Go to protected/models/X2Model.php then find "$pickerOptions" under "case 'date':" and add "'yearRange' => '-100:+100'," to the array so it looks like. $pickerOptions = array(// jquery options 'dateFormat' => Formatter::formatDatePicker(), 'changeMonth' => false, 'changeYear' => true, 'yearRange' => '-100:+100', ); This will allow you to pick 100 years into the future or past. -Jack2 points
-
If you know sql you can just run describe on your table and it will list out all variables. -Jack2 points
-
"Hi, The following action: {associationName}/{subject} is pending from your end. Please view & close the action item 'your URL HERE'/index.php/actions/{id} . Please log in & complete the action."2 points
-
Hello alt_f4, We released 8.3 last January which contained a few bugfixes, and upgrade to the newest yii1 version as well as compatibility with PHP 8.0. We apologize on not making a formal announcement on the forums, we will be having another release in less than a month which will contain some changes to our GMail integration. We will be making an official forum post at this time.1 point
-
1 point
-
1 point
-
After a server upgrade X2CRM stopped working. So I needed to make some updates to get it working for a client. They are posted on GH if anybody needs. https://github.com/arduent/X2CRM Updated to run using PHP 8.0x Updated to make it work with modern MySql/MariaDB server ie, ONLY_FULL_GROUP_BY is now set by default, which totally breaks all the join/'group by' queries in X2CRM. Updates to fix for vulnerabilities reported in CVE-2021-27288, CVE-2020-21088. Added some bug fixes from ignored pull requests on main repo. Added translation updates from ignored pull1 point
-
That could be the issue for you, but if all your text of your email is intact then I would not think it is being truncated.1 point
-
Hi guys, I might be to quick but I see the upgrade to 8.3. Fantastic news and long awaited. Thanks so much for the opensource upgrade. Is there a changelog to show the changes made between 8.0 and 8.3? Thanks1 point
-
Hi Eugeneb, Happy you like the update. Yes there is a change log, we plan on posting it early next week. -Jack1 point
-
On line 67 please replace this $showUserCalendars = isset($showCalendars['userCalendars']) ? $showCalendars['userCalendars'] : 1; with this $showUserCalendars = isset($showCalendars['userCalendars']) ? $showCalendars['userCalendars'] : array(); We will put out a hot fix later this week. -Jack1 point
-
Hi User, We are pushing out a new version that will fix this issue but if you need to save right now comment out line 109 in protected/modules/docs/models/Docs.php The one where "infoDocCheck" is called. -Jack1 point
-
Hi user, This is an issue with how non arrays are handled in newer php. We have a fix in the next update coming out in a couple days but if you need it now. replace you code protected/modules/calendar/views/calendar/calendar.php around line 123 with this if(is_array($userCalendars)){ foreach($userCalendars as $user){ if(isset($this->calendarUsers[$user])){ $userCalendarFeed = $this->createUrl('jsonFeed', array('calendarId' => $user)); $checkedUserCalendars .= ' $("#calendar").fullCalendar("addEventSource",{1 point
-
Hi spiceagent11, This sound like a problem with the JS, I would check you web browsers console for any errors that pop up after you update. -Jack1 point
-
That appears to be a rogue whatsapp 'replacement' that is sideloaded on a phone. From that site you linked to it states you should only run their app if security isn't a concern. AFAIK the only way to automate / connect whatsapp is to either get approved for their developer program for api access or run whatsapp web in something like Selenium.1 point
-
New web lead, is a trigger for when a web from is submitted. What it sounds like is you are creating leads by API, in that case you should use the "Record Created" trigger and set it for leads. -Jack1 point
-
Try your web form from an incognito browser or device that you have not used to log into X2. -Jack1 point
-
I have found out what the problem is. I am using localized version (russian), and there was the problem in viewing date-type with date-picker plugin. I set English version, now I have not this problem. Thank you!1 point
-
1 point
-
Thank you for help! I could install with 5.6 PHP, there weren't any problem! The problem was php 7...1 point
-
1 point
-
Hello, I am working on a CRM solution for GBKSOFT company and have the same problem. Thanks for the efficient suggestion!1 point
-
Hi Max I think your issue stems from a php incompatibility are you running php 8 or any thing greater then 7.2? If so you might want to downgrade for now as we are working on supporting it but are current releases don't. If you want to continue to use your version this code should fix this issue public function getLastLogin () { //had to add this since php changes if(!isset($this->user['lastLogin'])) return NULL; return $this->user['lastLogin']; } but you may run into other issues. -Jack1 point
-
Okay, so I had downgraded to the last stable update of X2CRM & imported all data from this instance, Now they are working fine. Thanks for all the helps🙂1 point
-
Tried to downgrade PHP (but should work with your version)? Strange...1 point
-
For this you need to base64 encode an api key plus username. Here is a link to our wiki that gives more info. http://wiki.x2crm.com/wiki/REST_API_Reference -Jack1 point
-
Did you clean all caches? Browser and server (.../protected/runtime/cache/)? Redis?1 point