Something strange has happened. I have set up my new Drupal site and everything worked just dandy until I logged out.
When I try to log in again, I type my username (this user is an admin as confirmed by drush) and password. Then I'm redirected to /user/1 but it says I'm not authorized to view that page. No admin bar is visible and I can't edit any content at all.
I'm trying to port over a site which is a student organization funding management system for a university. Everything I can visualize how I'd create it in Drupal except for a couple of minor details. I'm not sure if this would be more doable in Drupal 6.x or 7.x, and what modules I'd need to make this happen, so I'm hoping someone on the forums can be of assistance.
So my main problem comes in on the registration page (and hopefully the user will be able to edit this information later on an identical page). When a user registers, they have to enter the basic information (Name, email, etc) but they also have to list what organization they are in, and what their role is in that organization (President, Vice President, etc.). Users may also belong to more than one organization. Organizations would be their own content type as well.
I've set up my login block to appear only on a designated page that I have linked in my main menu. Problem is, this link appears for all users, and I'm unaware of a setting to have it appear only for Anonymous (non-authenticated) users. How might I do this?
Created a table in MySQL for transactions. As part of the population of this table, I stuff the $user uid as a column for each record.
described the table to views and it shows up no problem. I can view the table without any issues save one:
Stuck on one detail, which is that I'm unclear how to restrict the view output to the current user (thus restrict the returned records only for that user and ensure they don't see other users' records)
As I said I make sure the UID is part of each row, but am not sure of the mechanism.
I have been asked to look ad a Drupal 7 site developed by someone else and have never come across a problem like this before.
At present the site has a view that looks at a content type "project" and extracts from it any and all "project_contacts". These project_contacts are currently displayed as an unordered list in a block. At present these project_contacts are returned as a user Id number.
What I have been asked to do is to either modify this view or create a module to replace the view to do the following.