I can't seem to find "access services" on in the user permissions page under "services module", just "administer services".
I've checked in both 6.x-2.0-beta1 and 6.x-2.x-dev: same problem.
"/sites/all/modules/services/services.module::function services_perm()", in both versions, has only one array i.e. 'administer services' and this is the only access argument in the whole file file.
Is there something I'm missing here? Is "access services" no longer being used?
I keep on getting this error when I try to sync Magento and Drupal: "Could not get state name because the remote site gave an error: Access denied. (2)." Could this be the reason?

Comments

AbdulHakim’s picture

Snapshot of Services.module file lines 28-45

/**
* Implementation of hook_perm().
*/
function services_perm() {
return array('administer services');
}

/**
* Implementation of hook_menu().
*/
function services_menu() {
$items['admin/build/services'] = array(
'title' => 'Services',
'description' => 'Allows external applications to communicate with Drupal.',
'access arguments' => array('administer services'),
'page callback' => 'services_admin_browse_index',
'file' => 'services_admin_browse.inc',
);

marcingy’s picture

Status: Active » Closed (duplicate)
marcingy’s picture

Status: Closed (duplicate) » Closed (works as designed)

Access services is no required as anonymous user had to have it to allow for login etc.

krachid’s picture

i have the same problem, I couldn't find "access services" options under services module when i tried for enabling the permission under user management. i'am also working on linking magento with drupal.

jyri’s picture

Have anyone found solution for this? I don't have that "access services" under services module. Also trying to get magento work with drupal.

rutiolma’s picture

Instead of "access services", the permission is called "administer services".
Grant permission to both users and do the 2.4 from the tutorial http://drupal.org/node/468036

jyri’s picture

Thanks! I did install drupal again and came to same problem. I will try now with "administer services".