Closed (fixed)
Project:
Swekey hardware authentication
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
11 Feb 2009 at 12:54 UTC
Updated:
16 Feb 2009 at 12:42 UTC
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
Comment #1
swekey commentedFixed in the 1.0.6 release, available from the www.swekey.com web site (will soon be released here).
Comment #2
swekey commented