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,496 through 6,510 (of 6,723 total)
← 1 2 3 … 433 434 435 … 447 448 449 →
  • Author
    Posts
  • November 16, 2010 at 1:36 pm in reply to: eStore – Cant seem to get the plugin working… #26578
    wzp
    Moderator

    I think, that because you “…changed the currency in between…” that is the reason for the second failure. When the final IPN came through, it no longer matched what eStore was expecting.

    Because you successfully tested it with the sandbox, there is a high confidence level that real purchases will go through. However, if you expect a majority of buyers to have unverified accounts, any tweaks you make between the time of purchase and when the funds clear may cause similar failures.

    November 15, 2010 at 8:49 pm in reply to: Is there a step-by-step? #24582
    wzp
    Moderator

    https://support.tipsandtricks-hq.com/forums/topic/quick-guide-to-paypal-sandbox-setup?replies=1#post-10143

    November 15, 2010 at 4:28 am in reply to: SSL Question #26507
    wzp
    Moderator

    PayPal does not provide secure image hosting. You either have to use SSL or a recommended “secure image hosting provider.”

    https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/solutions_imagehosting

    My personal opinion is that it helps your business more to host the images on your own site than on [https://cheap-image-storage.com]

    Besides, the monthly cost of these services is more than the yearly cost of an SSL certificate.

    November 15, 2010 at 12:42 am in reply to: SSL Question #26505
    wzp
    Moderator

    SSL is implemented through the use of SSL certificates. You pay for the certificate, regardless of whether or not you use it for all parts of the site or not.

    When SSL is being used, all communications between the site and the user (or PayPal) are encrypted. In today’s computing environment, the overhead of doing full time encryption is minimal. Gmail is an example of full time SSL.

    The only reasons I can see for not using full time SSL are:

    1. You are using an el cheapo (free) hosting service that simply doesn’t have the capacity to support full time SSL.

    2. You are running a mobile website. Most non smartphones (WAP enabled) have trouble doing SSL.

    3. You are in a country that requires you to obtain a government license to use SSL.

    You can also save on the cost of an SSL certificate by using what is called a “self signed” certificate. However, it is analogous to the business that makes up and posts its own “trust us” stickers. That, and the fact that most browsers issue warning messages when they detect self signed certificates.

    November 14, 2010 at 8:41 pm in reply to: Is there a step-by-step? #24580
    wzp
    Moderator

    This is one of those threads that I never receive update notifications on… 8(

    Give me a few days and I’ll put together a SandBox narrative.

    November 14, 2010 at 8:24 pm in reply to: SSL Question #26503
    wzp
    Moderator

    You don’t “really” need it, BUT it is “good for business” to have it. The PayPal recommendation is to protect against impersonation by sites other than yours. Customers are then “assured” that they are dealing with your site.

    If you are not a large company dealing with large amounts of money, it is more of an image than a security item. But you should have SSL if you can afford it.

    November 12, 2010 at 4:39 pm in reply to: Large File Download Issue Workarounds (Downloads stopping at a certain point) #19641
    wzp
    Moderator

    Okay, here is the definitive answer… at least for Apache users.

    Both the “#1 Default” and “#7 cURL” download methods will work for any size file, with cURL being preferred because it uses less PHP execution time per megabyte. However, many may have noticed that after about 5 minutes or so the download is mysteriously terminated. Running a Unix style “strings” command on the terminated download usually reveals a “200 OK” or “500 Internal” error message.

    The answer on Apache servers can be found in the httpd.conf file…

    # Timeout: The number of seconds before receives and sends time out.

    Timeout 300

    Even though eStore overrides the PHP script execution timer, if any download takes more than the configured number of seconds; Apache will terminate the download script.

    I suspect the same thing applies to IIS and other servers as well.

    Now I can rest in peace, knowing what was happening!

    P.S. It is unclear if the timeout is in “real” or “processor” seconds. Use of a dedicated server may give different results than shared or grid hosting.

    November 11, 2010 at 5:14 pm in reply to: Selling Video on Demand (sell streaming videos) #26400
    wzp
    Moderator

    Yes. If you trust that your customers will not pass the links around.

    I recommend you use the following eStore feature to handle the selling of your streaming videos.

    http://www.tipsandtricks-hq.com/ecommerce/using-wordpress-permalinks-as-digital-products-apr-1217

    November 11, 2010 at 1:11 am in reply to: Large File Download Issue Workarounds (Downloads stopping at a certain point) #19640
    wzp
    Moderator

    Well, after going through several hundred Google results, the best reason for why downloads are being terminated has something to do with the ModSecurity module in Apache.

    November 10, 2010 at 11:46 pm in reply to: Large File Download Issue Workarounds (Downloads stopping at a certain point) #19639
    wzp
    Moderator

    Well, for those who want to know why downloads terminate in mid transfer, I was able to “catch” this at the end of an 80 MB test file that aborted at the 50 MB mark…

    <html><head>

    <title>200 OK</title>

    </head><body>

    OK

    <p>The server encountered an internal error or

    misconfiguration and was unable to complete

    your request.</p>

    <p>More information about this error may be available

    in the server error log.</p>


    <address>Apache Server at yoursite.com Port 443</address>

    </body></html>

    November 10, 2010 at 2:33 pm in reply to: Large File Download Issue Workarounds (Downloads stopping at a certain point) #19638
    wzp
    Moderator

    @jesssse @timprebble @scottonstott @ToneManufacture @sayWhat and anyone else who has large test files…

    Disclaimer: No promises, but we’d like you to tryout a change we made last night to one of the download methods.

    1. Download version 4.6.3 of eStore:

    https://support.tipsandtricks-hq.com/automatic-update-request

    2. Install the update:

    http://www.tipsandtricks-hq.com/ecommerce/wordpress-estore-installation-and-usage-guide-31

    3. If you are using the plugin’s downloads folder to store you files, remember to delete the ,htaccess file after the update (because it gets replaced).

    4. WP eStore -> Settings -> Addon Settings -> Download Manager Related

    a. Automatic URL Conversion Preference -> Do Not Convert

    b. Download Method -> Method 7, cURL

    Note: If you don’t see Method 7 it means the cURL library is not installed on your server. Also, please write down your current settings in case you decide to go back to what you previously were using.

    5. Update/Save the new settings.

    6. Please try it out and report back. Tell us the size of the file(s) used and the results.

    November 10, 2010 at 1:37 am in reply to: Store has completely stopped working #26212
    wzp
    Moderator

    WP eStore Documentation Index

    http://www.tipsandtricks-hq.com/ecommerce/show-add-to-cart-buttons-using-wordpress-estore-shopping-cart-plugin-1

    November 9, 2010 at 6:47 pm in reply to: A couple of questions about music downloads. #26307
    wzp
    Moderator

    When creating individual products, you would enter the fully qualified (HTTP) URL that corresponds to that particular product, into the “Digital Product URL” field. When you save the information, eStore assigns a “Product ID” number to the product.

    When creating “bundled products,” you would enter the coma separated, “Product ID” numbers of each product component into that same field. So if you are selling 6 individual tracks, whose assigned Product ID are 1,2,3,4,5,6 as a bundled “album,” whose product ID would be 7; you would enter 1, 2, 3, 4, 5, 6 into the Digital Product URL field.

    Alternatively, if you are not selling individual tracks, but still have the album broken into track files; you can replace the 1-6 with the (coma separated) actual (fully qualified) URL of the track files.

    November 9, 2010 at 1:21 pm in reply to: Store has completely stopped working #26210
    wzp
    Moderator

    Just which settings did you “fool with some?”

    November 9, 2010 at 5:46 am in reply to: A couple of questions about music downloads. #26304
    wzp
    Moderator

    Divide the album into individual track files. Offer each track file as an individual product, or offer an album “bundle” of all the individual track files. So if an album contains 6 tracks, you might have 7 products; 6 individual products of 1 track file each and 1 album “bundle” of all 6 track files.

    The reason for breaking the album into individual track files is that it is easier for a customer to download smaller files than having to sit through 1 large download; hoping that nothing “goes wrong” with the download.

  • Author
    Posts
Viewing 15 posts - 6,496 through 6,510 (of 6,723 total)
← 1 2 3 … 433 434 435 … 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