Hi Guys,
Does services module respond to XML requests correctly?
I am facing some issues in this aspect.
Thursday, December 16, 2010
Wednesday, January 20, 2010
Drupal 7.0 Alpha 1 released
Drupal 7.0 Alpha 1 released
This alpha includes a tremendous number of new features and new under-the-hood improvements for both users and developers. Lets explore!Wednesday, October 14, 2009
Fix: Parameter 1 to theme_imagefield_widget() expected to be a reference ....
warning:
search for 'imagefield_widget.inc' in your modules directory:
now within this file search for
update it with:
compatibility problem with PHP 5.3
Parameter 1 to theme_imagefield_widget() expected to be a reference, value given in your URL\includes\theme.inc on line 617.Fix:
search for 'imagefield_widget.inc' in your modules directory:
now within this file search for
'function theme_imagefield_widget(&$element)'
update it with:
'function theme_imagefield_widget($element)'Reason:
compatibility problem with PHP 5.3
Monday, October 12, 2009
Want to Add fields to terms ?
Are you looking for a way to add fields to terms like fields to content types via CCK Fields ?
Then here is the suitable module for you: Term Fields
Using this module you can add - single/multi row textbox, numeric, date, select box types of fields to the terms of a vocabulary.
Then here is the suitable module for you: Term Fields
Using this module you can add - single/multi row textbox, numeric, date, select box types of fields to the terms of a vocabulary.
Friday, October 9, 2009
FIX - Deprecated: Function ereg() is deprecated
Deprecated: Function ereg() is deprecated in drupal-6.14\includes\file.inc on line 902
FIX:
Find the below line:
Update it to:
FIX:
Find the below line:
elseif ($depth >= $min_depth && ereg($mask, $file)) {
Update it to:
elseif ($depth >= $min_depth && mb_ereg($mask, $file)) {
Tuesday, October 6, 2009
Friday, September 25, 2009
Drupal 6 Site Blueprints
I am back on to the board with some review on the latest editions which I got from the packt publishers team.
Here is the 1st title: 'Drupal 6 Site Blueprints' by 'Timi Ogunjobi'
I will be coming up with a review on this book
Here is a 'sample chapter'
Subscribe to:
Posts (Atom)