No, that would be no problem. I have protected my admincp with .htaccess as well.
Ok, open the file admin/functions.php and find:
PHP Code:
if ($post[glow]!="" AND $post[italic]=="1") {
eval("\$storeextraglow = \"".gettemplate('store_extra_glow_italic')."\";");
} elseif ($post[glow]!="") {
eval("\$storeextraglow = \"".gettemplate('store_extra_glow')."\";");
} elseif ($post[italic]=="1") {
$storeextraglow="<i>$post[username]</i>";
} else {
$storeextraglow="$post[username]";
}
And change it to:
PHP Code:
$storeextraglow="This is a test!";
Upload the file, don't forget to add '$storeextraglow' in your postbit. Then, check your postbit if it displays 'This is a test'.