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
Comment #1
garywg commentedThis 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.
Comment #2
garywg commentedI 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.
Comment #3
modoq commentedsame problem here. erp profile won't install.
Comment #4
modoq commentedOk, it does work with the older version 2.0 of the context module (http://drupal.org/node/815360)
Comment #5
lismail commentedYes, 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.
Comment #6
leenx commentedI updated the make file to include context module and ctools, plus jquery_ui, that is needed later on. Will post my updated make file.
Comment #7
leenx commentedBasic 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"
Comment #8
leenx commentedThis 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