- HaroKisy likes this
- Zurmo Forums
- → Viewing Profile: Likes: Ivica
Community Stats
- Group Moderators
- Active Posts 565
- Profile Views 12,474
- Member Title Advanced Member
- Age 43 years old
- Birthday December 23, 1975
-
Gender
Not Telling
User Tools
Latest Visitors
#2196 csv import problem
Posted by Ivica
on 01 October 2012 - 09:36 AM
#2163 PHP Curl
Posted by Ivica
on 23 September 2012 - 06:31 AM
- Michaelpaf and MiguEquabs like this
#2066 What is the difference between admin and super admin?
Posted by Ivica
on 06 September 2012 - 09:03 AM
Super admin user can setup rights/permissions for other users too, and for admin users.
Best practice is to have only one super admin user is system.
- mindtween likes this
#2047 How to update customfielddata without reinstall?
Posted by Ivica
on 05 September 2012 - 05:12 AM
But you can edit these custom fields from Designer tool. Open Designer, select module where this custom field belongs too, then click on 'Fields' tab, select custom field you want to edit, and click on 'Configure'.
- manoj4web likes this
#2008 Email Notifications
Posted by Ivica
on 30 August 2012 - 05:15 AM
There are two types of notifications, critical and non-critical. When non-critical notification is created, email will not be sent, and user will get just notification. In case of critical notification, notification will be created, and email will be sent(usually to super admin only).
- MiguEquabs likes this
#1989 API Errors
Posted by Ivica
on 28 August 2012 - 01:55 PM
You need to setup $testApiUrl parameter in perInstanceTest.php(perInstanceTest.php file will be created automatically after you run unit tests for the first time, and please use different database settings in this file from one you use for production).
Then you can run api tests:
phpunit TestSuite.php api --no-freeze
More details about Zurmo unit testings can be found here: http://zurmo.org/tut...tests-explained
If you still have problems, please post output from phpunit here, and I will try to help you to fix issues.
- MiguEquabs likes this
#1972 IMAP setting
Posted by Ivica
on 24 August 2012 - 02:54 PM
I also edited Email Archiving wiki article, and added sample settings for unit tests using Gmail email accounts..
- tiurlg likes this
#1921 Missing "Status" Option in Create Lead
Posted by Ivica
on 21 August 2012 - 11:03 AM
What you can do is to add new statuses, via Designer->Contacts->Fields->Status->Configure, or/and change Contact starting status.
- ecubuntu likes this
#1816 Custom fields backup
Posted by Ivica
on 13 August 2012 - 03:43 PM
- Larsulp likes this
#1462 Email Configuration with GMAIL SMTP
Posted by Ivica
on 12 July 2012 - 08:56 AM
- CheapCig and Ronknogrell like this
#1461 Email Configuration with GMAIL SMTP
Posted by Ivica
on 12 July 2012 - 08:48 AM
- AndyCig, CheapCig, Chasbroosy and 3 others like this
#1444 auto updates in bit bucket org
Posted by Ivica
on 11 July 2012 - 06:45 AM
<?php shell_exec('cd path_to_zurmo_root_folder'); shell_exec('hg pull'); shell_exec(''hg update); ?>But I would prefer more shell script on Linux or batch script for windows. Below is Linux version:
#!/bin/sh cd path_to_zurmo_root hg pull hg updateand just set cron to call it every minute.
- shaik likes this
#1432 auto updates in bit bucket org
Posted by Ivica
on 10 July 2012 - 11:51 AM
You need to set this cron on your production server, and also to place there shell script. So, that shell script should have those commands:
cd path_to_repository
hg pull
hg update
And call it every minute or every five minutes, depending on your needs.
- shaik likes this
#1430 auto updates in bit bucket org
Posted by Ivica
on 10 July 2012 - 09:41 AM
1. On your server create cronjob that will pull and update code on your server every minute or every five minutes. This is the way I recommend.
2. You can create service(remote action trigger): Admin->Services, select POST type, and enter url of script that will be called everytime you push changes to server. Although this changes will be updated as soon as you push code, because code would be a bit more complicated, I suggest first option.
- HaroKisy likes this
- Zurmo Forums
- → Viewing Profile: Likes: Ivica