Tired of logging in again and again to a Drupal site that keeps kicking you out? You can modify session length, i.e. the length of time that a logged-in session stays logged in, via the ini_set('session.cookie_lifetime'... line in the site's settings.php file. See details in Forum Finds: Modify length of user login sessions.
Reply to comment

Actually, the correct way to
Actually, the correct way to do this without hacking the fivestar module is this... Create a helper module and in the same folder, add a folder called "widgets" and in *that* folder, put your "aces" folder... then add this to mymodule.module:
function mymodule_fivestar_widgets(){
$widgets_directory = drupal_get_path('module', 'mymodule') .'/widgets';
$files = file_scan_directory($widgets_directory, '\.css$');
$widgets = array();
foreach ($files as $file) {
if (strpos($file->filename, '-rtl.css') === FALSE) {
$widgets[$file->filename] = drupal_ucfirst($file->name);
}
}
return $widgets;
}
Voila!
Reply
Learn Drupal, hands-on
Get the beginner-friendly ebook that teaches community site building via a live case study.







Cool! Thanks for figuring out about this!
You're really great~ I tried it out! And yay,...
Hello! I just would like to give a huge thumbs up for the great info you have here on this post...
I may not have a chance to test that for a while, but meanwhile I welcome commentary from anyone...
Hey,
Since I still see some links here, and the guide is quite good, I thought that I may...