Task #1452
daemon IP:port list
| Status: | New | Start date: | 09/08/2011 | |
|---|---|---|---|---|
| Priority: | Normal | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | - | |||
| Target version: | 2.0.0 | |||
| Blocking Target Version: | No |
Description
In the webpanel the area where you list the daemon ip : port it allows you to enter as many as you like. However after applying and copying out the data it cuts off the data.
Eg as seen here
http://forums.hlxce.com/topic/2863-proxy-issues/page__gopid__13713#entry13713
History
#1
Updated by Peterson 8 months ago
you might want to change the limits in web/ pages/ admintasks/ options.php
echo "<input type=\"text\" name=\"$this->name\" size=\"35\" value=\"";
echo html_entity_decode($optiondata[$this->name]);
echo '" class="textbox" maxlength="255" />';
set the maxlength to, say, 1000.
and then do this SQL queryALTER TABLE hlstats_Options CHANGE `value` TEXT NOT NULL default ''
if it doesnt work, log in to phpmyadmin and edit the structure setting it to TEXT