• HOME
  • TAGS
  • COUNTERS
  • INGREDIENTS
  • HOMEMADE ↓
    • Jerky Making
    • Pet Jerky
    • Starting a Jerky Business
  • SUBMIT
  • ABOUT ↓
    • Jerky Shrine
    • Jerky Prices
    • Jerky Price Updates
    • Jerky Criteria
    • Jerky Glossary
    • Jerky Videos
    • Contact Us
    • About Us
    • Donate
  • Instagram
  • FB
  • Twitter Page

Jerky Ingredients

Jerky Reviews

  • HOME
  • BRANDS
  • TYPES
  • FLAVORS ↓
    • FLAVOR TAGS
    • FLAVOR NAMES
  • RATINGS ↓
    • Ingredient Reviews
    • Taste Reviews
    • Bag Reviews
  • NEWS

Creating a Jerky Review

Wednesday, February 5, 2025 Leave a Comment

Creating a Jerky ReviewWhile a few other jerky review websites have popped up over the years, only two active ones exist worldwide, and both have an information technology background. Steve Johnson from www.bestbeefjerky.org started reviewing jerky in 2008, and I launched jerkyingredients.com in 2014. While Steve is still the world leader in reviewing close to 400 jerky brands, we may surpass www.bestbeefjerky.org by the end of 2025, currently at 368 404 jerky brands reviewed.

Creating a Jerky ReviewOn a few occasions, after we review jerky from a jerky brand that submitted their jerky for review, they will contact me to remove the review as they believe it negatively affects their sales. Well, sorry, that is not the nature of submitting jerky for review. Removing the jerky review is complex, and search engines such as Google are not too keen on HTTP Error 404 (Page Not Found).

The more challenging aspect would be removing the jerky review from the database, where it would not be worth the time. A surprising amount of work goes into creating a jerky review, whereas writing the taste review is a minor step in making the entire jerky review.

While not everybody or anybody has to do a jerky review this way, I have broken down creating a jerky review into 30 different steps.

  1. Purchase or acquire jerky through a jerky brand submission. Jerky submissions can include many correspondences.
  2. If the jerky included jerky paraphernalia, add it to the Jerky Shrine.
  3. If the jerky included jerky paraphernalia, photograph jerky paraphernalia in the Jerky Shrine.
  4. Transfer pictures from cellphone to PC.
  5. Save the pictures to files using the imaging editing software Gimp, for example.
  6. Upload image files to your web host using Cyberduck, for example.
  7. Post Jerky Shrine images on Facebook, Twitter, and Instagram.
  8. Email jerky maker for a heads up that I am doing a review and asking standard and personalized questions.
  9. Photograph the jerky and bag.
  10. Separate the bag into portions for Paul and Stéphane if applicable.
  11. Arrange different methods with Paul and Stéphane to acquire the jerky. This is not always an easy job.
  12. Transfer pictures from cellphone to PC.
  13. Save the pictures to files using the imaging editing software Gimp, for example.
  14. Compress image files using Caesium, for example.
  15. Upload image files to your web host using Cyberduck, for example.
  16. Create database scripts. This can include adding a new jerky brand, jerky state or province, jerky country, jerky distributor, jerky distributor state or province, jerky distributor country, jerky private label, jerky private label state or province, jerky private label country, jerky type, jerky ingredient, jerky category, jerky tag, jerky flavor, jerky shrine jerky brand, or jerky shrine new item. See bottom for an example.
  17. Write an introduction for the jerky brand and flavor. Since 2023, most jerky brands are started by asking ChatGPT to describe the jerky maker. E.g. describe the Super Jerky brand www.superjerky.com/about-us. This ChatGPT post describes the process in more detail.
  18. Customize the jerky brand introduction with more research and correspondence from email if applicable.
  19. Create new jerky tags and categories if applicable.
  20. Manually type out the ingredient list writing in HTML. Add ingredients to the database if they are new, write a description, and assign a rating.
  21. Write ingredient review.
  22. Write bag review.
  23. Receive Paul’s taste review and Stéphane’s, if applicable, via email. Copy and paste their taste reviews to the jerky review.
  24. Write a taste review.
  25. Use Grammarly for grammar errors and suggestions. Go through this cycle at least three times, often many more.
  26. Verify that the ingredient, bag, and taste ratings match in the database, WordPress, and the webpage.
  27. Publish jerky review.
  28. Email the jerky brand about the jerky review if the jerky was submitted or if a jerky brand responded to my questions.
  29. Post jerky review on Facebook, Twitter, and Instagram.
  30. If a milestone was hit, e.g. 1000 jerky reviews, 500 jerky flavor names, 30 jerky types; write a post to celebrate that milestone, which includes finding or creating an appropriate image.

There are other sub steps not covered in the thirty steps. We have been steadily publishing two weekly jerky reviews since the second half of 2023 with no end in sight.

Using the programming language PHP and, for example, the open source database MySQL interacting with WordPress, I can neatly organize the jerky tags and jerky categories under each jerky review with a little bit of creative computer programming and SQL database scripts with each review.

Below are example database scripts for a single jerky review on a jerky brand from a new country that divulged the private labeler (aka co-packer), this is roughly how the database scripts would look. This review introduced lamb as a new jerky type and introduced to the Jerky Shrine. Not all fields in the database ‘bag’ table are used anymore, and I stopped populating the bagingredient table in 2019, where the work required was not worth the effort.

/* ————————– Feed The Viking – Sea Salt & Herbs Lamb Jerky */

insert into jerkyshrinemaker (
jerkyshrinemakerid,
jerkyshrinemakername,
jerkyshrinemakerstate,
jerkyshrinemakercountry,
jerkyshrinemakerdisplay,
jerkyshrinemakerbag,
jerkyshrinemakerlocation,
jerkyshrinemakerlocationcount)
values (
502,
‘Feed The Viking’,
‘North Iceland’,
‘Iceland’,
‘Y’,
3,
3,
‘Y’);

insert into jerkyshrinemakeritem (
jerkyshrinemakeritemid,
jerkyshrinemakeritemdescription)
values
(31,
‘Jerky Bag’);

INSERT INTO flavour (
flavourid,
flavourname,
description,
category,
hot,
sweet,
flavoururl)
values (
550,
‘Sea Salt & Herbs’,
‘Sea Salt & Herbs flavored jerky’,
‘Original’,
‘N’,
‘N’,
‘https://jerkyingredients.com/tag/original’);

INSERT INTO privatelabel (
privatelabelid,
privatelabelname,
city,
state,
country,
privatelabelurl,
privatelabeltagurl)
values
(22, — privatelabelid id
‘Nordlenska ehf.’,
‘Grímseyjargötu’,
‘North Iceland’,
‘Iceland’,
‘https://www.nordlenska.is/is/english/’, — brand URL
‘https://jerkyingredients.com/tag/nordlenska-ehf/’); — Brand tag URL

INSERT INTO jerkytype (
typeid,
typename,
species,
category,
jerkytypeurl)
values
(27,
‘Lamb’,
‘Lamb’,
‘Mammal’,
‘https://jerkyingredients.com/category/mammal/lamb/’);

INSERT INTO distributer (
distributerid,
privatelabelid,
distributername,
city,
state,
zipcode,
country,
oriental,
distributertagurl)
values
(239,
22,
‘Feed The Viking ehf.’,
‘Reykjavik’,
‘Capital Area’,
”,
‘Iceland’,
‘N’,
‘https://jerkyingredients.com/tag/feed-the-viking-ehf/’);

INSERT INTO brand (
brandid,
brandname,
city,
state,
country,
distributerid,
privatelabelid,
submitted,
oriental,
brandurl,
brandtagurl)
values
(247, — brand id
‘Feed The Viking’,
‘Reykjavik’,
‘Capital Area’,
‘Iceland’,
239, — distributer id
22, — privatelabelid
‘Y’, — submitted
‘N’,
‘https://feedtheviking.com’, — brand URL
‘https://jerkyingredients.com/tag/feed-the-viking/’); — Brand tag URL

INSERT INTO jerkycategory (
categoryid,
categoryname,
categorydescription,
subcategoryname,
categorypermalink,
sortid,
categorysortid)
values (
74,
‘Lamb’,
‘All jerky reviews done on lamb.’,
‘Mammal’,
‘https://jerkyingredients.com/category/mammal/lamb/’,
4,
20);

INSERT INTO bag (
bagid,
bagname,
flavourid,
typeid,
brandid,
distributerid,
privatelabelid,
tasterating,
bagrating,
ingredientrating,
bagvalue,
thickness,
cost,
grams,
ounces,
dimensionl,
dimensionw,
reviewdate,
purchasedate,
purchasecountry,
purchasestate,
purchasecity,
purchasestore,
meatcountry,
slogan1,
slogan2,
handsliced,
biltong,
chopped,
chunked,
freerange,
grassfed,
halal,
kosher,
news,
nomsg,
nonitrite,
organic,
softtender,
stockrecipe,
ethical,
resealable,
smoked,
vacuumsealed,
oxygenabsorber,
plastictype,
submitted,
reviewed,
reviewurl)
values
(1386, — bagid
‘Feed The Viking – Sea Salt & Herbs Lamb Jerky’, — bagname
550, — flavourid
27, — typeid
247, — brandid
239, — distributerid
22, — privatelabelid
10, — tasterating
10, — bagrating
9, — ingredientrating
‘Expensive’, — bagvalue
‘Medium’, — thickness
9.99, — cost
50, — grams
1.85, — ounces
20, — dimensionl
15, — dimensionw
‘2020-08-26’, — reviewdate
‘2020-08-26’, — purchasedate
‘Canada’, — purchasecountry
‘Ontario’, — purchasestate
‘Brampton’, — purchasecity
‘Submitted’, — purchasestore
‘Iceland’, — meatcountry
‘Come and Take It’, — slogan1
”, — slogan2
‘N’, — handsliced,
‘N’, — biltong
‘N’, — chopped
‘N’, — chunked
‘Y’, — freerange
‘Y’, — grassfed
‘N’, — halal
‘N’, — kosher
‘N’, — news
‘Y’, — nomsg
‘N’, — nonitrite
‘N’, — organic
‘N’, — softtender
‘N’, — stockrecipe
‘Y’, — ethical
‘Y’, — resealable
‘N’, — smoked
‘N’, — vacuumsealed
‘Y’, — oxygenabsorber
‘tempvalue’,
‘Y’, — submitted
‘Y’, — reviewed
‘https://jerkyingredients.com/2020/08/28/feed-the-viking-sea-salt-herbs-lamb-jerky/’);

insert into bagcategory (bagid,bagcategoryname,categorypermalink,sortid) values
(1386,’Lamb’,’https://jerkyingredients.com/category/mammal/lamb/’,1);
insert into bagcategory (bagid,bagcategoryname,categorypermalink,sortid) values
(1386,’Mammal’,’https://jerkyingredients.com/category/mammal/’,2);
insert into bagcategory (bagid,bagcategoryname,categorypermalink,sortid) values
(1386,’Very Good (9/10)’,’https://jerkyingredients.com/category/very-good-ingredient-ratings/’,3);
insert into bagcategory (bagid,bagcategoryname,categorypermalink,sortid) values
(1386,’Very Good (9/10)’,’https://jerkyingredients.com/category/very-good-taste-ratings/’,4);
insert into bagcategory (bagid,bagcategoryname,categorypermalink,sortid) values
(1386,’Excellent (10/10)’,’https://jerkyingredients.com/category/excellent-bag-ratings/’,5);
insert into bagcategory (bagid,bagcategoryname,categorypermalink,sortid) values
(1386,’Soy’,’https://jerkyingredients.com/category/allergies/soy/’,6);
insert into bagcategory (bagid,bagcategoryname,categorypermalink,sortid) values
(1386,’Wheat’,’https://jerkyingredients.com/category/allergies/wheat/’,6);

INSERT INTO ingredient (
ingredientid,
ingredientname,
description,
rating,
fresh,
preservative,
sodium,
sauce,
sweet,
hot,
pepper,
tenderizer,
emulsifier,
juice,
href)
values (
807,
‘Lamb’,
‘A young sheep, typically less than one year old, known for its tender and flavorful meat. Lamb is a rich source of high-quality protein, essential for muscle growth and repair. It is packed with important vitamins, minerals, B vitamins, and healthy fats.’,
10,
‘N’, — Fresh
‘N’, — Preservative
‘N’, — Sodium
‘N’, — Sauce
‘N’, — Sweet
‘N’, — Hot
‘N’, — Pepper
‘N’, — Tenderizer
‘N’, — Emulsifier
‘N’, — Juice
‘lamb’);

/* — Stopped doing this in 2019 — */
insert into bagingredient values (1386,807);
insert into bagingredient values (1386,60);
insert into bagingredient values (1386,105);
insert into bagingredient values (1386,20);
insert into bagingredient values (1386,28);
insert into bagingredient values (1386,48);
insert into bagingredient values (1386,719);
insert into bagingredient values (1386,502);
insert into bagingredient values (1386,159);
insert into bagingredient values (1386,61);
insert into bagingredient values (1386,14);

insert into jerkytag (tagid,tagname,tagdescription,category,tagurl,sortid,tagsortid)
values
(841,
‘Feed The Viking’,
‘Feed The Viking brand name’,
‘Brand Name’,
‘https://jerkyingredients.com/tag/feed-the-viking/’,
14,
70);

insert into jerkytag (tagid,tagname,tagdescription,category,tagurl,sortid,tagsortid)
values
(842,
‘Feed The Viking ehf.’,
‘Feed The Viking ehf. distributor name’,
‘Distributer Name’,
‘https://jerkyingredients.com/tag/feed-the-viking-ehf/’,
14,
100);

insert into jerkytag (tagid,tagname,tagdescription,category,tagurl,sortid,tagsortid)
values
(843,
‘Capital Area’,
‘Jerky brand from Capital Area, Iceland’,
‘Brand State/Province’,
‘https://jerkyingredients.com/tag/brand-state-capital-area/’,
14,
80);

insert into jerkytag (tagid,tagname,tagdescription,category,tagurl,sortid,tagsortid)
values
(844,
‘Capital Area’,
‘Jerky distributor in Capital Area, Iceland’,
‘Distributer State/Province’,
‘https://jerkyingredients.com/tag/distributer-state-capital-area/’,
14,
110);

insert into jerkytag (tagid,tagname,tagdescription,category,tagurl,sortid,tagsortid)
values
(845,
‘Iceland’,
‘Jerky brands in Iceland.’,
‘Brand Country’,
‘https://jerkyingredients.com/tag/brand-country-iceland/’,
14,
50);

insert into jerkytag (tagid,tagname,tagdescription,category,tagurl,sortid,tagsortid)
values
(846,
‘Iceland’,
‘Jerky distributed in Iceland.’,
‘Distributer Country’,
‘https://jerkyingredients.com/tag/distributer-country-iceland/’,
13,
120);

insert into jerkytag (tagid,tagname,tagdescription,category,tagurl,sortid,tagsortid)
values
(847,
‘Nordlenska ehf.’,
‘Nordlenska ehf. private labeler name’,
‘Private Labeler Name’,
‘https://jerkyingredients.com/tag/nordlenska-ehf/’,
2,
130);

insert into jerkytag (tagid,tagname,tagdescription,category,tagurl,sortid,tagsortid)
values
(848,
‘North Iceland’,
‘North Iceland private labelers’,
‘Private Labeler State/Province’,
‘https://jerkyingredients.com/tag/private-labeler-state-north-iceland/’,
14,
140);

insert into jerkytag (tagid,tagname,tagdescription,category,tagurl,sortid,tagsortid)
values
(849,
‘Iceland’,
‘Iceland private labelers’,
‘Private Labeler Country’,
‘https://jerkyingredients.com/tag/private-labeler-country-iceland/’,
14,
150);

/* — Populates tags under the jerky reviews — */
insert into bagtag (bagid,tagid) values (1386,2);
insert into bagtag (bagid,tagid) values (1386,30);
insert into bagtag (bagid,tagid) values (1386,758);
insert into bagtag (bagid,tagid) values (1386,7);
insert into bagtag (bagid,tagid) values (1386,69);
insert into bagtag (bagid,tagid) values (1386,70);
insert into bagtag (bagid,tagid) values (1386,797);
insert into bagtag (bagid,tagid) values (1386,16);
insert into bagtag (bagid,tagid) values (1386,303);
insert into bagtag (bagid,tagid) values (1386,841);
insert into bagtag (bagid,tagid) values (1386,842);
insert into bagtag (bagid,tagid) values (1386,843);
insert into bagtag (bagid,tagid) values (1386,844);
insert into bagtag (bagid,tagid) values (1386,845);
insert into bagtag (bagid,tagid) values (1386,846);
insert into bagtag (bagid,tagid) values (1386,847);
insert into bagtag (bagid,tagid) values (1386,848);
insert into bagtag (bagid,tagid) values (1386,849);
/* — Populates tags under the jerky reviews — */

Jerky Shrine Bags: 1880

Jerky Shrine Brands: 502

Jerky Shrine Brands On Display: 118

Jerky Brands reviewed: 404

Jerky Reviews Published: 1231

Creating a Jerky Review was last modified: February 26/2025 by Jerky Ingredients

Filed Under:  News

Leave a Comment Cancel reply

Your email address will not be published. Required fields are marked *

  • JERKY REVIEWS  1231
    Jerky Counters
    Jerky Brands  404
    Jerky Tags  1260
    Jerky Categories  76
    Jerky Types  32
    Jerky Flavors  76
    Jerky Flavor Names  742
    Jerky Ingredients  1000
    Jerky Cost  $9974.37
    Submitted Value  $6303.61
    Submitted Brands  169
    Submitted Bags  799
    Jerky Shrine Bags  1880
    Jerky Shrine Brands  502
    Jerky Shrine Displays  118
    Jerky News
    Jerky Prices
    Jerky Price Updates
    Jerky Criteria
    Jerky Glossary
    Jerky Videos
    Making Jerky
    Starting a Jerky Business
    Submit Jerky
    Contact Us
    About Us

    Comments

    • Jerky Ingredients on Wild Bill’s – Original Beef Jerky: “Hi Wendy, I suggest you try https://broncobillybeefjerkys.com, who does a great job of replicating Wild Bill’s Beef Jerky.” Oct 27, 19:32
    • FELIX MADRID on Barbacoa Jerky – Original Recipe Beef Jerky: “HELLO I’M A DISTRIBUTOR IN THE FRESNO /CA AREA SINCE 2004 SELLING MEXICAN FOOD PRODUCT. I HAVE SOME JERKY NOW…” Oct 27, 12:39
    • Wendy Evinger on Wild Bill’s – Original Beef Jerky: “Why did you change the recipe of wild bills beef jerky if was so great !!! Now it is awful…” Oct 26, 16:56
    • Ryan Rickey on Rickey’s Jerky – Antelope Jerky: “Thanks for the kind words and honest feedback — we really appreciate it. We’re always working to improve, and constructive…” Oct 25, 06:37
    • Ben on Werner – Teriyaki Meat Sticks: “Werner is a good quality product be aware beef products in this price range are made from imported beef. The…” Sep 25, 19:56

    Archives

  • 2025: J F M A M J J A S O N D
  • 2024: J F M A M J J A S O N D
  • 2023: J F M A M J J A S O N D
  • 2022: J F M A M J J A S O N D
  • 2021: J F M A M J J A S O N D
  • 2020: J F M A M J J A S O N D
  • 2019: J F M A M J J A S O N D
  • 2018: J F M A M J J A S O N D
  • 2017: J F M A M J J A S O N D
  • 2016: J F M A M J J A S O N D
  • 2015: J F M A M J J A S O N D
  • 2014: J F M A M J J A S O N D
  • 2013: J F M A M J J A S O N D
  • Jerky Sites

    Best Beef Jerky
    Jerky UP!

    Return to Top · Site Map · Powered by Jerky Ingredients  Jerky Ingredients Instagram FeedJerky Ingredients Twitter Feed Jerky Ingredients Facebook Feed