SugarCRM, Modules, curl, php ubuntu

October 30, 2007

When trying to use the Module Loader in SugarCRM there was this warning displayed
Please ensure that you have curl enabled.

I have SugarCRM on Ubuntu, there are different curl packages found one related to php: php5-curl

Installing this ($sudo apt-get install php5-curl) fixed this warning and gave access to the module loader.


free, open source databases

October 10, 2007
  1. Firebird – IDPL, seems to be free for all practical purposes; see explanation in their main page
  2. Postgresql – BSD
  3. mysql – GPL
  4. HSQLDB – seems to be free

(see also in-memory databases)


In-memory databases?

October 10, 2007

I wanted to check option for in-memory or embedded databases and found the following (of course there are a lot more out there)

  1. JoSQL
  2. H2
  3. HSQLDB
  4. XQuery, Creating an In-Memory Database Using XML and XPath
  5. There is also Apache Derby

others

  1. Perst from McObject (eXtremeDB) – open source, free for non-commercial
  2. TenTimes – accquired by oracle somtime back
  3. embedded mysql
  4. etc etc

CSS – browser page border missing

October 2, 2007

this will never be problem for people who use CSS everyday.

The scroll bar on the browsers stopped showing up on the pages I was developing and then I realized my stupid mistake:
overflow:hidden;
for the body tag which I had forgotten to remove after some testing I had done earlier.