-
include/categories-sidebar.php
line22:
$categories_sql = "select category_pretty_name, category_display_html
line36-45:
//execute our query
$rst = $con->execute($categories_sql);
$categories = array();
if ($rst) {
while (!$rst->EOF) {
array_push($categories, $rst->fields['category_display_html']);
$rst->movenext();
}
$rst->close();.
2009-08-12 14:51:39 UTC in XRMS CRM
-
try to change the value on max_execution_time and max_input time.
Got the same problem with a portable installation - increasing both fixed it.
it is located in the php.ini around line 240 (in my setup)
I used the following values to get it up an running.
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 360 ; Maximum execution time of each...
2009-07-16 14:16:51 UTC in XRMS CRM
-
omg Brian...
manymany thanks for your fast reply - got it fixed by that one.
/xrms/include/classes/HTML/QuickForm/Renderer/default.php
got 2 empty lines after the closing ?> tag.
deleted them and everythings fine.
Browsed the source here on sourceforge:
http://xrms.cvs.sourceforge.net/viewvc/xrms/xrms/include/classes/HTML/QuickForm/Renderer/Default.php?view=markup
version 1.2 of...
2009-07-08 19:04:14 UTC in XRMS CRM
-
Hi!
Back again...
Anyone got a hint on this error:
Using
Companies -> choose a company -> addresses -> one or more addresses are shown, select one ->
(link: http://xampp/xrms/companies/one-address.php?form_action=edit&return_url=addresses.php%3Fcompany_id%3D3%26edit_contact_id%3D&company_id=3&address_id=3)
the following error shows up:
Warning: Cannot...
2009-07-08 16:47:53 UTC in XRMS CRM
-
Fixed the crash / not beeing able to change language.
Had to disable the module php_gettext to get things to work.
Tested it on xampp 1.71 - runs fine. Will do further testing on how xrms behaves now.
Looked at the php.ini at Ubuntu Server, but the module loading mechanism differs from that one in xampp, so I was not able to disable only this module.
Cheers
Oliver.
2009-06-29 22:34:49 UTC in XRMS CRM
-
Ok, changed the line
;extension=php_gettext.dll
to
extension=php_gettext.dll
restarted the portable mowes version, tried to access xrms via webbrowser and voila - httpd.exe crashes.
will try this one on xampp / ubuntu server virtual.
2009-06-29 19:26:27 UTC in XRMS CRM
-
Hi Ivaylo,
tried the mowes portable with xrms cvs once more.
after setting up xrms on mowes (I used the same version I tried first time), all errors I had seen the first tryout time refer to a missing arial.ttf font file in jpgraph.
Dont know where to place the missing arial.ttf file on this portable version but it is no xrms problem.
But there is an issue - when xrms displays the search...
2009-06-29 19:23:29 UTC in XRMS CRM
-
Hm.
Renamed the database and the xrms directory located at var/www/ , downloaded the latest stable (1.99.2 2006) from the website and set it up on the same Virtualbox / Ubuntu Server (9.04).
And guess what - changing language under preferences doesn't change anything. The whole things stays in english.
Cheers
Oliver.
2009-06-29 16:42:40 UTC in XRMS CRM
-
Hi Brian,
gettext is up and running as far as I can tell.
Phpinfo shows gettext support enabled, locale -a shows languages, packages are installed, but no additional configuration is done.
Cheers
Oliver.
2009-06-19 03:06:38 UTC in XRMS CRM
-
Hi Ivaylo,
I will go through all installations, is there any hint on what options or .ini to change / which logfiles to check? I'm not really into administration of lamp/wamp servers, so any advice will be welcome.
php.ini:
error_reporting = E_ALL & ~E_NOTICE (set strict or use other options regarding the language problem?)
display_errors = On
display_startup_errors = ? (standard...
2009-06-19 03:03:50 UTC in XRMS CRM