No, it does not work. Each time I change it in eAuction.pl, and upload, it gives a 500 error.
Here are the lines of code that I have changed.
Code:print <<EO_HTML;
<tr bgcolor="$config{'colortablebody'}">
<td valign="middle"><b>$txt{'Start-up'}:<br></b>
<font size="1">($txt{'max. Days = 14'})</font></b>
</td>
<td valign="middle" nowrap>
<b>$txt{'Days'} </b><font size="1">($txt{'from now'})</font>
<input name="START_DAYS" type="TEXT" size="2" maxlength="2" value="$start_days">
<b>$txt{'Server-Time'} </b>
<input name="START_HOUR" type="TEXT" size="2" maxlength="2" value="$temp[2]">
<font size="4"><b>:</b></font>
<input name="START_MIN" type="TEXT" size="2" maxlength="2" value="$temp[1]">
<font size="4"><b>:</b></font>
<input name="START_SEC" type="TEXT" size="2" maxlength="2" value="$temp[0]">
</td>
</tr>
<tr bgcolor="$config{'colortablebody'}">
<td valign="middle"><b>$txt{'Deadline'}:<br></b>
<font size="1">($txt{'max. Days = 14'})</b>
now looks like
Code:print <<EO_HTML;
<tr bgcolor="$config{'colortablebody'}">
<td valign="middle"><b>$txt{'Start-up'}:<br></b>
<font size="1">($txt{'max. Days = 32'})</font></b>
</td>
<td valign="middle" nowrap>
<b>$txt{'Days'} </b><font size="1">($txt{'from now'})</font>
<input name="START_DAYS" type="TEXT" size="2" maxlength="2" value="$start_days">
<b>$txt{'Server-Time'} </b>
<input name="START_HOUR" type="TEXT" size="2" maxlength="2" value="$temp[2]">
<font size="4"><b>:</b></font>
<input name="START_MIN" type="TEXT" size="2" maxlength="2" value="$temp[1]">
<font size="4"><b>:</b></font>
<input name="START_SEC" type="TEXT" size="2" maxlength="2" value="$temp[0]">
</td>
</tr>
<tr bgcolor="$config{'colortablebody'}">
<td valign="middle"><b>$txt{'Deadline'}:<br></b>
<font size="1">($txt{'max. Days = 32'})</b>
The next lines of code starts like this
Code: oops($txt{'You must enter the number of days your auction should run, from 1 to 14'})
unless $form{'DAYS'} < 15;
and I changed it to read as follows
Code: oops($txt{'You must enter the number of days your auction should run, from 1 to 32'})
unless $form{'DAYS'} < 33;
That is all for the eAuction. pl file. Next, moving on to the eConfig161.pl file
this line of original code:
Code: 'You must enter the number of days your auction should run, from 1 to 14' => ['Bitte geben Sie die Laufzeit Ihrer Auktion ein (1 bis 14 Tage)', ],
changed to look like
Code: 'You must enter the number of days your auction should run, from 1 to 32' => ['Bitte geben Sie die Laufzeit Ihrer Auktion ein (1 bis 32 Tage)', ],
and the last bit of code I found to reference max time is this
Code: 'max. Days = 14' => ['maximal 14 Tage', ],
which I changed and it now looks like this
Code: 'max. Days = 32' => ['maximal 32 Tage', ],
and when I upload both files in ascii, I get a 500 error. both are chmoded as required.