Hello

Here is how to resolve the Resolution of the Context and Context UI Module Not present Message while installing issue while installing the ERP Profile.

Go to the Context Project. Download Same. Load into /profiles/drupalerp/modules/

And Run Install again.

It worked for me!

HTH

Comments

garywg’s picture

This is not working for me. I followed instructions as noted. Anyone have any suggestions.

I am not a developer or any advanced computer whiz. I do run a small business and I am interested in trying out the drupal erp solution.

garywg’s picture

I tried the install again with the context module installed, I get the same message.

Fatal error: Call to undefined function ctools_include() in /home/gcom1/public_html/erp/profiles/drupalerp/modules/context/context.module on line 459

I hope someone is checking this page out.

modoq’s picture

Priority: Minor » Critical

same problem here. erp profile won't install.

modoq’s picture

Status: Active » Closed (fixed)

Ok, it does work with the older version 2.0 of the context module (http://drupal.org/node/815360)

lismail’s picture

Yes, you will also need Chaos Tools.
1. Just download Chaos Tools at http://drupal.org/project/ctools and extract to your module directory
2. Edit install profile file at /profiles/drupalerp.profile
3. Find these text: 'autologout', 'admin_menu', .... and so on
4. Add 'ctools', before 'autologout' (don't forget comma)
5. Then, continue with install.

leenx’s picture

I updated the make file to include context module and ctools, plus jquery_ui, that is needed later on. Will post my updated make file.

leenx’s picture

Basic drush make file that seems to work and build a platform in Aegir. (Did not attached) ...

core = 6

api = 2

;projects[drupal] = 6.15
;projects[drupal] = 6.20
;projects[] = drupal
projects[drupal][type] = "core"

projects[] = autologout
projects[] = admin_menu
projects[] = advanced_help
projects[] = calendar
;Old Module, not supported
;projects[] = countdowntimer
projects[countdowntimer] = 2.21
; New module for above, but ERP does not support it yet.
;projects[] = jstimer
projects[] = date
projects[] = dirtyforms
projects[] = gmap
projects[] = install_profile_api
projects[] = nice_menus
projects[] = onbeforeunload
projects[] = print
projects[] = quicktabs
;projects[] = services
projects[] = token
;projects[] = ubercart
projects[] = views
projects[] = workflow

; Stable
;projects[] = erp
projects[erp] = 1.x-dev
projects[] = erp_theme

; ERP needs these old modules to install
projects[context] = 2.1
projects[ctools] = 1.6

; Fault with the base install, need old modules to install.
;projects[] = context
;projects[] = ctools

; Needed for Data popup, should be in the profile enabled.
projects[] = jquery_ui

; jQuery UI lib
libraries[jquery_ui][download][type] = "get"
libraries[jquery_ui][download][url] = "http://jquery-ui.googlecode.com/files/jquery.ui-1.6.zip"
libraries[jquery_ui][directory_name] = "jquery.ui"
libraries[jquery_ui][destination] = "modules/jquery_ui"

projects[] = libraries

; PrintPDF - domPDF
libraries[dompdf][download][type] = "get"
libraries[dompdf][download][url] = "http://dompdf.googlecode.com/files/dompdf_0-6-0_beta2.zip"
libraries[dompdf][directory_name] = "dompdf"

; Install ERP profile
projects[drupalerp][type] = "profile"
projects[drupalerp][download][type] = get
projects[drupalerp][download][url] = "http://drupalcode.org/project/drupalerp.git/blob_plain/refs/heads/6.x-1...."

; ERP profile install, the correct way, but I can't get it to work.
;projects[drupalerp][type] = "profile"
;projects[drupalerp][download][type] = "cvs"
;projects[drupalerp][download][module] = "contributions/profiles/drupalerp"
;projects[drupalerp][download][revision] = "DRUPAL-6--1-1-BETA3"

leenx’s picture

This has not been closed, so if you are interested, I have patches and make build file at http://files.leenx.biz/erp/20111130a/erp.make

If you have drush and drush make install, you can just do

drush make http://files.leenx.biz/erp/20111130a/erp.make folder-name

This should build a complete platform with my test theme and a few patches in place.

Enjoy
LeeT