Help & Support

Can I prevent "Guest" from posting in my Cbox?

With a paid Cbox, you can enable the option "Users must be registered" at the Users page in your control panel.

If you are using Integration, then there are two ways to disable access for a particular user. The easiest is to register the "Guest" name, then immediately ban it.

You can also invalidate names in your Integration code. For example, use a conditional and clear the nme and nmekey parameters:

<?php
if ($nme == "Guest") {
  $nme = "";
  $nmekey = "";
}
// The rest of your Integration code goes here...
?>
Last updated 26 September 2016

« Support home

Loading...