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.
you guys watch the World Cup? It's nice to talk about football just for little diversion from the hectic daily job as web builder :)
Anyway, I am sure that many Drupallers who excelled with 4.6.x found that many modules wont work for 4.7.x
I enlist here some that used extensively but could not make it work for 4.7.0 or 4.7.2. Since we are non-module developer, non-PHP programmers, that leave us in the lurch....
I have a problem with Durpal site Online/Offline.
I have put my drupal Blog offline, now I forgot a link for admin login, and my site is offline.
I have to allow it in next two hours.
Anybody knows what is url for my admin login page for Drupal.
I think it goes like this: www.mywebsite.com/drupal/?=admin or somethnig different.
Does anyone know if I restrict access to a node whether I can still access the rss feed for that node with a password? Drupal's native feeds give a 403 access forbidden error. The securesite module does something to change the feeds so they can be accessed with a user/password combination. But the securesite module has been too buggy for me to get going successfully for a production site (it shuts me out, doesn't log people in or out correctly, gives php errors when accessing the site).
I just have a quick frustration and was wondering if anyone could help:
I'm using the project module to be able to offer my clients a workflow area where they can post bugs, feature requests and so on. The problem is that I can't seem to find out how to define which users can access which projects. Right now, all users can access and post to any project. I want to do the following:
I've put some PHP code in a page visibility parameters of a block to hide the block if user doesn't own certain roles. It works fine when a user is connected, but if it disconnects then the block appears. So I want to know how to hide blocks if nobody is connected to the site.
Here is the code I'm using:
global $user;
if (in_array(['RoleBE','admin user'],$user->roles))
return TRUE;
else
return FALSE;