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.
It has taken me a week to get the hang of drupal, but I must say I'm VERY impressed.
I am experiencing a problem, however. I would like users to be able to post inline images to the forum, but so far what I have is that logged in users can post images as such, but they are not contained in the forum message at all.
The inline tag just shows up as an inline tag in text if I add it (and the module is of course installed, access controls are ok etc.).
Any tips as to how to obtain this result ? Take a look at what is going on now, please:
I had Drupal working with the Taxonomy Access Module, and whilst trying to configure the Blocks module I entered the following code in the PHP pane.
I was attempting to display different categories for different users.
global $user
if (is_array($users->roles) && array_key_exists(4,3, $user->roles)) {
return TRUE;
}
It complained about the above code, but all was still working, unfortunatley I accidently deleted the (s) in the (exists),
and now the whole of the site has stopped working.
Say I have a personal website, that has content I only show to members, and I also have a livejournal presence.
Now say, that enough of my userbase on said personal site stems from livejournal users, I would like to allow livejournal users to log in via the livejournal.module freely without hassling with making an account on my site. However, I want to restrict all other account requests to admin approval, cause I don't want any random Tom, Dick, or Harry to be able to see my nudie pics and read about my anal fissure surgeries.
Is there a way to take 2 data bases that are from the same site (an old back-up and the current data base the site is using) and convert them to one data base. Is there a way to move the data from the old data base into the new one? Gaining extra info from the older backup and keeping all the current info? I have access to mysql on my host and know how to backup and restore a database but that is about it.