- Posts: 7936
Shop / e-Commerce Integration
XML-RPC Error (28260048): Invalid response value detected
- Antonio Durán
-
- Offline
- Moderator
-
Less
More
6 years 7 months ago #11
by Antonio Durán
Replied by Antonio Durán on topic XML-RPC Error (28260048): Invalid response value detected
Yes, then it seems to me that you are missing a line...
Please check file: moodle/auth/joomdle/auth.php
Function: get_course_info
Check if this line is included in the SELECT. If not, add it:
Select would be:
Please check file: moodle/auth/joomdle/auth.php
Function: get_course_info
Check if this line is included in the SELECT. If not, add it:
Code:
co.enddate,
Select would be:
Code:
$query = "SELECT
co.id AS remoteid,
ca.id AS cat_id,
ca.name AS cat_name,
ca.description AS cat_description,
co.sortorder,
co.fullname,
co.shortname,
co.idnumber,
co.summary,
co.startdate,
co.enddate,
co.lang
FROM
...
Please Log in or Create an account to join the conversation.
- visionlearning
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 8
6 years 7 months ago #12
by visionlearning
Replied by visionlearning on topic XML-RPC Error (28260048): Invalid response value detected
there is already that line
Please Log in or Create an account to join the conversation.
- visionlearning
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 8
6 years 7 months ago #13
by visionlearning
Replied by visionlearning on topic XML-RPC Error (28260048): Invalid response value detected
Please Log in or Create an account to join the conversation.
- Antonio Durán
-
- Offline
- Moderator
-
Less
More
- Posts: 7936
6 years 7 months ago #14
by Antonio Durán
Replied by Antonio Durán on topic XML-RPC Error (28260048): Invalid response value detected
Mmmm.... then I don't know what is happening. I would need to be able to do some debugging on the site to try to find out.
Please Log in or Create an account to join the conversation.