close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Error: Fatal error: Call to a member function MoveFirst() on a non-object

Thread began 8/27/2010 4:16 pm by Dave Buchholz | Last modified 8/31/2010 3:53 pm by Jason Byrnes | 3260 views | 4 replies |

Dave BuchholzBeta Tester

Error: Fatal error: Call to a member function MoveFirst() on a non-object

I have written a function based on code posted by Jason to get the cheapest price of a product which is at the bottom of my view cart page whilst I am testing

<?php 
function i8_buy5get1free($cat,$type) {
$eCart1->MoveFirst(); // this is line 298
$price = $eCart1->DisplayInfo("Price");
while (!$eCart1->EOF()) {
if(($eCart1->DisplayInfo("CatID") == $cat) && ($eCart1->DisplayInfo("TypeID") == $type)) {
if($eCart1->DisplayInfo("Price") < $price) $price = $eCart1->DisplayInfo("Price");
}
$eCart1->MoveNext();
}
$eCart1->MoveFirst();
return $price;
}
?>



which I am using in my discount tab as the attached screenshot

But when I hit the view cart page I get this error Fatal error: Call to a member function MoveFirst() on a non-object in /Volumes/Western Digital/Sites/tshirt-town/view-basket.php on line 298

what am I doing wrong ?

Sign in to reply to this post

Dave BuchholzBeta Tester

fixed adding global $eCart1; inside my function solved the issue

[code]
function i8_findCheapest($subcat,$type) {
global $eCart1;

if (!$eCart1->IsEmpty()) {
$eCart1->MoveFirst();
$price = $eCart1->DisplayInfo("Price");
while (!$eCart1->EOF()) {
if(($eCart1->DisplayInfo("Price") < $price) && (($eCart1->DisplayInfo("SubcatID") == $subcat) && ($eCart1->DisplayInfo("TypeID") == $type))) $price = $eCart1->DisplayInfo("Price");
$eCart1->MoveNext();
}
$eCart1->MoveFirst();
return $price;
}
}
[code]

Sign in to reply to this post

Jason ByrnesWebAssist

where is this function code?


Is it added to the cart include file? if so, you should reference the cart object as $this instead of $eCart1

Sign in to reply to this post

Dave BuchholzBeta Tester

Jason,

it's in an external include file

Sign in to reply to this post

Jason ByrnesWebAssist

ahh, that's why you needed the global variable.

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

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.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...