Is is possible to enter a non-numeric IP address for registering AE's? It seems the "IP address" field only allows 19 characters, which is the number needed to specify a numeric address (with periods). The reason I ask is that I'm trying to connect to an address that has a dynamic IP, and I use a dynamic DNS service to map an alphanumeric IP address to the dynamic IP address.
-Ty
non-numeric IP address for AE's
You don't have to enter the full computer name for the Hostname field, e.g., you can enter just "somehost" instead of "somehost.somedomain.com".
If 10 characters are still not enough for the hostname, you can edit the script: "modifyAeTitle.php" inside function: "addEntryForm" or "modifyEntryForm" depending whether you're adding or modifying an antry, and change the following lines:
If 10 characters are still not enough for the hostname, you can edit the script: "modifyAeTitle.php" inside function: "addEntryForm" or "modifyEntryForm" depending whether you're adding or modifying an antry, and change the following lines:
to:print "<tr><td>Enter Hostname:</td>\n";
print "<td><input type='text' size=10 maxlength=10 ame='hostname'></td></tr>\n";
print "<tr><td>Enter Hostname:</td>\n";
print "<td><input type='text' size=32 maxlength=32 name='hostname'></td></tr>\n";