universal mail pear is causing errors.
This post has been deleted.
This means that the Mail portion of PEAR is not installed properly. I'd suggest using the Data Bridge BETA. It allows you to send authenticated email without PEAR.
thanks Ray. I figured out the issue. I did not set the path correctly went to far into the mail folder of pear instead of pointing to the Mail.php file first. No issue just my ignorance of not knowing how to use pear correctly. problem solved.
I am receiving an error when trying to do the final submit of my checkout page. Looks as if its not pulling the information from eCart during the email generation [GetContent() generating null]. Still trying to get this up and running. Have installed the beta version as suggested but don't understand how to setup verification without PEAR and if this error has anything to do with universal email.
Please attach the page: webassist/email/templates/order-confirmation.php as well as the page where the email is applied and I can take a look.
It looks like you didn't include the file: webassist/email/templates/order-confirmation.php
After looking at the others, that is the file that needs to be updated.
it was their just not in the folders. Here are the files in the correct folders.
Update the code on top of that page. Instead of:
<?php
//WA eCart Include
require_once("/home/ipmlitho/public_html/webassist/eCart/eCart_PHP.php");
?>
<?php
$eCart->GetContent();
?>
<?php if (0==1) { // code added to make sure Dreamweaver does not show the Server behaviors as broken ?>
<?php
//WA eCart Include
require_once("../../../WA_eCart/eCart_PHP.php");
?>
<?php
$eCart->GetContent();
?>
<?php
// WA eCart Redirect
if ($eCart->redirStr != "") {
if (function_exists("rel2abs")) $eCart->redirStr = rel2abs($eCart->redirStr,dirname(__FILE__));
header("Location: ".$eCart->redirStr);
die();
}
?>
<?php
//WA eCart Include
require_once("../../eCart/eCart_PHP.php");
?>
<?php
$eCart->GetContent();
?>
<?php
// WA eCart Redirect
if ($WA_Store_Cart->redirStr != "") {
header("Location: ".$WA_Store_Cart->redirStr);
}
?>
<?php
}
?>
use:
<?php
global $eCart;
?>
<?php if (0==1) { // code added to make sure Dreamweaver does not show the Server behaviors as broken ?>
<?php
//WA eCart Include
require_once("../../../WA_eCart/eCart_PHP.php");
?>
<?php
$eCart->GetContent();
?>
<?php
// WA eCart Redirect
if ($eCart->redirStr != "") {
if (function_exists("rel2abs")) $eCart->redirStr = rel2abs($eCart->redirStr,dirname(__FILE__));
header("Location: ".$eCart->redirStr);
die();
}
?>
<?php
}
?>
Thanks Ray, just could not see the issue, your the best!
Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.
These out-of-the-box solutions provide you proven, tested applications that can be up and running now. Build a store, a gallery, or a web-based email solution.