Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 446,998
» Latest member: baniuslxko
» Forum threads: 1,741
» Forum posts: 9,034

Full Statistics

Online Users
There are currently 720 online users.
» 2 Member(s) | 718 Guest(s)

Latest Threads
[RESUELTO] - Tipo de impu...
Forum: Administrator Support
Last Post: joebordes
6 hours ago
» Replies: 13
» Views: 7,818
little bug trasformin LEA...
Forum: Administrator Support
Last Post: payalbatra
04-23-2024, 06:57 AM
» Replies: 4
» Views: 3,576
como manejar github en un...
Forum: International
Last Post: ntermacabre
04-10-2024, 03:52 AM
» Replies: 2
» Views: 1,214
whatsapp
Forum: User Support
Last Post: Yash
04-03-2024, 09:26 AM
» Replies: 2
» Views: 6,079
PRODUCTS IN ACCOUNTS BY O...
Forum: User Support
Last Post: joebordes
03-31-2024, 11:04 PM
» Replies: 1
» Views: 360
Attachment in e-mail not ...
Forum: User Support
Last Post: julikarole
03-13-2024, 05:59 AM
» Replies: 2
» Views: 1,142
Mail Manager - Options Se...
Forum: Administrator Support
Last Post: joebordes
03-06-2024, 11:52 PM
» Replies: 16
» Views: 18,348
Intermittent issues after...
Forum: User Support
Last Post: joebordes
03-06-2024, 11:44 PM
» Replies: 9
» Views: 1,650
Custom Columns in Mail Ma...
Forum: Modules/Extension Support
Last Post: joebordes
03-06-2024, 11:42 PM
» Replies: 1
» Views: 2,164
[Solved] Gendoc - Contact...
Forum: Administrator Support
Last Post: geraldbigot
02-10-2024, 08:32 AM
» Replies: 2
» Views: 923

 
  [SOLVED] Update cbupd-0000058: cronbackup update failed
Posted by: Guido1982 - 11-05-2015, 09:48 AM - Forum: Administrator Support - Replies (4)

All my COREBOS updater updates are OK, except for this one. I get the error:

INSERT INTO vtiger_cron_task (name ,handler_file ,frequency ,laststart ,lastend ,status ,module ,sequence ,description) VALUES ('Native Backup', 'cron/modules/VtigerBackup/VtigerBackup.service', '86400', '0', '0', '0', 'VtigerBackup', '7', 'Backup with no external tools. Can easily run into memory limitations and really slow down the server. Good for smaller sets of information.')
Changeset cbcronbackup applied!
ERROR: Class called without update record in application!!

Or check attachment for screenshot



Attached Files Thumbnail(s)
   
Print this item

  [SOLVED] Remove Colorizer to get Layout editor working
Posted by: Guido1982 - 11-05-2015, 09:37 AM - Forum: Modules/Extension Support - Replies (9)

I've been having problems entering the layout editor for some modules. After turning on the debug by adding:

Code:
error_reporting(E_ALL);
ini_set("display_errors", "on");
to the top of the index.php file I was able to find out that there was a fatal call to the colorizer module (by Stefan Warnat). This being a development environment and not using the module that extensively I decided to remove the module with the deleteModule script in the build/helperscripts folder.

After that, I even removed the tables Colorizer created created from the database (I looked in the module manifest and these were the only two it created). Now, when I try to open the Layout editor of for instance Sales Orders, I still get:

Code:
Sorry! Attempt to access restricted file.
We are looking for this file path: modules/Colorizer/Colorizer.php
We are looking here:
Real file path:
Root dir path: /my_path/crmdevelop/

So still there is some reference to the module, but I can't find it.

EDIT:
Also the detailview for all modules that used Colorizer are now not functioning, giving the same message. I thing module includes will not be done in Smarty files, so I need to look in some PHP files that make up the detailview I think.

An update:

I re-installed the module Colorizer (just for debugging) and this is the fatal error in the Layout Manager:

Code:
Fatal error: Call to undefined method Colorizer_ColorWidget::title() in /home/guidog/domains/cbx-nederland.nl/public_html/crmdevelop/modules/Settings/LayoutBlockList.php on line 356

Looking into the file LayoutBlockList.php I see the 'widgets' are loaded here. Maybe the uninstalling of Colorizer did not remove the widget registration? Now to find out where the widgets are stored and how to remove them.

Print this item

  Conexión con Google Calendar
Posted by: unaitwo - 10-23-2015, 07:01 AM - Forum: Spanish - Replies (3)

Hola, he encontrado diferentes soluciones para conectar diferentes versiones de Vtiger con google calendar, cual es la idonea para Corebos CRM????

Lo del siguiente link sigue siendo válido??
http://www.its4you.sk/en/vtiger-shop/for-vtiger-crm-5-x.html?pbrecord=73357

Print this item

  create quote fails with tax NaN
Posted by: opto - 10-20-2015, 09:36 AM - Forum: User Support - Replies (3)

upgrade from vt5.3->5.4->cb:

I cannot create a quote: tax is set as not a number and storing fails (individual tax mode).
No changes since vtiger - times where it works.
any help is appreciated,

Klaus

Print this item

  No se muestran los datos después de importación en custom fields
Posted by: jarsanchez - 10-14-2015, 11:38 AM - Forum: Spanish - Replies (3)

He creado 65 nuevos campos personalizados en el Módulo Contactos, mediante un script según vtlib 5.2.

Tras la importación de los registros mediante un fichero CSV (no se genera ningún tipo de error y se confirma correctamente el número de registros importados), sólo se muestran los datos mapeados con los campos estándar del crm (ejemplo: Nombre, Apellidos, Teléfono, etc etc). Los campos personalizados aparecen vacíos.

En cambio, se muestran correctamente los datos después de la importación, si creo previamente dichos campos personalizados directamente desde el Editor.

Si en un registro ya creado, lo edito para rellenar cualquiera de los campos personalizados que fueron creados mediante el script, muestra correctamente el dato insertado.

Adjunto detalle (por ejemplo de un par de campos) del script de creación:

...
$Vtiger_Utils_Log = true;

include_once('vtlib/Vtiger/Module.php');
include_once('vtlib/Vtiger/Block.php');

$module = Vtiger_Module::getInstance('Contacts');

//*************************************** Bloque: Datos Personales *******************************************
$bloque = 4; // Bloque Datos Personales (blockid) = 4
$block = Vtiger_Block::getInstance($bloque, $module);

// CAMPO: DNI
// ========
$field3 = new Vtiger_Field();
$field3->name = 'DNI';
$field3->label = 'DNI';
$field3->table = 'vtiger_contactscf';
$field3->column = 'dni';
$field3->columntype = 'VARCHAR(9)';
$field3->uitype = 1;
$field3->typeofdata = 'V~O~LE~9';
$block->addField($field3);

//********************************************** Bloque: Historial 1 ******************************************
$block2 = new Vtiger_Block();
$block2->label = 'LBL_CUSTOM_HISTORIAL1';
$block2->sequence = 3;
$module->addBlock($block2);

// CAMPO: Epilepsia o convulsiones
// ====================
$field7 = new Vtiger_Field();
$field7->name = 'Epilepsia';
$field7->label = 'Epilepsia';
$field7->table = 'vtiger_contactscf';
$field7->column = 'epilepsia';
$field7->columntype = 'TINYINT(3)';
$field7->uitype = 56; // A checkbox which takes input in the form of yes or no.
$field7->typeofdata = 'C~O';
$block2->addField($field7);
...

No encuentro el error. Agradecería cualquier sugerencia o información al respecto.

Muchas gracias. Saludos.

Print this item

  Problemas con los avisos
Posted by: unaitwo - 10-13-2015, 05:06 PM - Forum: Spanish - Replies (16)

El caso es que los avisos de las tareas no me van, puedo enviar mails desde el sistema, lo he comprobado, he buscado info por internet, y tras haber leido que podía ser problema de la definición del timezone, me he puesto a cambiarlo por Spain/Madrid, ya que este es el huso horario que necesito

- Primero en el config.iinc.php. tras realizar el cambio seguía sin funcionar, y el valor en la bbdd de timezone sigue siendo UTC
- Segundo, miro el valor en el usuario, no fuera este el problema, y veo que su valor es Europe/Amsterdam, que en teoría podría ser valido, y desde phpmyadmin, lo cambio también por Spain/Madrid, el sistema sigue sin funcionar.

Ahora he observado, que a la hora de introducir la tarea en la tabla activity, veo que lo sigue haciendo en la hora UTC, es decir, 2 horas menos que la hora que defino en el formulario, a modo de ejemplo, si creo una tarea a las 16:30, me la guarda a las 14:30, no se si este será lo que provoque el error, entiendo que puede no serlo, ya que quizás el sistema trabaje con UTC, y lo cambie al necesitarlo, pero el caso es que no me envía en ningún caso los avisos.

Print this item

  multiple related to popup hierarchy
Posted by: saidmsl - 10-11-2015, 03:28 PM - Forum: coreBOS - Replies (1)

Hi,

 i try to explain  :
in edit view , we can have multiple related fields (uitype = 10) ,
when selecting using the popup, it would filter depending of the parent id 

Ex : 

Invoice :
the invoice is both related to organisation and contact, 
if i set the organisation first , when popup the contacts it should display only contacts related to this organisation

is it possible to have a generic code for the popup for any uitype = 10 ? 

rgds

Print this item

  Email maker don' send emails
Posted by: bofax - 09-13-2015, 11:30 AM - Forum: Modules/Extension Support - No Replies

Hi
I've installed free version of Emailmaker in Corebos 5.5 (EMAIL Maker 540.00.08 from IT-Solutions4You). I can desing template emails but last step, send a email from detail view, return nothing.

Any idea?

Thanks!

Print this item

  documents and utf8
Posted by: opto - 09-07-2015, 10:23 AM - Forum: User Support - Replies (1)

whereas web interface and UI work fine in utf8, we have problems with documents.

Their filenames come back from the system in utf8, which windows does not like.
So all filenames with special names look scrambled (= utf8 bytes are displayed as latin)..
Is there something one can do with it? (same in vt 530)

Klaus

Print this item

  coreBOS Webservice Library for AngularJS : sample code
Posted by: saidmsl - 09-04-2015, 08:41 AM - Forum: coreBOS - Replies (8)

Hi,

does anyone have a test code of how the library works

the github page have only the login page.

rgds

Print this item