Advanced user roles

Hi!

I'm having a small problem.

I'm setting up a website for a organisation that wishes to manage users who can register on the webpage.
These users need a role for example: "reg-user".
This organisation has user roles too: "organisation".
I have the "Administrator" role to be sure that the organisation won't trash the website.

drush rsync Could not evaluate source path from alias

Is this a bug or am I doing something wrong with the aliases?

Here's my terminal session where I get an error from drush on the first command:

Best theming process? How do you do it?

Hi everyone,

I am new to Drupal, but I think I have a good grasp of it: I read 2 books and a lot of docs. I am very good at XHTML/CSS/JS and used a bunch of CMSes before Drupal.

I have a new website to build from the graphical design and I don't know what process is better:

Bug reporting via comments

My client is looking for the following functionality:-

On any given page, a user with the requisite permission can post a comment which gets turned into a bug report about the current page.

The idea is that, once a site is in user acceptance testing, non-technical people can use the site and when they see a problem, they just post a comment.

It would be even better if the bug report was written straight to something like JIRA or TRAC but I suspect that might be problematical because of access restrictions to those systems.

Does anyone know of such a module?

[Solved] Simple confirmation popup dialog box

Hey guys,

How is it possible to create simple confirmation popup dialog boxes?! jQuery, javascript ... etc, anything!

I've searched a lot but found tons of non-working suggestions and code.

Please help!

Thanks for your time and help :)

drush site install from git clone becomes 7.3-dev when it should be 7.2

I have just made a site install from a git clone checked 7.2 out but when I did the install the version is 7.3-dev?

Here is how i did it:

Clone the git repository
git clone http://git.drupal.org/project/drupal.git site

List tags
git tag

Choose the version, in this case Drupal 7.2
git checkout 7.2

Branch the core and track this branch
git checkout -b drupal7core --track origin/7.x

Branch contribs
git checkout -b sitecontrib

Branch personal
git checkout -b sitepersonal

Switch to contrib branch
git checkout sitecontrib

Create the new installation profile, by copy and rename the standard profile under /site/profiles/standard to /site/profiles/site
Here is how they could look:

/site/profiles/site/site.profile


/site/profiles/site/site.install
<?php

/**
 * Implements hook_install().
 *
 * Perform actions to set up the site for this profile.
 */
function site_install() {
  // Add text formats.
  include_once DRUPAL_ROOT . '/profiles/standard/standard.install' ;
  standard_install();
  
  // Change enable and change default theme
  theme_enable(array('sky' ));
  variable_get('theme_default' , 'sky' );
  
}

/site/profiles/site/site.info
name = Site
description = Install with commonly used features pre-configured.

; core
core = 7.x
dependencies[] = block
dependencies[] = color
dependencies[] = comment

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x