-
Content Count
98 -
Joined
-
Last visited
-
Days Won
26
X2Peter last won the day on May 17 2022
X2Peter had the most liked content!
Community Reputation
45 ExcellentAbout X2Peter

-
Rank
Advanced Member
Profile Information
-
Gender
Not Telling
Recent Profile Visitors
10931670 profile views
-
Hello Peter,
Just installed X2Engine: 7.1 but cannot send emails from Web Lead Forms interface. When I click submit, everything seems OK and even brings the "Thank you" message.
However, no emails are sent!
Any heads-up on how to overcome this issue? I am using PHP 7.1.
Regards
Tom -
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.
-
Hello alt_f4, Our next release will be using Yii version 1.1.23 and we plan on moving to Yii2 after that. Since the app has a large codebase, we plan on migrating to Yii2 over time. We will be including new features in the app using Yii2 while converting the older features to Yii2 piecemeal.
-
Unable to open files attached through Activity Feed post
X2Peter replied to therealsai's topic in Bug Reports
Hello therealsai, I believe the issue might be related to the 'media/view/' portion of the media view request: 2020/10/12 06:50:32 [error] [exception.CHttpException.404] CHttpException: Unable to resolve the request "media/view/<WEBSITE_URL>/index.php/media/media/getFile/id/2010/key/116c285d11a5332748587790e352ef81fe9eb49c688a9567e75b7afb662982e4". Would you be able to PM me the 'Public Info Settings' of your app? You can find these under the 'System Settings' of the admin control panel. -
Hello NoobJaddo, Have you setup the CRON table settings in the app? These can be accessed by going to the admin panel > system settings > cron table
-
Hello Rafer, At the moment this is not possible to at the moment. We have worked on a feature similar to this in the past however it only works with dropdowns and the color is based on the dropdown value. We can look into implementing this fully in the near future.
-
Hello Allied, Please refer to http://community.x2crm.com/topic/4181-cli-update-from-71-to-8/?do=findComment&comment=16462for assistance with troubleshooting.
- 16 replies
-
- update
- newest version
-
(and 1 more)
Tagged with:
-
Hello Allied, Regarding the 'Major' issue, it seems like it is having trouble connecting to the updates server. Could you PM me your protected/components/UpdaterBehavior.php? You might want to try running from the command line as well: curl https://x2planet.com/installs/registry/reqCheck The issue also might lie with PHP cURL itself, the following code (along with the above command) should help determine where the issue lies: <?php $ch = @curl_init("https://x2planet.com/installs/registry/reqCheck"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POST, 0); $resp
-
Unable to open files attached through Activity Feed post
X2Peter replied to therealsai's topic in Bug Reports
Hello theralsai, Can you check if your webConfig.php has '' as the value for the $url variable? -
Hello Success, You will need to update the database and the `x2_fields` table in particular. You will need to change the `readonly` attribute of `workflowId` and `stageNumber` to 0. The following should then work: curl -H 'Content-Type: application/json' -H 'Authorization: Basic {your auth here}' --request POST --data '{"workflowId":1, "type":"workflow", "stageNumber":1}' https://{domain}/index.php/api2/{modelName}/{modelId}/Actions
-
Hello Success, I believe this is possible to do via the API. You will need to set the 'workflowId' field (this fieldname is a misnomer, it is actually the ID of the Process you would like the record to be on) and the 'stageNumber' (this is the number of the stage of the process you would like the record to be on). Everything else should be straightforward such as the 'associationType', 'associationId' and 'createDate' fields.
-
Thank you for the feature idea John. We will look into adding a backup command to the codebase, this would allow the command to be run via Cron. Would you also be interested in performing backups via API?