Tips and Tricks HQ Support

Support site for Tips and Tricks HQ premium products

  • Home
  • Contact Us
  • Documentation
  • Forum Home
    • Forum
    • Forum Search
    • Forum Login
    • Forum Registration
You are here: Home

wzp

  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 15 posts - 6,646 through 6,660 (of 6,723 total)
← 1 2 3 … 443 444 445 … 447 448 449 →
  • Author
    Posts
  • September 21, 2010 at 1:43 am in reply to: Finding out the number of items in the simple shopping cart #22624
    wzp
    Moderator

    So, if I had 4 cans of Chicken Noodle Soup, and 3 cans of Mushroom Roup; the number is 7, right?

    September 20, 2010 at 10:38 pm in reply to: Multiple vendors on the same site (digital products only) #24586
    wzp
    Moderator

    WP eStore -> Add/Edit Products -> Some Product -> Buy Now Or Subscription Type Button Specific Settings -> PayPal E-mail

    You can set the PayPal address for that specific product. Also, that product can have it’s own return page, ***AND*** you can specify a product specific currency code, in case the co-seller wants to be paid in RMB or some other currency!

    Unfortunately, as the title of the setting suggests, you can only do this on Buy Now buttons or individual subscriptions, because otherwise it would totally confuse the shopping cart.

    September 20, 2010 at 9:45 pm in reply to: Lager file download returning 0KB or 772kb #24519
    wzp
    Moderator

    Now it will 8)

    September 20, 2010 at 9:34 pm in reply to: Terms & Conditions Issue #24583
    wzp
    Moderator

    It’s a bug. The “You must agree…” message is being displayed at the same time the CSS is being generated. That screws up the output. You also get the same result if you close the Ajax generated popup, before it finishes transferring to PayPal.

    September 20, 2010 at 8:57 pm in reply to: Hooks #17454
    wzp
    Moderator

    Some of my work is in the Unix System V code… yeah, *nix runs through my blood.

    “Hooks” refers to the ability to integrate your code into somebody else’s code. WordPress allows eStore and other plugins to hook into it (WordPress). eStore has the ability to hook into other “selected” plugins, and allows other “selected” plugins to hook into it (eStore). That’s what it means when you see Amin and Ivy talk about eStore integration.

    The only way you are going to hook into eStore is to get down and dirty with the code, unless Amin reveals the presence of an eStore API.

    On the subject of Google Checkout, please see:

    https://support.tipsandtricks-hq.com/forums/topic/google-checkout-revisted#post-7904

    September 20, 2010 at 8:37 pm in reply to: What to configure in PayPal Edit Instant Payment Notification (IPN) settings? #24572
    wzp
    Moderator

    As a “safety precaution,” it’s a good idea; but not a requirement. The reason it’s a good idea, is to prevent accidental IPN callbacks to the old notification URL.

    September 20, 2010 at 8:28 pm in reply to: Lager file download returning 0KB or 772kb #24516
    wzp
    Moderator

    @arts — Here is some pseudo code that may answer your question…

    IF server allows fopen() for URLs {

    SWITCH $DownloadMethod

    CASE(2):

    // Method 2.

    CASE(3):

    // Method 3.

    CASE(4):

    // Method 4.

    CASE(5):

    // Method 5.

    CASE(6): {

    IF Apache Gzip installed, disable it;

    IF Resumable downloading supported, enable it;

    Send file contents in 1 MB chunks;

    }

    DEFAULT:

    Send file contents in 8 KB chunks;

    END SWITCH;

    } ELSE {

    IF cURL library installed {

    Download using cURL;

    } ELSE {

    Fatal error;

    }

    }

    =======================================

    Since the smaller server is your production system, and it seems to be working for now; is it fair to say the situation is not as “hot” as it was 2 days ago? I’d like to study the code a bit, and maybe try a few things. I will pass any suggestions on to Amin.

    Or, if you are feeling really brave and adventurous, since you appear to be technically advanced, would you like to be able “test drive” any of my code suggestions? If so, please visit my site and leave me your e-mail address on a contact form:

    h-t-t-p colon slash slash TheAssurer dot com slash contact

    September 20, 2010 at 8:13 pm in reply to: What to configure in PayPal Edit Instant Payment Notification (IPN) settings? #24570
    wzp
    Moderator

    You don’t need to set it for eStore. The reason is because eStore tells PayPal what the Notification URL is, when it invokes PayPal. Some plugins will deliberately not embed the URL in their PayPal calls, to lock you into one product; because you can only have one Notification URL at a time in your PayPal profile!

    September 20, 2010 at 8:08 pm in reply to: Is there a step-by-step? #24574
    wzp
    Moderator

    I was thinking of asking Amin if he’d be interested in my writing a tutorial on how to use the PayPal sandbox with eStore… Is that something that would help? At least it would save you 32 cents whenever you wanted to see if it works 8)

    September 20, 2010 at 8:01 pm in reply to: Hooks #17452
    wzp
    Moderator

    If you have access to a Unix/Linux/*nix command line, change to the plugin directory and issue the following shell command:

    grep add_shortcode *.php

    Essentially, you are looking for all occurrences of when/where a new short code is added to WordPress.

    The first argument to add_shortcodes is the shortcode string itself. The second argument is the name of the function that WordPress should call, when that shortcode is parsed.

    September 20, 2010 at 6:04 pm in reply to: Lager file download returning 0KB or 772kb #24515
    wzp
    Moderator

    Yes I can tell you in about 2 hours. Am mobile now.

    @Amin007 — Thanks for the promotion, boss!

    September 20, 2010 at 4:49 pm in reply to: Bug in stats page #24245
    wzp
    Moderator

    Okay, so let’s try to confirm something… is the actual amount of monies in your PayPal account, for each transaction correct? Not from the PayPal e-mails, but from logging into PayPal and looking at your transaction history. If so, Amin can focus on any eStore bugs; instead of possible fraud exploits.

    September 20, 2010 at 4:15 pm in reply to: Site crashed? #24567
    wzp
    Moderator

    BTW, did you ever do any test transactions, using the PayPal sandbox?

    September 20, 2010 at 4:14 pm in reply to: Site crashed? #24566
    wzp
    Moderator

    The permissions for the plugin directory and all subdirectories should be 755. The permissions for all files in the plugin directory and all subdirectories should be 644.

    September 20, 2010 at 2:24 pm in reply to: Lager file download returning 0KB or 772kb #24512
    wzp
    Moderator

    I’m going to think about possible debugging strategies. The existing code (now it does, LOL) works on the smaller server, so it should be working on the larger one… or as my kid might say, “WT@?”

  • Author
    Posts
Viewing 15 posts - 6,646 through 6,660 (of 6,723 total)
← 1 2 3 … 443 444 445 … 447 448 449 →

Forum Related

  • Forum Home
  • Forum Search
  • Forum Registration
  • Forum Login

Support Related Forms

  • Contact Us
  • Customer Support
  • Request a Plugin Update
  • Request Fresh Download Links

Useful Links

  • Plugin Upgrade Instructions
  • WP eStore Documentation
  • WP eMember Documentation
  • WP Affiliate Platform Documentation
  • Tips and Tricks HQ Home Page
  • Our Projects

Quick Setup Video Tutorials

  • WP eStore Video Tutorial
  • WP eMember Video Tutorial
  • WP Affiliate Platform Video Tutorial
  • Lightbox Ultimate Video Tutorial

Our Other Plugins

  • WP Express Checkout
  • Stripe Payments Plugin
  • Simple Shopping Cart Plugin
  • Simple Download Monitor

Copyright © 2025 | Tips and Tricks HQ