Blogs
Backup your Data!!
Mon, 08/09/2010 - 20:29 | by deborahI cannot stress enough how important it is to back up your code and your database on a regular basis. If you don't own the code then remind your clients to back up their code.
Technology is not perfect and things do happen. Make sure you have a backup plan that will fit your needs in case of the unfortunate issues that may arise. If you host your site with an ISP find out what their backup schedule is and how much it costs to recover data. Do not reply on these backups but make sure it is there. Store your backups on a different server or at an off site location.
A Drupal Process
Wed, 06/09/2010 - 10:56 | by deborahFuzetto Web Solutions has been success using a Drupal Process based on a session from the Do It With Drupal conference.
I have found that every project I work on that follows this process has been on time, on budget and stress free. We are working on developing on this process that allows our clients to be more in tune with the status.
Fuzetto Top 100 added to WebEnabled
Fri, 05/07/2010 - 20:44 | by deborahFuzetto's top 100 module list is added to WebEnabled Quick Browse Top 100.
Fuzetto Web Solutions is evaluating WebEnables instant development platform to see if this is a good solution for developing Drupal websites.
Panels session at BDUG
Fri, 02/26/2010 - 08:58 | by deborahOn Tuesday, February 23, 2012, I presented at the Berkeley Drupal User Group about Panels.
We went over Page Manager, Panel Pages, Panel nodes, mini-panels, views panes, layouts and styles.
I attached the module that has the custom style and the folder with the custom layout.
Don't forget to add plugins[panels][layouts] = layouts to your theme .info file.
Redirect User After Login by Role
Sat, 02/20/2010 - 13:24 | by deborahHere is how I redirect a user after they login. The destination may be different based on role.
if ( $op == "login" ){
if( module_exists("somerequiredmodule") ){
$dest = mymodule_get_destination();
drupal_goto( $dest );
}
}
}
Drupal Tip
Fri, 02/12/2010 - 10:28 | by administratorDon't name your theme the same name as an enabled module. You will run into trouble.
Drupal Scalability
Tue, 02/02/2010 - 09:22 | by deborahLately I have been approached by many companies questioning the performance and scalability of Drupal. As more and more sites are using Drupal with many more vistitors, this is a really important issue that needs to be addressed. I have always considered this issue to be the responsibility of the system administrators but what I am finding out is that most SA's don't know a thing about Drupal or really care to learn. An vice versa, Drupal developers like myself don't really have an interest or knowledge in working with server optimization.

