Hi all,

I downloaded the latest version of the plugin from the scribe site at scribeseo.com, and installed it (adding the nusoap archive as per their install instructions there). I then enabled the plugin within Drupal and added the scribeapi key, although when I click "save config" the key disappears. When I then try and click the "Scribe SEO Results" tab on any of the pages I get the following error "Access Denied: You are not authorized to access this page". This is despite the fact I am logged in as the site administrator.

Any ideas what I am getting wrong? Should the API key still show after hitting save or is it normal the box goes blank again?

I am running the latest version of Drupal 6 and have the relevant required modules installed.

Thanks for any suggestions.

Andy

Comments

anouschka42’s picture

I'm experiencing exactly the same issue. Did you solve yours?

cheath4design’s picture

Had this problem and in my environment the ScribeSeo module needed the following fix. Around line 599 scribe_showup function is defined. This is the access callback the results page uses. Unfortunately is uses a constant in it's checks this is defined in the module init. I found on my setup the init was not running or not running soon enough and the constant was undefined. Thus, always a false return, thus, "Access Denied" the following code added to the beginning of scribe_showup function checks and defines the constant add gets the callback working properly.

if (!defined('SCRIBESEO_PATH')){
  define('SCRIBESEO_PATH', dirname(__FILE__));
}