View Issue Details

This bug affects 1 person(s).
 2
IDProjectCategoryView StatusLast Update
09319Bug reportsRemoteControlpublic2014-12-09 14:03
Reporterrgrela Assigned Toc_schmitz  
PrioritynormalSeverityblock 
Status closedResolutionunable to reproduce 
Product Version2.05+ 
Summary09319: Internal Server Error to set 'debug'=>1
Description

If we set 'debug'=>1 in application/config/config.php
some methods of remote api don't work correctly, they return "internal server errror" for example:
$client->call('list_surveys', array($sessionkey))

If we set 'debug'=>0 in application/config/config.php the api works correctly
$client->call('list_surveys', array($sessionkey)) return the list of surveys of enviroment

Some idea?

Steps To Reproduce

change 'debug'=>1 and call list_surveys
for example:
<?php

require_once 'c:\trabajo\lamp\pruebaslimesurvey\Zend\Loader\Autoloader.php';
Zend_Loader_Autoloader::getInstance();
$client = new Zend_XmlRpc_Client('http://encuestas.d.novagaliciabanco.es/index.php/admin/remotecontrol');
$client->getHttpClient()->setConfig(array('timeout'=>30));

$sessionkey = $client->call('get_session_key', array("admin","xxxxxx"));

/*
echo "***<br>";
echo "*
voy a exportar la lista de encuestas <br>";
*/
$list = $client->call('list_surveys', array($sessionkey));
echo "---la lista de encuestas es:";
print_r($list);

echo "<br><br><br>";
echo "<br><br><br>";

$result = $client->call('release_session_key', $sessionkey);

?>

TagsNo tags attached.
Bug heat2
Complete LimeSurvey version number (& build)2.05+ Build 141003
I will donate to the project if issue is resolvedNo
BrowserIE, firefox
Database type & versionMysql
Server OS (if known)Windows and Linux
Webserver software & version (if known)Apache 2.2
PHP VersionPHP 6.3.17 and PHP 6.3.2

Users monitoring this issue

There are no users monitoring this issue.

Activities

c_schmitz

c_schmitz

2014-11-24 16:38

administrator   ~31083

Please update to the latest version.

Usually your XML_RPC client has a debug mode where you would be able to access the raw output of the XML-call. You should examine that and if you find something strange please report back.

c_schmitz

c_schmitz

2014-12-09 14:03

administrator   ~31211

Closing issue due to missing feedback.

Issue History

Date Modified Username Field Change
2014-10-21 19:05 rgrela New Issue
2014-11-23 23:29 c_schmitz Assigned To => c_schmitz
2014-11-23 23:29 c_schmitz Status new => assigned
2014-11-24 16:38 c_schmitz Note Added: 31083
2014-11-24 16:38 c_schmitz Status assigned => feedback
2014-12-09 14:03 c_schmitz Note Added: 31211
2014-12-09 14:03 c_schmitz Status feedback => closed
2014-12-09 14:03 c_schmitz Resolution open => unable to reproduce