Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 472 online users. » 5 Member(s) | 467 Guest(s)
|
Latest Threads |
Orden en Custom View Lead...
Forum: International
Last Post: juanmax
12-04-2023, 05:15 PM
» Replies: 4
» Views: 221
|
Custom Columns in Mail Ma...
Forum: Modules/Extension Support
Last Post: inspectorflint
12-04-2023, 04:00 PM
» Replies: 0
» Views: 27
|
Email Woes: Images Not Lo...
Forum: User Support
Last Post: levis19
11-29-2023, 07:11 AM
» Replies: 0
» Views: 185
|
Workflow and field betwee...
Forum: Administrator Support
Last Post: joebordes
11-17-2023, 09:15 AM
» Replies: 3
» Views: 498
|
[SOLUCIONADO][SOLVED]Nomb...
Forum: International
Last Post: juanmax
10-30-2023, 02:47 PM
» Replies: 2
» Views: 370
|
[SOLUCIONADO] [SOLVED] Ge...
Forum: International
Last Post: joebordes
10-25-2023, 04:12 PM
» Replies: 15
» Views: 954
|
[SOLVED] How to change ex...
Forum: User Support
Last Post: geraldbigot
10-23-2023, 04:30 PM
» Replies: 11
» Views: 2,285
|
Attachment in e-mail not ...
Forum: User Support
Last Post: geraldbigot
10-23-2023, 03:12 PM
» Replies: 1
» Views: 333
|
Attachment/image related ...
Forum: coreBOS Development
Last Post: Marco Belucci
10-13-2023, 12:34 PM
» Replies: 2
» Views: 5,000
|
Gendoc odt with image lin...
Forum: Administrator Support
Last Post: joebordes
10-11-2023, 11:09 AM
» Replies: 11
» Views: 2,452
|
|
|
Best Way to Install from Scratch with all plugins/addons |
Posted by: Ekim - 10-17-2014, 01:03 AM - Forum: User Support
- Replies (19)
|
 |
Hello; I intend to use corebos as a interface for a language school reseller.
They are selling package english programs and collecting information from students to be used in school registrations.
So for this purpose I thought core bos would be perfect fit with its already programmed customer portal/crm interface; but couldnt take up the project to an end.
Tried many versions and all versions had different troubles. Now I downloaded the latest version and tried to install it but detail pages are not working again.
My host dont let me change the service variables and it works in Native mode. But set up worked properly and installed the system.
How can I get help about installation of GitHub versions?
|
|
|
Cron backupand overwriting |
Posted by: Guido - 10-15-2014, 03:53 PM - Forum: coreBOS Development
- No Replies
|
 |
I set up my Backup server in CoreBOS, and made a cron job in the database following this post: <!-- m --><a class="postlink" href="https://discussions.vtiger.com/index.php?p=/discussion/54178/backup-cron-removed/p1">https://discussions.vtiger.com/index.ph ... removed/p1</a><!-- m -->
What I didn't realize is that the backup actually also makes a copy of the entire ' storage' folder. This is cool, but if you backup say, once a week and you have a lot of documents or images your server will get clogged after a while. A couple of ideas:
- Would it be a good idea to register the Backup service as a standard in corebos? You could always activate/disable it and change the frequency through the scheduler so a normal user wouldn't have to edit the database
- Would it be smart to make the backup process delete the previous backup after completing the current one?
|
|
|
Double e-mails sent |
Posted by: Guido - 10-10-2014, 10:57 AM - Forum: User Support
- Replies (2)
|
 |
I know this problem from the vTiger 5.4, but let's reintroduce it <!-- s;-) --><img src="{SMILIES_PATH}/icon_e_wink.gif" alt=";-)" title="Wink" /><!-- s;-) -->
When you send e-mails from the mail manager, it Always sends two.. I don't know why, but it does..
|
|
|
General user interface improvements |
Posted by: Guido - 10-10-2014, 10:10 AM - Forum: Feature Requests
- No Replies
|
 |
What I have seen in all vTiger versions (including 6) is a lack of distiguishment in the UI. I mean by this, let's say you have a user that switches back and forth between invoice and salesorder listviews a lot, or keeps multiple tabs open, it can get confusing. Maybe list and detailviews should get some sort of icon, or color. Subtle, but present to increase clarity and thereby improving workflow.
|
|
|
Standard sortby in filters |
Posted by: Guido - 10-09-2014, 06:09 PM - Forum: Feature Requests
- No Replies
|
 |
When creating a homescreen widget from a module, you can choose a filter. The problem is (and always was with vTiger 5.4) that you can't determine how the list is sorted. So let's say I create a filter for projects, it would be great if you could set the standard sortation (for example newest first, or sorted by prority). Then the home screen widget would also use this sorting.
|
|
|
Projects in Calendar4you |
Posted by: Guido - 10-09-2014, 05:58 PM - Forum: Feature Requests
- Replies (5)
|
 |
First of all, congratulations on the COreBOS project. I told you this via e-mail Joe but again here in public: I like the direction you're heading.
As someone who uses the projects module a lot, I have a feature request that's basically ripped from vTiger 6. I like the way Projects and Project tasks appear in the top of the calendar there. Would be great if the same functionality could be made into CoreBOS.
|
|
|
some small improvements |
Posted by: saidmsl - 09-15-2014, 04:14 PM - Forum: coreBOS
- Replies (9)
|
 |
hi, is it possible to add the following in github :
1. mail receipt : when sending an email , it's good to know it the recipient has read or just deleted the email, good for marketing purpose
affected file : modules/Emails/mail.php
line 72 : add
$mail->ConfirmReadingTo = $mail->From; //MSL
2. order the widgets by sequence
affected file : vtlib/Vtiger/Link.php
function getAllTypes
static function getAllByType($tabid, $type=false, $parameters=false) {
global $adb, $current_user;
self::__initSchema();
$multitype = false;
$orderby = " order by linktype,sequence"; //MSL
if($type) {
// Multiple link type selection?
if(is_array($type)) {
$multitype = true;
if($tabid === self::IGNORE_MODULE) {
$sql = 'SELECT * FROM vtiger_links WHERE linktype IN ('.
Vtiger_Utils::implodestr('?', count($type), ',') .') ';
$params = $type;
$permittedTabIdList = getPermittedModuleIdList();
if(count($permittedTabIdList) > 0 && $current_user->is_admin !== 'on') {
$sql .= ' and tabid IN ('.
Vtiger_Utils::implodestr('?', count($permittedTabIdList), ',').')';
$params[] = $permittedTabIdList;
}
$result = $adb->pquery($sql . $orderby , Array($adb->flatten_array($params))); //MSL
} else {
$result = $adb->pquery('SELECT * FROM vtiger_links WHERE tabid=? AND linktype IN ('.
Vtiger_Utils::implodestr('?', count($type), ',') .')' . $orderby,
Array($tabid, $adb->flatten_array($type))); //MSL
}
} else {
// Single link type selection
if($tabid === self::IGNORE_MODULE) {
$result = $adb->pquery('SELECT * FROM vtiger_links WHERE linktype=?' . $orderby, Array($type)); //MSL
} else {
$result = $adb->pquery('SELECT * FROM vtiger_links WHERE tabid=? AND linktype=?' . $orderby, Array($tabid, $type)); //MSL
}
}
} else {
$result = $adb->pquery('SELECT * FROM vtiger_links WHERE tabid=?' . $orderby, Array($tabid)); //MSL
}
then set the order in the vtiger_links directly
more to come ...
|
|
|
cbupdater not updating |
Posted by: saidmsl - 09-10-2014, 05:30 PM - Forum: User Support
- Replies (17)
|
 |
Hi,
i have installed corebos from github last week
and update the cbupdater, i got 15 updates
today, in installed another server with latest version from github, and got 19 updates
i try to update on my old server but nothing comes , only the GO BACK is displayed
is it normal?
|
|
|
coreBOS Web Service Developer Tool and PHP 5.5 |
Posted by: apcloic - 09-10-2014, 04:31 PM - Forum: Open Discussions
- Replies (4)
|
 |
Hi All,
Looks like coreBOS community is growing, great news and congratulations to the team for this nice piece of work !
I'm trying to play with coreBOS Web Service Developer Tool using a dedicated Ubuntu Server with PHP 5.5.
It looks like I can't login while I have no issue on another server with PHP 5.3, so it may be related to php version.
Do you confirm that coreBOS Web Service Developer Tool has not been updated yet (I know that coreBOS 5.5 had been updated) ?
Regards,
|
|
|
|