LOL! Talk about timing!
Thanks Moshu, I found the same info, only in a different spot (Widgetizing Themes)! I appreciate you “trying to teach me to fish instead of just feeding me fish”, however the only problem is I am doing all this during my lunch times at work on the overnight shift!
For anyone else visting this page who is having this problem (uploaded sidebars not appearing in the “Current Widgets” drop down box), the short answer is you have to modify the “functions.php” file, and add php scripting manually to “register” the other sidebar php files.
In my case, here is what it looks like:
<?php
if ( function_exists('register_sidebars') );
register_sidebar(array('name'=>'sidebar',));
register_sidebar(array('name'=>'sidebar_about',));
register_sidebar(array('name'=>'sidebar_news',));
register_sidebar(array('name'=>'sidebar_george',));
register_sidebar(array('name'=>'sidebar_dave',));
register_sidebar(array('name'=>'sidebar_library',));
register_sidebar(array('name'=>'sidebar_links',));
register_sidebar(array('name'=>'sidebar_contact',));
?>
But in the end, again, thank you Moshu for your assistance! :-p
Respects, Dave