I can not configure the settings, so that OpenX Manager works.

Under "Server" I typed the path to the server i usually use (http://www.domain-name.com/sub-directory/openx)
Under "User" I typed the Username I usually login with
Under "Password" I us ethe password for the User

Getting error message

* Not possible to connect with the OpenX server.
* Some of these values are wrong.

What is wrong? Thanks for your help.

Comments

kendre_paresh’s picture

ennobln,
I am facing the same problem, could you please help me if you know the answer.

Thanks in advance,
Paresh kendre.

westbywest’s picture

I am using Openx v2.8 with the module openx_manager module v6.x-1.02.

These are the settings I have in Admin -> Openx Manager -> Settings:

Server: http://our.openx.server.com
Username: openx_admin_user
Password: openx_admin_password

The poorly documented part may be that you need to append http:// to the server name, and no trailing slash.

strikehawkecomm’s picture

Then there must be a bug in validation because openx_manager.module lines 23~35

/**
 * Implementation of hook_exit().
 */
function openx_manager_exit() {
  // Close the connextion with OpenX server, if opened.
  if (_openx_manager_session(TRUE)) {
    xmlrpc(
      'http://'. variable_get('openx_manager_server', '') .'/www/api/v1/xmlrpc/LogonXmlRpcService.php',
      'logoff',
      _openx_manager_session()
    );
  }
}
stevesmename’s picture

That's the problem for me.

My OpenX server points to the "/www/" directory.

So
'http://'. variable_get('openx_manager_server', '') .'/www/api/v1/xmlrpc/LogonXmlRpcService.php',

Should be
'http://'. variable_get('openx_manager_server', '') .'/api/v1/xmlrpc/LogonXmlRpcService.php',

For it to work for me.

Note: I went ahead changed lines 30 & 335 in my copy of the .module file and also changed a few instances in the .api.inc file and it then worked like a charm.