Closed (outdated)
Project:
Alchemy
Version:
6.x-1.0-rc5
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
1 Mar 2011 at 11:08 UTC
Updated:
14 Jun 2017 at 20:22 UTC
Jump to comment: Most recent
Comments
Comment #1
ashiwebi commentedSubcribe
Comment #2
ashiwebi commentedI am able to resolve the issue by changing inside alchemy_include_alchemy_class()
$files[] = './' . drupal_get_path('module', 'alchemy') . '/AlchemyAPI/module/AlchemyAPI.php';
if (module_exists('libraries') && ($p = libraries_get_path('AlchemyAPI'))) {
$files[] = './' . $p . '/module/AlchemyAPI.php';
}
to
alchemy_include_alchemy_class
$files[] = './' . drupal_get_path('module', 'alchemy') . '/AlchemyAPI/module/AlchemyAPI_CURL.php';
if (module_exists('libraries') && ($p = libraries_get_path('AlchemyAPI'))) {
$files[] = './' . $p . '/module/AlchemyAPI_CURL.php';
}
Donot forget to call require_once("AlchemyAPIParams.php"); inside AlchemyAPI_CURL.php
Comment #3
TomDude48 commentedThis is going to have something to do with the way your server is configured. I added a checkbox to switch to the CURL class on the admin config page for Alchemy.
Please, try that and verify it works for you.
Comment #4
technologywon commentedDrupal 6 is no longer supported