php - Vtiger 6.3 Mail scanner hangs -


dears, using vtiger 6.3

i have problem regarding mail converter scan

  • outgoing mail configured correctly
  • crm sending emails
  • mail box added correctly mail converter module
  • imap module installed , enabled @ server
  • ports correct within module files

the problem when press "scan now" button, loading , don't else

please turn off error reporting on webserver add following code config.inc.php

@error_reporting(0); 

mailmanager module send request on index.php , receive response in json string format. if server return error vtiger javascript files cannot parse invalid json string. , page hang on loading page.

also can change error reporting on config.inc.php see whats happening

ini_set('display_errors','on'); version_compare(php_version, '5.5.0') <= 0 ? error_reporting(e_warning & ~e_notice & ~e_deprecated) : error_reporting(e_all & ~e_notice & ~e_deprecated & ~e_strict);   // debugging 

also must enable log error on server check error logs how useful error messages in php?


Comments

Popular posts from this blog

Spring Boot + JPA + Hibernate: Unable to locate persister -

go - Golang: panic: runtime error: invalid memory address or nil pointer dereference using bufio.Scanner -

c - double free or corruption (fasttop) -