Skip to main content

Home/ Drupal for Developers/ Group items tagged custom

Rss Feed Group items tagged

Daniel Gregoire

Reducing server resource utilization for busy sites by implementing fast 404s in Drupal... - 3 views

  • // List of extensions for static files $exts = 'txt|png|gif|jpe?g|shtml?|css|js|ico|swf|flv|cgi|bat|pl|dll|exe|asp|xml'; // It is not an imagecache path, which we allow to go through Drupal if (!strpos($_SERVER['QUERY_STRING'], 'imagecache')) { // It is not our main feed page if ($_SERVER['QUERY_STRING'] != 'rss.xml') { // Is it a static file? if (preg_match('/\.(' . $exts . ')$/', $_SERVER['QUERY_STRING'])) // Just send a 404 right now ... { header('HTTP/1.0 404 Not Found'); print '<html>'; print '<head><title>404 Not Found</title></head>'; print '<body><h1>Not Found</h1>'; print '<p>The requested URL was not found on this server.</p>'; print '</body></html>'; exit(); } } }
  •  
    Fast Drupal 404 handling for static files.
Scott Blackburn

Making Subversion/SVN recognize CVS Id and Revision tags | 2bits.com, Inc. - Drupal Dev... - 0 views

  •  
    One annoying aspect though is that almost all Drupal files use CVS style tags, such as the $Id$ one. Subversion does not recognize these by default. However, there is a way to make Subversion recognize these tags. This post describes the steps needed to achieve this goal.
Scott Blackburn

How to get user's custom content in blocks | drupal.org - 0 views

  •  
    if ( ($type=='block') && is_numeric(arg(1)) ){ $args[0] = arg(1); } return $args;
Scott Blackburn

PHP op-code caches / accelerators: Drupal large site case study | 2bits.com, Inc. - Dru... - 0 views

  •  
    Excellent resource for PHP op-code cache information
Scott Blackburn

Drupal Performance Tuning and Optimization for large web sites | 2bits.com, Inc. - Drup... - 0 views

  • articles discuss performance tuning and optimization of Drupal as it pertains to web sites with a large number of visits and page views.
  •  
    Great list of articles that "discuss performance tuning and optimization of Drupal as it pertains to web sites with a large number of visits and page views."
Leandro Ardissone

Creating a Compound Field Module for CCK in Drupal 6.x, from Poplar ProductivityWare Ar... - 8 views

  •  
    Create a new CCK field.
  • ...1 more comment...
  •  
    This is a nice foray into defining your own custom field types in CCK. Thanks for sharing. However, as regards "multi-groups" in CCK, I've used CCK version 6.x-3.x-dev and it's worth a look.
  •  
    Oh, really? I'm just needing to use multi-groups. Well, multiple-fields field group, or whatever. For example a recipe with ingredients where you can enter: amount (textfield), unit (option field), ingredient name (textfield). Thanks.
  •  
    when your ready to go to drupal 7 here is the article for that http://www.phase2technology.com/node/1495
Graham Sutcliffe

Delivery Information not showing up when using uc_cart_add_item | Ubercart - 0 views

    • Graham Sutcliffe
       
      When adding cart items through a custom module ensure auc_cart_add_item() function has attribltes but calling module_invoke_all().
  •  
    How to make Drupal ubercart retain shipping rules when using uc_cart_add_item()
seth kutcher

Two Thumbs Up For Computer Assistance Services - 2 views

I am so happy for the computer assistance that Computer Assistance Online gave me. They provided me with precise and fast solutions to my computer problem. Their computer specialists really know wh...

computer assistance

started by seth kutcher on 06 Jun 11 no follow-up yet
webExplorations

The Drupal Cookbook (for beginners) | drupal.org - 0 views

  •  
    A nice summary giving an overview of what you can do with Drupal as well as the ability to zoom in on certain things such as menus and taxonomy. Great to help new folk get started with Drupal.
‹ Previous 21 - 40 of 40
Showing 20 items per page