Drupal Issues

location module for cck - problem

* warning: array_filter() [function.array-filter]: The first argument should be an array in /var/www/vhosts/lafra/sites/all/modules/location/contrib/location_cck/location_cck.module on line 389.

patch location.module solve the problem:

Changing line 386 from location_cck.module from:

'hide' => array_keys(array_filter($item['location_settings']['display']['hide'])),

to:

'hide' => (isset($item['location_settings'])) ? array_keys(array_filter($item['location_settings']['display']['hide'])) : array(),

preview node -- taxonomy , taxonomy superselect problem

patch the taxonomy superselect module solves this problem

collapse div the easy way - drupal 5

While trouble shooting why the collapseblock module does not work on the site we are developing, I find that the use of panel for those dynamic blocks does not go well with the javascript in that module. Unless we are willing to spend more time to rewrite that so it can be used in our situation, or go to to route of general tool.

imagecache mkdir() permission problem

While configuring imagecache preset on a new drupal 6 installation, I got the following error message:

* warning: mkdir() [function.mkdir]: File exists in /pathto/modules/acquia/imagecache/imagecache.module on line 526.
* The selected file sites/default/files/imagecache_sample.png could not be uploaded, because the destination sites/default/files/imagecache/Video_thumbnail/imagecache_sample.png is not properly configured.

Drupal 6, Panel 2 CSS Problem

I am styling a site for a client with extensive background images and jquery nice menus. The style looked great in firefox. However, when I checked with IE and other browsers, I find that there are quite a few of them returns a stripped down version of the site. No images has been left. It sends me 'flying all over the net' to search for a solution, tried different hacks for the quirk mode and box models that are more geared towards to IE 5 and earlier.

Syndicate content