hey all,
I am developing a site on a shared server for a small non-profit oranization. I am mainly interested in Drupal's content management so the site owners can edit their own pages as they please. The volunteer admins of this organization need to be able to update their organization's membership directory; there needs to be a read-only publicly accessible membership directory; and the members need to be able to update their own database records, so there has to be an authentication system, forgotten password facility, etc. I already wrote all this way back in PHP3 days, so it's more than due for a full rewrite.
What is the best approach to combining your own PHP/MySQL stuff with a drupal site? I don't think i can use drupal's database as the backend for my custom stuff, nor its authentication.
it occurs to me that I can add drupal "pages" that just contain include "/my/includes/my_custom_stuff.inc"
. But that seems very heavy-weight -- on one request, all the Drupal followed by all my own PEAR and Smarty and my own classes being loaded...
Or I could add links to drupal's menus that point to mysite.com/not-drupal/some_page.php and manually make some_page.php look like the rest of the site.
Or... ? suggestions? tips? advice?
Hope this makes sense -- though I've put in a number of hours learning my way around, I still have more RTFM to do, so thi