| Server IP : 10.200.247.200 / Your IP : 216.73.217.19 Web Server : Apache System : Linux synergy-usa-sites 6.8.0-138-generic #138-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 31 22:41:49 UTC 2026 x86_64 User : jeremy ( 1001) PHP Version : 8.4.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/usa_sites/usagrantapplications.org/vsa/ |
Upload File : |
<?php
/*
Copyright (c) 2007-present InnAnTech Industries
Author: Dave Guindon
Web: www.VirtualSmartAgent.com
Support: www.DaveGuindonSupport.com
Please send bug reports, suggestions and/or feedback to the support
website given above.
Virtual Smart Agent is a commercial software. Any distribution is strictly prohibited
unless a resale rights license was delivered along with this software.
*/
include('myauth.php');
include('modfiles/db.php');
include('globals.php');
include('charts/tables.php');
include('charts/html_table.class.php');
include('panelfunctions.php');
$mid = $_GET['mid'];
$mn = $_GET['mn'];
$ud = $_GET['ud'];
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<LINK href="style.css" type=text/css rel=stylesheet>
<title>Virtual Agent Control Panel</title>
<?php echo $thickboxfiles; ?>
</head>
<body>
<?php echo $menu; ?>
<table width="700" border="0" align="center" cellpadding="10" cellspacing="0" bgcolor="#FFFFFF" class="admin_grey_border">
<tr>
<td><div align="center"><strong>Messages</strong><?php echo $errors; ?></div></td>
</tr>
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<tr>
<td>This section contains all your agent messages. You can easily add, edit, or remove an agent message using the links below.</td>
</tr>
<tr>
<td><hr class="grey_dashed" /></td>
</tr>
<tr>
<td bgcolor="#<?php echo $sectioncolor; ?>">Initial Agent Messages | <a href="boxes/initaddbox.php?cid=<?php echo $_SESSION['cid']; ?>&keepThis=true&TB_iframe=true&height=320&width=360&modal=true" title="Add New Instant Message" class="thickbox">Add New Initial Message</a></td>
</tr>
<tr>
<td>The initial chat messages are the default messages that display when the chat window first appears. Before a message has been received from a user on your website, the virtual smart agent will display the initial chat messages based on the intital delay parameter that is set in the display settings. </td>
</tr>
<tr>
<td><?php echo doInstantMessageTable($_SESSION['cid'],$mid,$mn,$ud); ?> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td bgcolor="#<?php echo $sectioncolor; ?>">Smart Agent Messages | <a href="boxes/smartaddbox.php?cid=<?php echo $_SESSION['cid']; ?>&keepThis=true&TB_iframe=true&height=350&width=380&modal=true" title="Add New Smart Message" class="thickbox">Add New Smart Message</a></td>
</tr>
<tr>
<td>The smart agent messages are keyword based messages that display in response to the user's input keywords. These messages will appear based on the smart delay parameter set in the display settings. HINT: the more keywords and/or keyword phrases entered per message increases the accuracy of the agent response. </td>
</tr>
<tr>
<td><?php echo doSmartMessageTable($_SESSION['cid']); ?></td>
</tr>
<tr>
<td><hr class="grey_dashed" /></td>
</tr>
</table>
</td>
</tr>
<tr>
<td><div align="center"><?php echo $copyright; ?><?php echo $bottomlinks; ?></div></td>
</tr>
</table>
<?php echo $cbottom; ?>
</body>
</html>