Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
This is a module I'd like to see happen because it would save me work and allow a sort of content sharing beyond news/blogs. I administer a lot of different local websites and many of them have similar audiences but it's a pain in the ass to go into each of them and add events. So I was thinking it would be really cool if there was a way to subscribe to events via an RSS feed or something like that so that it could automatically add events from each other the different sites to the calendar.
I have 2 Drupal sites. They are on the same machine, but use different databases. Given a user click on one site, I want to be able to create a new user (or delete an old one) on the other site.
Given the sites are based on different databases on the same machine I guess I should be able to write the SQL that selects the other site's database and issues the SQL that does the INSERT or DELETE. But I suspect there's a bit more to adding or deleting users in a Drupal DB than that.
Does anyone have a drupal 4.7 module skeleton the most basic module, like just printing "hello" on the screen? I would really appreciate getting a copy to get me started with a working base module.
My question is related to a problem which is described here. I look after the Checkout module which uses the hook_nodeapi in several modes (including "form pre", "validate" and "update") to lock access to a node by other users. Apparently this causes problems with the Aggregator module running under cron such that all the nodes it updates are left "checked out" and so non-modifiable. I'm not sure how to deal with this: one way would be to detect whether the updating process is a cron job or not, but I have no idea how to do this.