drupal
Setting up custom styles in CKEditor with Drupal
Fri, 04/27/2012 - 19:13 | by deborahIn order to set up custom styles in the drop-down list to the CKEditor toolbar is not that difficult but the instructions here is not very well defines when you are integrating with Drupal.
Simply copy the sites/all/modules/ckeditor/ckeditor.styles.js file into your theme directory.
Apache Solr Multi-core Setup on Tomcat
Thu, 04/12/2012 - 19:45 | by deborahSetting up one Solr server with two or more Drupal sites takes some additional configuration. If this is not done, all of the data for each site goes into the same index and when searching on one site, results are returned from both sites. If that's not the desired result (faceting won't currently work correctly), then it is necessary to set up a separate Solr core for each site. Each core is a totally independent search index.
Drupalcon Denver
Mon, 03/19/2012 - 09:25 | by deborahThe Examples modules
Tue, 02/28/2012 - 14:57 | by deborahIf you are new to developing for Drupal 7 or upgrading from another version, the examples modules is a GREAT module for examples on how to develop for Drupal using the API. It gives you the basic of a lot of the common things you do when developing. Some examples included are theming (hook_theme), running cron job (hook_cron), forms (hook_form, hook_element_info), menu, node and so much more!!
Helpful Drupal theming links
Tue, 10/25/2011 - 21:36 | by deborahChange button name using form_alter
Sun, 11/28/2010 - 21:58 | by deborah<?php
/**
* Implementation of hook_form_alter().
*
* The function is named modulename_form_alter.
*/
function my_hook_module_form_alter(&$form, $form_state, $form_id) {
// Normally a switch is used because you may want to alter more than
// one form and it is easy to add a new case for each form.
switch ($form_id) {
// This is our form ID.
case 'my_new_form_node_form':
// Our kickin' mods go here.
$form['submit'] = array(
'#type' => 'submit',
Fuzetto Intranet Solution
Thu, 09/30/2010 - 08:57 | by deborahAn intranet "portal" is defined not merely by the technology platform that makes it run. When you get beyond the buzzword, a portal supports an organization and its employees by aggregating and organizing all the
information and applications that users want and need to function effectively in their jobs.
A Drupal Process
Wed, 06/09/2010 - 09:56 | by deborahFuzetto Web Solutions has been success using a Drupal Process based on a session from the Do It With Drupal conference.
I have found that every project I work on that follows this process has been on time, on budget and stress free. We are working on developing on this process that allows our clients to be more in tune with the status.
Training
Fuzetto Web Solutions offers group training and one-on-one mentoring.
We customize our training based on the needs of the individuals that are participating. Training can include site building, site administration, module development, theming and much more.
One-on-one mentoring is individual support for learning Drupal or just helping people getting through troubles they are having.
Please contact us if you are interested in Drupal Training and you will be contacted when the next training session is scheduled.
When in doubt clear the cache
Fri, 02/26/2010 - 15:26 | by deborahHave you wasted time trying to figure out why something won't worked and then find out all you needed to do was clear the cache?
UGH!
When in doubt always clear the cache so you can just rule that out.
You might also want to check the logs. You can get clues there.


