Skip to main content

Home/ Groups/ Drupal for Developers
Daniel Gregoire

file_save_upload problem saving into destination folder | drupal.org - 0 views

  •  
    Simple, clean example of adding a file field and saving the file permanently.
Daniel Gregoire

drupal_execute | DrupalContrib - 0 views

  •  
    Actual documentation for drupal_execute
Daniel Gregoire

Configuring settings using drupal_execute | drupal.org - 0 views

  •  
    Tagged for D5, but has D6 examples. Using drupal_execute (to be called drupal_form_submit in D7) to set site settings programmatically.
Daniel Gregoire

Programatically creating a CCK field in Drupal 6 | drewish.com - 5 views

  •  
    Quick 'n' easy, create CCK fields programmatically
Daniel Gregoire

Programatic CCK Now Possible! | groups.drupal.org - 2 views

  • <?phpfunction mymodule_enable() {     // Get the files content   $filename = drupal_get_path('module','mymodule') . "/mymodule.cck";  $content = implode ('', file ($filename));      // Build form state    $form_state = array(       'values' => array(            'type_name' => '<create>',            'macro' => $content,      ),     );    // Put it in there     drupal_execute("content_copy_import_form", $form_state);}?>
  •  
    Start with comment 54181 - "This works for me in Drupal 6" and read along.
Daniel Gregoire

Wiki Pages - drupal-chart-api - Project Hosting on Google Code - 2 views

  •  
    Chart API module documentation
Richard Sheppard

Drupal: Programmaticaly creating nodes | Unofficial, unsactioned stuff out of Byte Craft - 2 views

  •  
    A rough guide to drupal_execute() versus node_save() with a bit of node_submit() on the side.
Scott Blackburn

Projects | pingVision Feature Server - 1 views

  •  
    Image gallery Feature for OpenAtrium
Daniel Gregoire

Load Testing Tools and Tips | Tag1 Consulting, Inc. - 1 views

  • ApacheBench (ab)
  • $ ab -n1000 -c10 http://localhost/
  • Links: Project's web page: http://httpd.apache.org/docs/trunk/programs/ab.html Benchmarking Drupal code with ab: http://drupal.org/node/79237
  • ...5 more annotations...
  • Siege
  • siege -c 10 -i -t 5m -d 3 -f url_list.txt
  • Links: Project's web page: http://www.joedog.org/JoeDog/Siege Sproxy project page: http://www.joedog.org/JoeDog/Sproxy
  • Apache JMeter
  • Links: Project's web page: http://jakarta.apache.org/jmeter/ Load testing Drupal with JMuery, part 1: http://www.johnandcailin.com/blog/john/load-test-your-drupal-application... Load testing Drupal with JMuery, part 2: http://www.johnandcailin.com/blog/john/load-test-your-drupal-application...
  •  
    Load testing tools. ab and siege are command-line, JMeter is graphical (and written in Java).
Scott Blackburn

Playing Nicely With Others: Integrating Drupal with Third-Party Data | Acquia - 3 views

  •  
    Good recorded webinar exploring some ways of integrated large amounts of third-party data into Drupal.
Scott Blackburn

Best Drupal CDN module? | groups.drupal.org - 4 views

  •  
    This is the best and most up-to-date thread concerning CDN integration that I've found. The discussion contains a few examples of what others are doing for their projects.
Daniel Gregoire

Nick Sergeant :: Drupal 6ers… register your theme functions! Here's how. - 3 views

  • <? function name_of_module_theme() { return array( 'name_of_theme_function' => array( 'arguments' => array('items' => NULL) ) ); }
  • <? function theme_name_of_theme_function($items = NULL) { $output = 'hey, this is some output that gets generated when theme_name_of_theme_function($items) is called from somewhere'; return $output; }
Daniel Gregoire

Tips & Tricks | Drupal + FCKeditor - 5 views

  •  
    Instructions for enabling spell checking in FCKEditor (using Aspell and Spellchecker, the latter leaving ads unless a license/hosted version is purchased)
Daniel Gregoire

forms_api_reference.html | Drupal API - 0 views

  •  
    Drupal 6 Form API Reference
Daniel Gregoire

Programmatically create a CCK node | Eric's Drupal Blog - 6 views

  •  
    Programmatic CCK nodes: node properties.
« First ‹ Previous 41 - 60 of 457 Next › Last »
Showing 20 items per page