<DIV>Actually, the fix for the Keybindings update via MythWeb was posted by Gregorio Gervasio as follows.&nbsp; I had a dot in my hostname and was hence affected.&nbsp; After applying the recommended changes below, presto, whamo, I was able to update keybindings.</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>Does your frontend hostname have a '.domain' or any <BR>non-alphanumeric characters (eg. '-')? I noticed these characters get <BR>converted to '_' somewhere along the way so they fail to match the <BR>hostname in the database. <BR><BR>I use the following hack to restore the '.' character but <BR>it's obviously not a general solution. (Any PHP experts know how to <BR>preserve these characters properly?) <BR><BR>Otherwise, you could modify the mythconverg database directly. <BR><BR><BR>Index: settings_keys.php <BR>=================================================================== <BR>RCS file: /var/lib/mythcvs/mythweb/settings_keys.php,v <BR>retrieving revision 1.3 <BR>diff -u -r1.3 settings_keys.php <BR>--- settings_keys.php 13 Dec 2003 21:46:05 -0000 1.3 <BR>+++ settings_keys.php 6 Feb 2004 10:05:04 -0000 <BR>@@ -16,6 +16,7 @@ <BR>{ <BR>list($match, $dest, $host) = $matches; <BR>$dest = str_replace("_", " ", $dest); <BR>+ $host = str_replace("_", ".", $host); <BR>$usehost =
 $host; <BR>$query = 'UPDATE jumppoints SET keylist='.escape($_POST[$key]).' WHERE destination='.escape($dest).' AND hostname='.escape($host).';'; <BR>$result = mysql_query($query) <BR>@@ -24,8 +25,9 @@ <BR>else if (preg_match('/^key:([\\w_\/]+):(\\w+):(\\w+)$/', $key, $matches)) <BR>{ <BR>list($match, $context, $action, $host) = $matches; <BR>- $usehost = $host; <BR>$context = str_replace("_", " ", $context); <BR>+ $host = str_replace("_", ".", $host); <BR>+ $usehost = $host; <BR>$query = 'UPDATE keybindings SET keylist='.escape($_POST[$key]).' WHERE context='.escape($context).' AND action='.escape($action).' AND hostname='.escape($host).';'; <BR>$result = mysql_query($query) <BR>or trigger_error('SQL Error: '.mysql_error(), FATAL); <BR></DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>As of MythTV 0.13, these keys can be customized, through an interface in MythWeb <BR><BR>You may want to point out that this doesn't work at the moment.... I know I am having issues with it, and I've seen a couple of other messages that others are having problems</DIV><p><hr SIZE=1>
Do you Yahoo!?<br>
Yahoo! Finance: <a href="http://us.rd.yahoo.com/evt=22055/*http://taxes.yahoo.com/filing.html">Get your refund fast by filing online</a>