Skip to main content

Home/ Drupal for Developers/ Group items tagged for

Rss Feed Group items tagged

Daniel Gregoire

How many RSS subscribers? | VenturaCottage.com - 2 views

  •  
    Quick snippet for adding number of subscribers to RSS feed by looking at accesslog. See comments for (better) alternatives.
Fabola smith

Computer Troubleshooting - Now at Your Ease - 0 views

  •  
    With the availability of online help at all times and everywhere, it's not surprising to see people going onto internet for any and all kinds of computer troubleshooting problems. Calling up vendors and taking appointments for the help and eventually...
Ace Dee

SEO Services that Exceeds Expectations - 1 views

Oracle Digital impressed me greatly with their content, knowledge and passion for the industry. After following Oracle Digital for three months and liking what I saw, I approached them for an initi...

SEO Perth Brisbane

started by Ace Dee on 21 Feb 11 no follow-up yet
amelia_joe

Excellent Antivirus Apps for Android Devices - 0 views

  •  
    Whether it is to protect your phone from theft or any Trojan, here mentioned are the best antivirus apps available for Android devices.Read more at: http://losangeles.fortuneinnovations.com/news/excellent-antivirus-apps-android-devices
informatics12

eCommerce Website Design Houston, Website Designer Houston - 0 views

  •  
    At our eCommerce website designing company, we have developed tens of online stores, and we understand what it takes to convert your visitors into buyers. Thanks to complete responsiveness, our sites are all ready for the mobile era, making it easy for your customers to browse and order your products. And thanks to intuitive CMS, you can manage your inventory and run your business hassle-free.
paresh sagar

10 points to consider before hiring a Drupal developer - 0 views

  •  
    A developer should have a curious mind to create unique solutions for a project. Make sure to check the innovative skills of the person before hiring a Drupal developer for your website.
clariene Austria

Web design seo - 3 views

If your website is not being listed on search engines, then you're missing out on a lot of business. Google has already overtaken yellow pages when it comes for searching for local business provide...

started by clariene Austria on 09 May 12 no follow-up yet
clariene Austria

Never Pay for Leads Again! Online Leads are Free. - 2 views

Leads don't grow in trees. You probably know the value of a lead to your business and how much you would pay for a lead. But what if you could create a system for lead generation marketing that wo...

started by clariene Austria on 14 May 12 no follow-up yet
clariene Austria

Never Pay for Leads Again! Online Leads are Free. - 2 views

Leads don't grow in trees. You probably know the value of a lead to your business and how much you would pay for a lead. But what if you could create a system for website lead generation that worke...

started by clariene Austria on 04 Jun 12 no follow-up yet
Daniel Gregoire

Setup of /sites directory for multi-site | drupal.org - 0 views

  •  
    Good overview of directory structure for setting up Drupal multisite installations.
Scott Blackburn

Alternative templates for different block types | drupal.org - 0 views

  •  
    Here's a little trick that will allow you to use a different block.tpl.php for a specific block. You can control by Block name or Block ID. Here' a modified block.tpl.php with a conditional at the top. All you need to do is edit the module == '[modulename
Daniel Gregoire

3 Tips For Using External Libraries With Drupal | Engineered Web - 4 views

  •  
    Good tips for using external libraries with Drupal.
Daniel Gregoire

Example Varnish VCL for a Drupal / Pressflow site | Drupal - 1 views

  •  
    Example Varnish configuration, used for optimizing site performance with file and database caching.
Daniel Gregoire

Module Development - Schema Won't Install | drupal.org - 0 views

  • I had similar symptoms ... a simple install file that wouldn't create a table. However, I got it to work by going into the Drupal system table and deleting the record for my module. Then the next time that I enabled my module, Drupal freshly discovered it and ran the .install file to successfully create the table. Summary. When you have a module already in use (and so it appears in the system table), and *then* as a developer you create its .install file, it doesn't look like a *new* installation to Drupal (since the module name was already in the system table), so hook_install never gets called.
  •  
    Trick for schema's that won't install. If you have a custom module that you _had_ installed before making a .install file and including a schema, you need to: (1) Disable your module (2) Uninstall your module (3) Delete your module's row in the 'system' table in your Drupal database. Then you can re-introduce your module, and all its files will be recognized.
sally pearson

Renewing My Remote Computer Help Subscription - 3 views

My friend recommended ComputerHelpFastOnline - an emerging team of computer savvy tech support professionals - to provide computer help for my business. Thank God I heeded his words because since I...

computer help

started by sally pearson on 06 Jun 11 no follow-up yet
webExplorations

Securing Drupal User Accounts | Mad Irish . net - 0 views

  • This helps to limit automated account creation attempts (by bots). This configuration can be accessed via the main Drupal navigation menu following the links for Administer -> User settings.
  • On the 'User settings' page you'll notice that some of the content of the e-mail templates are tokenized, including place holders such as "!username" and "!password." These tokens are replaced with user specific values before e-mails are sent. It is important to remove any occurrence of "!password" token to prevent user passwords being sent via e-mail. Without the password users must utilize a time sensitive link in order to activate their account or change their password.
  • You can install and utilize the Password Strength module (http://drupal.org/project/password_strength) in order to require that users select strong passwords
  • ...1 more annotation...
  • Another great module for protecting user accounts is the Login Security module (http://drupal.org/project/login_security). This module detects brute force, or automated password guessing, attacks and can prevent them by notifying administrators and locking accounts for a time.
  •  
    Several steps you can take to stop bots from spamming your client's site. It is no fun spending an afternoon deleting hundreds of SPAM comments.
Daniel Gregoire

Theming the User Registration Form in Drupal 6 | Trellon - 0 views

  • <?phpfunction themename_theme($existing, $type, $theme, $path) {  return array(    ...    // tell Drupal what template to use for the user register form    'user_register' => array(      'arguments' => array('form' => NULL),      'template' => 'user-register', // this is the name of the template    ),    ...  );}?>
  • <div id="registration_form">  <div class="field">    <?php      print drupal_render($form['account']['name']); // prints the username field    ?>  </div>  <div class="field">    <?php      print drupal_render($form['account']['pass']); // print the password field    ?>  </div>  <div class="field">    <?php        print drupal_render($form['submit']); // print the submit button      ?>    </div>  </div></div>
  • <?php  print '<pre>';  print var_export($form);  print '</pre>';?>
  • ...3 more annotations...
  • Don't forget to render hidden fields or it won't work ;) echo drupal_render($form['timezone']); echo drupal_render($form['form_build_id']); echo drupal_render($form['form_id']);
  • you also have to print the "token" in order to make the form work print drupal_render($form['form_token']);
  • From my own experience using a form tpl.php, you need to print the whole $form at the very end of the template to ensure that the form will validate upon submission. <?php print drupal_render($form); ?> Just adding the hidden form_build_id and the form_id fields will not mean the form will work. Printing the entire form at the end, however, will mean that all the stuff you wanted to hide in making the template will show. For those fields, include "unset" statements for each one: <?php unset($form['field_to_hide']); ?> Please correct me if I'm wrong or if there is a better way to do this.
hansel molly

Easy Access to Computer Support Professionals - 1 views

I have an online business and I use my computer all the time to monitor my sales and do my accounting, of course. Lately, I have been experiencing computer trouble and I cannot just let anyone fix ...

computer support

started by hansel molly on 08 Jul 11 no follow-up yet
amelia_joe

Top iOS8 Challenges for developers - 0 views

  •  
    When it turns up in the approaching weeks, Apple's ios 8 is readied to bring a few novel peculiarities, including its Healthkit and Homekit platform, to the iphone and ipad. A ton of the advances are client situated and focused on building an immaculate encounter crosswise over ios gadgets and Macs running the approaching OS X Yosemite. Presently that Apple has arranged a Sept 9 occasion where quite a few people envision recognizing another iphone, its plausible that ios 8 will be in the hands of clients really soon. While the working framework does not have the comparable sort of sensational outline redo that accompanied ios 7, it has various enormous changes that give opportunity for good and awful.
specbee

A Complete Guide To Hire A Drupal Developer For Your Project | Specbee - 0 views

  •  
    A step by step guide to hire a Drupal developer. Know everything about how to hire the right resource for your Drupal project.
‹ Previous 21 - 40 of 161 Next › Last »
Showing 20 items per page