Smart Image Processor PHP 2 Support Product Page
This topic was archived
Image processor PHP2.0.5 not showing thumbs
Asked 25 Mar 2009 05:22:12
1
has this question
25 Mar 2009 05:22:12 Mat p posted:
I have two questions.1. here is the code i have to do the thumbnails, not sure if it is right. im uploading upto 10 images at a time which is working and they are resizing but i want to make thums for the main page, I was using image processor V1 and that worked but since buying 2.0.5 i cant get it to work.
// Smart Image Processor PHP 2.0.5
if (isset($_GET['GP_upload'])) {
$sipp2 = new cGraphicMediator("upload", $ppu, "");
$sipp2->setComponent("Auto");
$sipp2->setMatteColor("#FFFFFF");
$sipp2->resize(117, 117, true);
$sipp2->overwrite = false;
$sipp2->setMask("##properties/##thumbs/small_##name##.jpg");
$sipp2->saveJPEG(80);
$sipp2->process();
}2. How do i actually link to the thumbnail. I have the image store in database am i required to store the thumb in database as well? can some one show me the code for this and the above
Replies
Replied 25 Mar 2009 18:11:36
25 Mar 2009 18:11:36 Miroslav Zografski replied:
Hi Mat,
Please, provide the code of the entire page as well as information on your DW OS and Server Versions.
Regards,
Please, provide the code of the entire page as well as information on your DW OS and Server Versions.
Regards,
Replied 26 Mar 2009 01:43:42
26 Mar 2009 01:43:42 Mat p replied:
Im using DWCS3 on Vista server info:
System Linux control4.tppinternet.net.au 2.6.9-78.0.8.ELsmp #1 SMP Wed Nov 5 07:10:44 EST 2008 i686
Apache 2.0 Handler
Page code:
System Linux control4.tppinternet.net.au 2.6.9-78.0.8.ELsmp #1 SMP Wed Nov 5 07:10:44 EST 2008 i686
Apache 2.0 Handler
Page code:
<?php require_once('../Connections/tre.php'); ?>
<?php require_once('../ScriptLibrary/incPureUpload.php'); ?>
<?php require_once('../ScriptLibrary/cGraphicMediator.php'); ?>
<?php
// Pure PHP Upload 2.1.7
$ppu = new pureFileUpload();
$ppu->path = "../properties";
$ppu->extensions = "GIF,JPG,JPEG,BMP,PNG";
$ppu->formName = "form1";
$ppu->storeType = "file";
$ppu->sizeLimit = "";
$ppu->nameConflict = "uniq";
$ppu->requireUpload = "false";
$ppu->minWidth = "";
$ppu->minHeight = "";
$ppu->maxWidth = "";
$ppu->maxHeight = "";
$ppu->saveWidth = "";
$ppu->saveHeight = "";
$ppu->timeout = "600";
$ppu->progressBar = "showProgress.htm";
$ppu->progressWidth = "300";
$ppu->progressHeight = "100";
$ppu->redirectURL = "";
$ppu->checkVersion("2.1.7");
$ppu->doUpload();
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
if (isset($editFormAction)) {
if (isset($_SERVER['QUERY_STRING'])) {
if (!eregi("GP_upload=true", $_SERVER['QUERY_STRING'])) {
$editFormAction .= "&GP_upload=true";
}
} else {
$editFormAction .= "?GP_upload=true";
}
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO tre (ID, title, price, `desc`, bed, bath, car, photo1, photo2, photo3, photo4, photo5, photo6, photo7, photo8, photo9, photo10) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['ID'], "int"),
GetSQLValueString($_POST['title'], "text"),
GetSQLValueString($_POST['price'], "text"),
GetSQLValueString($_POST['desc'], "text"),
GetSQLValueString($_POST['bed'], "text"),
GetSQLValueString($_POST['bath'], "text"),
GetSQLValueString($_POST['car'], "text"),
GetSQLValueString($_POST['photo1'], "text"),
GetSQLValueString($_POST['photo2'], "text"),
GetSQLValueString($_POST['photo3'], "text"),
GetSQLValueString($_POST['photo4'], "text"),
GetSQLValueString($_POST['photo5'], "text"),
GetSQLValueString($_POST['photo6'], "text"),
GetSQLValueString($_POST['photo7'], "text"),
GetSQLValueString($_POST['photo8'], "text"),
GetSQLValueString($_POST['photo9'], "text"),
GetSQLValueString($_POST['photo10'], "text"));
mysql_select_db($database_tre, $tre);
$Result1 = mysql_query($insertSQL, $tre) or die(mysql_error());
$insertGoTo = "add.php?d=1";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
?>
<?php
// Smart Image Processor PHP 2.0.5
if (isset($_GET['GP_upload'])) {
$sipp2 = new cGraphicMediator("upload", $ppu, "");
$sipp2->setComponent("Auto");
$sipp2->setMatteColor("#FFFFFF");
$sipp2->resize(117, 117, true);
$sipp2->overwrite = false;
$sipp2->setMask("##properties/##thumbs/small_##name##.jpg");
$sipp2->saveJPEG(80);
$sipp2->process();
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/tre.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<!-- InstanceBeginEditable name="doctitle" -->
<title>......</title>
<!-- InstanceEndEditable -->
<style type="text/css">
<!--
body {
background-image: url(../images/top_bg.jpg);
background-repeat: repeat-x;
}
-->
</style>
<link href="../styles.css" rel="stylesheet" type="text/css" />
<script type="text/JavaScript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script>
<!-- InstanceBeginEditable name="head" -->
<style type="text/css">
<!--
/* BEGIN Advanced HTML Editor */
.dmx_btn { width: 22px; height: 22px; border: 1px solid #ECE9D8; margin: 0; padding: 0; background-color: #ECE9D8; }
.dmx_btnOver { width: 22px; height: 22px; border: 1px outset; margin: 0; padding: 0; background-color: #FCF9E8; }
.dmx_btnDown { width: 22px; height: 22px; border: 1px inset; margin: 0; padding: 0; background-color: #FCF9E8; }
.dmx_btnNA { width: 22px; height: 22px; border: 1px solid #ECE9D8; margin: 0; padding: 0; -moz-opacity:0.25; opacity:0.25; filter: alpha(opacity=25);}
.dmx_menuBar { background-color: #ECE9D8; }
/* END Advanced HTML Editor */
-->
</style>
<script language="javascript">
<!--
/* BEGIN Advanced HTML Editor */
var BaseURL = "../";
/* END Advanced HTML Editor */
//-->
</script>
<script language="JavaScript" src="../ScriptLibrary/AdvHTMLLang.js"></script>
<script language="JavaScript" src="../ScriptLibrary/AdvHTMLEdit.js"></script>
<!-- InstanceEndEditable -->
</head>
<body topmargin="0" >
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="4"></td>
<td width="81" class="nav"><div align="center"><a href="../index.php" class="nav">Home</a></div></td>
<td width="12" class="nav"><img src="../images/top_div.jpg" width="11" height="34" /></td>
<td width="132" class="nav"><div align="center"><a href="../Properties_for_Sale.php" class="nav">Properties for Sale</a></div></td>
<td width="11" class="nav"><img src="../images/top_div.jpg" alt="" width="11" height="34" /></td>
<td width="111" class="nav"><div align="center"><a href="../appraisal.php">Free Appraisals</a></div></td>
<td width="11" class="nav"><img src="../images/top_div.jpg" alt="" width="11" height="34" /></td>
<td width="116" class="nav"><div align="center"><a href="../buyers_wishlist.php" class="nav">Buyers Wishlist</a></div></td>
<td width="11" class="nav"><img src="../images/top_div.jpg" alt="" width="11" height="34" /></td>
<td width="120" class="nav"><div align="center"><a href="../real_estate_tips.php" class="nav">Real Estate Tips</a></div></td>
<td width="11" class="nav"><img src="../images/top_div.jpg" alt="" width="11" height="34" /></td>
<td width="120" class="nav"><div align="center"><a href="../testimonials.php" class="nav">Testimonials</a></div></td>
<td width="11" class="nav"><img src="../images/top_div.jpg" alt="" width="11" height="34" /></td>
<td width="89" class="nav"><div align="center"><a href="../about_us.php">About Us</a></div></td>
<td width="11" class="nav"><img src="../images/top_div.jpg" alt="" width="11" height="34" /></td>
<td width="129" class="nav"><div align="center"><a href="../contact.php" class="nav">Contact Us</a></div></td>
</tr>
<tr>
<td colspan="16"><img src="../images/header.jpg" alt="" width="980" height="94" longdesc="http://www......com.au" /></td>
</tr>
<tr>
<td colspan="16"><script language="JavaScript">
// Advanced Random Images Start
// Copyright 2001-2002 All rights reserved, by Paul Davis - www.kaosweaver.com
var j,d="",l="",m="",p="",q="",z="",KW_ARI= new Array()
KW_ARI[KW_ARI.length]='/images/flash.jpg';
KW_ARI[KW_ARI.length]='/images/flash2.jpg';
j=parseInt(Math.random()*KW_ARI.length);
j=(isNaN(j))?0:j;
document.write("<img src='"+KW_ARI[j]+"'>");
// Advanced Random Images End
</script>
<!-- KW ARI Image --></td>
</tr>
<tr>
<td></td>
<td colspan="15" valign="top"><table width="885" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="856"><div align="left"><!-- InstanceBeginEditable name="title" -->
<script language='JavaScript' src='../ScriptLibrary/incPureUpload.js' type="text/javascript"></script>
<script language='JavaScript' src='../ScriptLibrary/incPureUpload.js' type="text/javascript"></script>
<script language='JavaScript' src='../ScriptLibrary/incPureUpload.js' type="text/javascript"></script>
Territory Real Estate - Administration Area<!-- InstanceEndEditable --></div></td>
</tr>
</table></td>
</tr>
<tr>
<td></td>
<td colspan="15"><table width="971" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="48" class="maintext"></td>
<td width="872" rowspan="3" valign="top" class="maintext"><div align="left"><!-- InstanceBeginEditable name="body" -->
<p>Add a Property</p>
<p>
<? if ($_GET['d'] == "1") { ?>
<strong><font color="#FF0000">SECTION UPDATED</font></strong>
<?php }?>
</p>
<form action="<?php echo $editFormAction; ?>" method="POST" enctype="multipart/form-data" name="form1" id="form1" onsubmit="checkFileUpload(this,'GIF,JPG,JPEG,BMP,PNG',false,'','','','','','','');showProgressWindow('showProgress.htm',300,100);return document.MM_returnValue">
<table align="center">
<tr valign="baseline">
<td nowrap="nowrap" align="right">Title:</td>
<td><input type="text" name="title" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Price:</td>
<td><input type="text" name="price" value="" size="32" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right" valign="top">Desc:</td>
<td valign="top"><label>
<textarea dmxedit="true" id="desc" name="desc" style="width:100%;height:400px;"></textarea></label> </td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Bed:</td>
<td><input type="text" name="bed" value="" size="4" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Bath:</td>
<td><input type="text" name="bath" value="" size="4" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Car:</td>
<td><input type="text" name="car" value="" size="4" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Photo1:</td>
<td><label>
<input name="photo1" type="file" id="photo1" onchange="checkOneFileUpload(this,'GIF,JPG,JPEG,BMP,PNG',false,'','','','','','','')" />
</label></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Photo2:</td>
<td><label>
<input name="photo2" type="file" id="photo2" onchange="checkOneFileUpload(this,'GIF,JPG,JPEG,BMP,PNG',false,'','','','','','','')" />
</label></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Photo3:</td>
<td><input name="photo3" type="file" id="photo3" onchange="checkOneFileUpload(this,'GIF,JPG,JPEG,BMP,PNG',false,'','','','','','','')" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Photo4:</td>
<td><input name="photo4" type="file" id="photo4" onchange="checkOneFileUpload(this,'GIF,JPG,JPEG,BMP,PNG',false,'','','','','','','')" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Photo5:</td>
<td><input name="photo5" type="file" id="photo5" onchange="checkOneFileUpload(this,'GIF,JPG,JPEG,BMP,PNG',false,'','','','','','','')" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Photo6:</td>
<td><input name="photo6" type="file" id="photo6" onchange="checkOneFileUpload(this,'GIF,JPG,JPEG,BMP,PNG',false,'','','','','','','')" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Photo7:</td>
<td><input name="photo7" type="file" id="photo7" onchange="checkOneFileUpload(this,'GIF,JPG,JPEG,BMP,PNG',false,'','','','','','','')" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Photo8:</td>
<td><input name="photo8" type="file" id="photo8" onchange="checkOneFileUpload(this,'GIF,JPG,JPEG,BMP,PNG',false,'','','','','','','')" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Photo9:</td>
<td><input name="photo9" type="file" id="photo9" onchange="checkOneFileUpload(this,'GIF,JPG,JPEG,BMP,PNG',false,'','','','','','','')" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right">Photo10:</td>
<td><input name="photo10" type="file" id="photo10" onchange="checkOneFileUpload(this,'GIF,JPG,JPEG,BMP,PNG',false,'','','','','','','')" /></td>
</tr>
<tr valign="baseline">
<td nowrap="nowrap" align="right"> </td>
<td><input type="submit" value="Insert record" /></td>
</tr>
</table>
<input type="hidden" name="ID" value="" />
<input type="hidden" name="MM_insert" value="form1" />
</form>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<!-- InstanceEndEditable --></div></td>
<td width="51"></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td height="60" colspan="3" background="../images/footer_bg.gif"><table width="876" border="0" align="center" cellpadding="0" cellspacing="0" class="verdana10px">
</table></td>
</tr>
</table></td>
</tr>
</table>
</body>
<!-- InstanceEnd --></html>
Replied 27 Mar 2009 14:23:18
27 Mar 2009 14:23:18 Teodor Kuduschiev replied:
Hello Mat,
the problem is that the code of the SIP is after the code of Insert Behvaiour where is a redirection and it will not be executed.
All you have to do is to remove from your page the Pure PHP uploader, the Smart image processor and the Insert behaviour and after that to insert them in exactly this order:
1)Pure PHP uploader
2)Smart image processor
3)Insert behaviour
the problem is that the code of the SIP is after the code of Insert Behvaiour where is a redirection and it will not be executed.
All you have to do is to remove from your page the Pure PHP uploader, the Smart image processor and the Insert behaviour and after that to insert them in exactly this order:
1)Pure PHP uploader
2)Smart image processor
3)Insert behaviour
Replied 28 Mar 2009 03:27:33
28 Mar 2009 03:27:33 Mat p replied:
I tried this but nothing here is the code, it has been placed in the same order again
<?php require_once('../Connections/tre.php'); ?>
<?php require_once('../ScriptLibrary/incPureUpload.php'); ?>
<?php require_once('../ScriptLibrary/cGraphicMediator.php'); ?>
<?php
// Pure PHP Upload 2.1.7
$ppu = new pureFileUpload();
$ppu->path = "../properties";
$ppu->extensions = "";
$ppu->formName = "form1";
$ppu->storeType = "path";
$ppu->sizeLimit = "";
$ppu->nameConflict = "uniq";
$ppu->requireUpload = "true";
$ppu->minWidth = "";
$ppu->minHeight = "";
$ppu->maxWidth = "";
$ppu->maxHeight = "";
$ppu->saveWidth = "";
$ppu->saveHeight = "";
$ppu->timeout = "600";
$ppu->progressBar = "showProgress.htm";
$ppu->progressWidth = "300";
$ppu->progressHeight = "100";
$ppu->redirectURL = "";
$ppu->checkVersion("2.1.7");
$ppu->doUpload();
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
if (isset($editFormAction)) {
if (isset($_SERVER['QUERY_STRING'])) {
if (!eregi("GP_upload=true", $_SERVER['QUERY_STRING'])) {
$editFormAction .= "&GP_upload=true";
}
} else {
$editFormAction .= "?GP_upload=true";
}
}
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
$insertSQL = sprintf("INSERT INTO tre (ID, title, price, `desc`, bed, bath, car, photo1, photo2, photo3, photo4, photo5, photo6, photo7, photo8, photo9, photo10) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
GetSQLValueString($_POST['ID'], "int"),
GetSQLValueString($_POST['title'], "text"),
GetSQLValueString($_POST['price'], "text"),
GetSQLValueString($_POST['desc'], "text"),
GetSQLValueString($_POST['bed'], "text"),
GetSQLValueString($_POST['bath'], "text"),
GetSQLValueString($_POST['car'], "text"),
GetSQLValueString($_POST['photo1'], "text"),
GetSQLValueString($_POST['photo2'], "text"),
GetSQLValueString($_POST['photo3'], "text"),
GetSQLValueString($_POST['photo4'], "text"),
GetSQLValueString($_POST['photo5'], "text"),
GetSQLValueString($_POST['photo6'], "text"),
GetSQLValueString($_POST['photo7'], "text"),
GetSQLValueString($_POST['photo8'], "text"),
GetSQLValueString($_POST['photo9'], "text"),
GetSQLValueString($_POST['photo10'], "text"));
mysql_select_db($database_tre, $tre);
$Result1 = mysql_query($insertSQL, $tre) or die(mysql_error());
$insertGoTo = "add.php?d=1";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $insertGoTo));
}
?><?php
// Smart Image Processor PHP 2.0.5
if (isset($_GET['GP_upload'])) {
$sipp2 = new cGraphicMediator("upload", $ppu, "");
$sipp2->setComponent("Auto");
$sipp2->setMatteColor("#FFFFFF");
$sipp2->resize(117, 117, true);
$sipp2->overwrite = true;
$sipp2->saveJPEG(80);
$sipp2->process();
}
?>
<?php
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
?> Replied 14 Apr 2009 09:02:49
14 Apr 2009 09:02:49 Mat p replied:
Well I still haven't found a fix for this. Any help would be GREAT
Replied 17 May 2009 13:47:00
17 May 2009 13:47:00 Mat p replied:
Good to see that after spending my hard earned $$ on an extension that sort of works, the after sale service/customer support is as good as my local car dealer.....
Replied 20 May 2009 09:09:21
20 May 2009 09:09:21 Miroslav Zografski replied:
Hello Mat,
Sorry for the delay.
Please, try remove the redirection that is placed in Insert Record SB and place that redirection in SIP.
Regards,
Sorry for the delay.
Please, try remove the redirection that is placed in Insert Record SB and place that redirection in SIP.
Regards,

