- Posts: 8
XML-RPC Error (7021):The transport method
- rolando
- Topic Author
- Offline
- New Member
-
Less
More
15 years 3 months ago #1
by rolando
XML-RPC Error (7021):The transport method was created by rolando
New to this forum , my problem is , i want to integrate joomla with moodle , as per documentation i have done all the things
my joomla files are here : www.zerocrise.com
my moodle files are here :http://www.zerocrise.com/aula/
Host XML-RPC
ip 195.110.124.133
i have facing with this problem....
"XML-RPC Error (7021): The transport method you are trying to use is not permitted."
Thanks & regards
my joomla files are here : www.zerocrise.com
my moodle files are here :http://www.zerocrise.com/aula/
Host XML-RPC
ip 195.110.124.133
i have facing with this problem....
"XML-RPC Error (7021): The transport method you are trying to use is not permitted."
Thanks & regards
Please Log in or Create an account to join the conversation.
- Antonio Durán
-
- Offline
- Moderator
-
Less
More
- Posts: 7902
15 years 3 months ago #2
by Antonio Durán
Replied by Antonio Durán on topic Re: XML-RPC Error (7021):The transport method
Hi.
That IP is correct, so my guess would be that your server is using another IP for internal communications.
Try adding 127.0.0.1
Antonio
That IP is correct, so my guess would be that your server is using another IP for internal communications.
Try adding 127.0.0.1
Antonio
Please Log in or Create an account to join the conversation.
- rolando
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 8
15 years 3 months ago - 15 years 3 months ago #3
by rolando
Replied by rolando on topic Re: XML-RPC Error (7021):The transport method
Adding ip 127.0.0.1 the problem remains
XML-RPC Error (7021): The method of transport you're trying to use is not allowed.
If you enter ip 192.168.0.0 / 0
Error
Array ([joomdle_auth] => 1 [mnet_auth] => 1 [joomdle_configured] => 1 [test_data] => XML-RPC Error (1): Access Denied)
XML-RPC Error (7021): The method of transport you're trying to use is not allowed.
If you enter ip 192.168.0.0 / 0
Error
Array ([joomdle_auth] => 1 [mnet_auth] => 1 [joomdle_configured] => 1 [test_data] => XML-RPC Error (1): Access Denied)
Last edit: 15 years 3 months ago by rolando.
Please Log in or Create an account to join the conversation.
- Antonio Durán
-
- Offline
- Moderator
-
Less
More
- Posts: 7902
15 years 3 months ago #4
by Antonio Durán
Replied by Antonio Durán on topic Re: XML-RPC Error (7021):The transport method
I think 192.168.0.0/0 is the same as 0.0.0.0/0, ie: the whole world.
You should try to find out which IP your server is using, and the enter it.
Then you would need to patch your installation to use that IP address.
Antonio
You should try to find out which IP your server is using, and the enter it.
Then you would need to patch your installation to use that IP address.
Antonio
Please Log in or Create an account to join the conversation.
- rolando
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 8
15 years 3 months ago #5
by rolando
Replied by rolando on topic Re: XML-RPC Error (7021):The transport method
how to apply the patch! install?
Please Log in or Create an account to join the conversation.
- Antonio Durán
-
- Offline
- Moderator
-
Less
More
- Posts: 7902
15 years 3 months ago #6
by Antonio Durán
Replied by Antonio Durán on topic Re: XML-RPC Error (7021):The transport method
First you need to find out the IP address, then I can tell you where to put it.
Please Log in or Create an account to join the conversation.
- rolando
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 8
15 years 3 months ago #7
by rolando
Replied by rolando on topic Re: XML-RPC Error (7021):The transport method
how do I find IP address?
Please Log in or Create an account to join the conversation.
- Antonio Durán
-
- Offline
- Moderator
-
Less
More
- Posts: 7902
15 years 3 months ago #8
by Antonio Durán
Replied by Antonio Durán on topic Re: XML-RPC Error (7021):The transport method
It depends: do you have ssh access to server? You could then just run ifconfig to see the interfaces addresses.
If not, you can contact your provider, to see if they can tell you.
As a last option, you could write a couple of php scripts to find out.
If not, you can contact your provider, to see if they can tell you.
As a last option, you could write a couple of php scripts to find out.
Please Log in or Create an account to join the conversation.
- rolando
- Topic Author
- Offline
- New Member
-
Less
More
- Posts: 8
15 years 3 months ago #9
by rolando
Replied by rolando on topic Re: XML-RPC Error (7021):The transport method
I forwarded a request to the provider hoping that meet
Otherwise what kind of script should be used
thanks
Otherwise what kind of script should be used
thanks
Please Log in or Create an account to join the conversation.
- Antonio Durán
-
- Offline
- Moderator
-
Less
More
- Posts: 7902
15 years 3 months ago #10
by Antonio Durán
Replied by Antonio Durán on topic Re: XML-RPC Error (7021):The transport method
You would need to upload this two scripts:
ip.php:
call_ip.php:
You will need to modify URL in second script to put yours.
Then you upload the 2 files to your site root, and visit the second one with the browser. You should get the real IP being used.
Antonio
ip.php:
Code:
<?php
print_r ( $_SERVER['REMOTE_ADDR']);
?>
call_ip.php:
Code:
<?php
echo file_get_contents ('http://localhost/ip.php');
?>
You will need to modify URL in second script to put yours.
Then you upload the 2 files to your site root, and visit the second one with the browser. You should get the real IP being used.
Antonio
Please Log in or Create an account to join the conversation.