Fatal error: require_once() [function.require]: Failed opening required '/modules/swekey/swekey_integrate.inc.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in ....swekey/swekey.module on line 259

I solved with this:

replaced line 259 with :

$sweekeypath = drupal_get_path('module', 'swekey');
require_once($sweekeypath.'/swekey_integrate.inc.php');

Than the same problem came for line 229. Simply just replaced to the same:

$sweekeypath = drupal_get_path('module', 'swekey');
require_once($sweekeypath.'/swekey_integrate.inc.php');

Comments

swekey’s picture

Assigned: Unassigned » swekey
Status: Active » Fixed

Fixed in the 1.0.6 release, available from the www.swekey.com web site (will soon be released here).

swekey’s picture

Status: Fixed » Closed (fixed)