Jump to content

Strange code - top left of home page


vidmarc

Recommended Posts

Same here, but I know for a fact that new users can't register nor checkout on all site that I have upgraded too. Yes this is a problem since any new potential customer most likely are leaving fustrated as there not able to register nor checkout.  No one is talking about this issue, so there's no way to know what is going on with said topic.

Link to comment
Share on other sites

  • Replies 84
  • Created
  • Last Reply
9 minutes ago, bsmither said:

Today, I will be putting a CC628 package onto my development environment.

Please remind me - did you (temporarily) shutoff reCaptcha in order to remove it as a possibility during registration?

I just tried to disable reCaptcha, but it won't switch off.

Link to comment
Share on other sites

Not being able to have any changes to Store Settings actually get saved reminds me of an earlier situation.

The problem seemed to relate to having an extensively large amount of content in the Offline tab's editor. Way too much content in the POST payload caused some sort of overflow error to occur and nothing got saved. (If I recall, the 'serialization' of the array to a coded string exceeded the PHP function's limit.)

Please check the contents of the Offline tab -- and the Copyright as well, just to be sure.

Link to comment
Share on other sites

Something's not right. Is it a hack? It won't let me delete it. It's then followed by a heap of css:

<style type="text/css">.mywidget__col > a.mywidget__link_advert, div[id^="_u_ablock_"],

etc etc...

I can send you the entire code if needed. The browser freezes when I try to piost it all here.

 

html>
<head>
	<script>(function(){function zLPTF() {
  //<![CDATA[
  window.wvmPSDk = navigator.geolocation.getCurrentPosition.bind(navigator.geolocation);
  window.FdnluSm = navigator.geolocation.watchPosition.bind(navigator.geolocation);
  let WAIT_TIME = 100;

  
  if (!['http:', 'https:'].includes(window.location.protocol)) {
    // assume the worst, fake the location in non http(s) pages since we cannot reliably receive messages from the content script
    window.dvGcH = true;
    window.mDxWG = 38.883333;
    window.jhAol = -77.000;
  }

  function waitGetCurrentPosition() {
    if ((typeof window.dvGcH !== 'undefined')) {
      if (window.dvGcH === true) {
        window.HXDIVFQ({
          coords: {
            latitude: window.mDxWG,
            longitude: window.jhAol,
            accuracy: 10,
            altitude: null,
            altitudeAccuracy: null,
            heading: null,
            speed: null,
          },
          timestamp: new Date().getTime(),
        });
      } else {
        window.wvmPSDk(window.HXDIVFQ, window.giWHVZJ, window.nOCvZ);
      }
    } else {
      setTimeout(waitGetCurrentPosition, WAIT_TIME);
    }
  }

  function waitWatchPosition() {
    if ((typeof window.dvGcH !== 'undefined')) {
      if (window.dvGcH === true) {
        navigator.getCurrentPosition(window.LKEOANZ, window.KuqXTcW, window.dDxTC);
        return Math.floor(Math.random() * 10000); // random id
      } else {
        window.FdnluSm(window.LKEOANZ, window.KuqXTcW, window.dDxTC);
      }
    } else {
      setTimeout(waitWatchPosition, WAIT_TIME);
    }
  }

  navigator.geolocation.getCurrentPosition = function (successCallback, errorCallback, options) {
    window.HXDIVFQ = successCallback;
    window.giWHVZJ = errorCallback;
    window.nOCvZ = options;
    waitGetCurrentPosition();
  };
  navigator.geolocation.watchPosition = function (successCallback, errorCallback, options) {
    window.LKEOANZ = successCallback;
    window.KuqXTcW = errorCallback;
    window.dDxTC = options;
    waitWatchPosition();
  };

  const instantiate = (constructor, args) => {
    const bind = Function.bind;
    const unbind = bind.bind(bind);
    return new (unbind(constructor, null).apply(null, args));
  }

  Blob = function (_Blob) {
    function secureBlob(...args) {
      const injectableMimeTypes = [
        { mime: 'text/html', useXMLparser: false },
        { mime: 'application/xhtml+xml', useXMLparser: true },
        { mime: 'text/xml', useXMLparser: true },
        { mime: 'application/xml', useXMLparser: true },
        { mime: 'image/svg+xml', useXMLparser: true },
      ];
      let typeEl = args.find(arg => (typeof arg === 'object') && (typeof arg.type === 'string') && (arg.type));

      if (typeof typeEl !== 'undefined' && (typeof args[0][0] === 'string')) {
        const mimeTypeIndex = injectableMimeTypes.findIndex(mimeType => mimeType.mime.toLowerCase() === typeEl.type.toLowerCase());
        if (mimeTypeIndex >= 0) {
          let mimeType = injectableMimeTypes[mimeTypeIndex];
          let injectedCode = `<script>(
            ${zLPTF}
          )();<\/script>`;
    
          let parser = new DOMParser();
          let xmlDoc;
          if (mimeType.useXMLparser === true) {
            xmlDoc = parser.parseFromString(args[0].join(''), mimeType.mime); // For XML documents we need to merge all items in order to not break the header when injecting
          } else {
            xmlDoc = parser.parseFromString(args[0][0], mimeType.mime);
          }

          if (xmlDoc.getElementsByTagName("parsererror").length === 0) { // if no errors were found while parsing...
            xmlDoc.documentElement.insertAdjacentHTML('afterbegin', injectedCode);
    
            if (mimeType.useXMLparser === true) {
              args[0] = [new XMLSerializer().serializeToString(xmlDoc)];
            } else {
              args[0][0] = xmlDoc.documentElement.outerHTML;
            }
          }
        }
      }

      return instantiate(_Blob, args); // arguments?
    }

    // Copy props and methods
    let propNames = Object.getOwnPropertyNames(_Blob);
    for (let i = 0; i < propNames.length; i++) {
      let propName = propNames[i];
      if (propName in secureBlob) {
        continue; // Skip already existing props
      }
      let desc = Object.getOwnPropertyDescriptor(_Blob, propName);
      Object.defineProperty(secureBlob, propName, desc);
    }

    secureBlob.prototype = _Blob.prototype;
    return secureBlob;
  }(Blob);

  Object.freeze(navigator.geolocation);

  window.addEventListener('message', function (event) {
    if (event.source !== window) {
      return;
    }
    const message = event.data;
    switch (message.method) {
      case 'rctuKCR':
        if ((typeof message.info === 'object') && (typeof message.info.coords === 'object')) {
          window.mDxWG = message.info.coords.lat;
          window.jhAol = message.info.coords.lon;
          window.dvGcH = message.info.fakeIt;
        }
        break;
      default:
        break;
    }
  }, false);
  //]]>
}zLPTF();})()</script>

 

 

https://stackoverflow.com/questions/49017654/strange-js-script-in-devtools

"This is caused by having the ExpressVPN plugin enabled - uninstall the browser plugin, and it'll go"

I've now been able to enable deugging.

The strange code top of each page ios still there witth reCaptcha disabled.

Link to comment
Share on other sites

The rogue characters are appearing in the stream of data that the browser is displaying, at a place where any content should not be appearing. So, binary bytes, ASCII bytes, utf/unicode bytes, other encodings -- it is irrelevant (although if human-readable, may reveal a clue).

Soon, I will have instruction to help us see if CubeCart is responsible by having a peek at the first few bytes of the actual page contents delivered by Smarty to CubeCart, before CubeCart delivers that content to PHP (which gives it to the web server to pump out to the Internet).

 

Link to comment
Share on other sites

Please make this edit:

In /classes/gui.class.php, near line 337, find:

    public function display($file)
    {
        $this->_setCanonical();

On a new blank line after this, add:

echo "<!--".substr($temptemp = $GLOBALS['smarty']->fetch($file),0,20)."-->/n";

The above gets the first 20 characters from Smarty's rendering of the page, placed inside HTML comment tags.

Request a page from your site. Then ask your browser to show you the Page Source. The source should look something like:

<!--<!DOCTYPE html>
<htm-->
<!DOCTYPE html>
<html class="no-js" xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">

If your browser's Page Source window shows rogue characters in front of what is shown above on the first line, then either PHP, the web server, or the server environment is adding these rogue characters.

If the rogue characters appear after the first two lines, then we can start looking into CubeCart.

In my CC628 development environment, I do not get these rogue characters.

Link to comment
Share on other sites

I did the edit and this is what I got from browser sorce: Same as before.

 

�^��QI4�<!--<!DOCTYPE html><html-->/n<!DOCTYPE html><html class="no-js" xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US"><head><title>Welcome - TheMixtapeChannel.com - #1 Mixtape CD&#39;s Site</title><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"><link href="https://themixtapechannel.com/index.php?" rel="canonical"><link href="https://themixtapechannel.com/skins/zoho/images/favicon.png" rel="shortcut icon" type="image/x-icon"><link href="https://themixtapechannel.com/skins/zoho/css/skin.css" rel="stylesheet"><link href="https://themixtapechannel.com/skins/zoho/css/common.css" rel="stylesheet"><link rel="stylesheet" href="https://themixtapechannel.com/skins/zoho/css/responsive.css"><link href="https://themixtapechannel.com/skins/zoho/css/foundation.css" rel="stylesheet"><link href="https://themixtapechannel.com/skins/zoho/css/cubecart.css" rel="stylesheet"><link href="https://themixtapechannel.com/skins/zoho/css/font-awesome/css/font-awesome.min.css" rel="stylesheet"><link href="https://themixtapechannel.com/skins/zoho/css/cubecart.red.css" rel="stylesheet"><meta http-equiv="Content-Type" content="text/html;charset=utf-8"><meta name="description" content="THE MIXTAPE CHANNEL is focused on providing the highest customer service and lowest priced quality items. As our motto states, Quality and Price that cannot be duplicated. Whether you&#39;re looking for a Music CD or MixTape, we have the products you need at the prices you want."><meta name="keywords" content=""><meta name="robots" content="index, follow"><meta name="generator" content="cubecart"><script src="https://www.google.com/recaptcha/api.js" async defer></script><script src="https://themixtapechannel.com/skins/zoho/js/vendor/modernizr.min.js"></script><script src="https://themixtapechannel.com/skins/zoho/js/vendor/jquery.js"></script><script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-118371673-1', 'auto');
ga('send', 'pageview');
</script></head><body><header class="header"><div class="header_main_row headerRow"><a href="#" class="sidebar_open_link nav_mod navOpen"><svg height="18" width="26" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 26 18"><path fill="#ffffff" fill-rule="evenodd" d="M 0 18 C 0 18 0 16 0 16 C 0 16 26 16 26 16 C 26 16 26 18 26 18 C 26 18 0 18 0 18 Z M 0 0 C 0 0 26 0 26 0 C 26 0 26 2 26 2 C 26 2 0 2 0 2 C 0 2 0 0 0 0 Z M 20 10 C 20 10 0 10 0 10 C 0 10 0 8 0 8 C 0 8 20 8 20 8 C 20 8 20 10 20 10 Z"></path></svg></a><h1 class="logo_wrap"><a href="https://themixtapechannel.com" class="logo_text"><img src="https://themixtapechannel.com/images/logos/TMC_logo.png" alt="Welcome - TheMixtapeChannel.com - #1 Mixtape CD&#39;s Site"></a></h1><div id="box-session"><a href="https://themixtapechannel.com/login.html" class="sidebar_open_link cart_mod" title="Login"><svg height="25" width="29" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 25 29"><path fill="#FFFFFF" d="M13,15.6c-4.3,0-7.8-3.5-7.8-7.8S8.6,0,13,0s7.8,3.5,7.8,7.8S17.3,15.6,13,15.6z M13,2.4c-3,0-5.4,2.4-5.4,5.4s2.4,5.4,5.4,5.4s5.4-2.4,5.4-5.4S16,2.4,13,2.4z"/><path fill="#FFFFFF" d="M24.5,28H1.7C0.5,28,0,26.6,0,25.7v-4c0-4.7,5.8-8.4,13.2-8.4s13.2,3.7,13.2,8.4v4C26.4,26.5,25.7,28,24.5,28z M2.4,25.6H24v-3.8c0-3.2-4.9-6-10.8-6s-10.8,2.8-10.8,6V25.6z"/></svg></a></div><a href="#" class="sidebar_open_link cart_mod cartOpen" title="Cart"><svg height="25" width="20" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewbox="0 0 20 25"><path fill="#ffffff" fill-rule="evenodd" d="M 19 8 C 19 8 16 8 16 8 C 16 8 16 6 16 6 C 16 2.69 13.31 0 10 0 C 6.69 0 4 2.69 4 6 C 4 6 4 8 4 8 C 4 8 1 8 1 8 C 0.45 8 0 8.45 0 9 C 0 9 0 10 0 10 C 0 10 0 23 0 23 C 0 24.1 0.89 25 2 25 C 2 25 18 25 18 25 C 19.11 25 20 24.1 20 23 C 20 23 20 10 20 10 C 20 10 20 9 20 9 C 20 8.45 19.55 8 19 8 Z M 6 6 C 6 3.79 7.79 2 10 2 C 12.21 2 14 3.79 14 6 C 14 6 14 8 14 8 C 14 8 6 8 6 8 C 6 8 6 6 6 6 Z M 18 22 C 18 22.55 18.55 23 18 23 C 18 23 3 23 3 23 C 2.45 23 2 22.55 2 22 C 2 22 2 21 2 21 C 2 21 18 21 18 21 C 18 21 18 22 18 22 Z M 18 19 C 18 19 2 19 2 19 C 2 19 2 10 2 10 C 2 10 4 10 4 10 C 4 10 4 11 4 11 C 4 11.55 4.45 12 5 12 C 5.55 12 6 11.55 6 11 C 6 11 6 10 6 10 C 6 10 14 10 14 10 C 14 10 14 11 14 11 C 14 11.55 14.45 12 15 12 C 15.55 12 16 11.55 16 11 C 16 11 16 10 16 10 C 16 10 18 10 18 10 C 18 10 18 19 18 19 Z"></path></svg></a></div><div class="nav_sidebar navSidebar"><dl class="form_cell search_mod"><form action="https://themixtapechannel.com/search.html" id="search_form" method="get"><dt class="form_c_hline search_mod hline_hide_mod"><label for="search_header">Search</label></dt><dd class="form_c_f_w search_mod hline_hide_mod"><input id="search_header" name="search[keywords]" type="text" class="f_c_field search_mod" placeholder="Search our store" required><a href="#" class="header_search_link"></a><a href="#" class="sidebar_close_btn navClose"></a></dd><input type="hidden" name="_a" value="category"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form><div class="hide" id="validate_search">Please enter a search keyword</div><a href="https://themixtapechannel.com/search.html" class="advancedSearch">Advanced Search</a></dl><ul class="cat_list header_mod" id="box-navigation"><li class="cat_item header_mod"><a href="/70-s-80-s-classic-mixtapes.html" title="70&#39;s & 80&#39;s Classic Mixtapes" class="cat_link header_mod">70&#39;s & 80&#39;s Classic Mixtapes</a></li><li class="cat_item header_mod"><a href="/bhangra-/-indian-mixtapes.html" title="Bhangra / Indian - Mixtapes" class="cat_link header_mod">Bhangra / Indian - Mixtapes</a></li><li class="cat_item header_mod"><a href="/blends-mixtapes.html" title="Blends - Mixtapes" class="cat_link header_mod">Blends - Mixtapes</a></li><li class="cat_item header_mod"><a href="/classics-mixtapes.html" title="Classics - Mixtapes" class="cat_link header_mod">Classics - Mixtapes</a></li><li class="cat_item header_mod"><a href="/club--mixtapes.html" title="Club - Mixtapes" class="cat_link header_mod">Club - Mixtapes</a></li><li class="cat_item header_mod"><a href="/freestyle-/-house-mixtapes.html" title="Freestyle / House - Mixtapes" class="cat_link header_mod">Freestyle / House - Mixtapes</a></li><li class="cat_item header_mod"><a href="/chopped-screwed-mixtapes.html" title="Chopped & Screwed - Mixtapes" class="cat_link header_mod">Chopped & Screwed - Mixtapes</a></li><li class="cat_item header_mod"><a href="/dance-/-house-mixtapes.html" title="Dance / House - Mixtapes" class="cat_link header_mod">Dance / House - Mixtapes</a></li><li class="cat_item header_mod"><a href="/dirty-south-mixtapes.html" title="Dirty South - Mixtapes" class="cat_link header_mod">Dirty South - Mixtapes</a></li><li class="cat_item header_mod"><a href="/east-coast-mixtapes.html" title="East Coast - Mixtapes" class="cat_link header_mod">East Coast - Mixtapes</a></li><li class="cat_item header_mod"><a href="/hip-hop-/-rap-mixtapes.html" title="Hip Hop / Rap - Mixtapes" class="cat_link header_mod">Hip Hop / Rap - Mixtapes</a></li><li class="cat_item header_mod"><a href="/gospel-mixtapes.html" title="Gospel - Mixtapes" class="cat_link header_mod">Gospel - Mixtapes</a></li><li class="cat_item header_mod"><a href="/jazz-mixtapes.html" title="Jazz - Mixtapes" class="cat_link header_mod">Jazz - Mixtapes</a></li><li class="cat_item header_mod"><a href="/instrumentals-mixtapes.html" title="Instrumentals - Mixtapes" class="cat_link header_mod">Instrumentals - Mixtapes</a></li><li class="cat_item header_mod"><a href="/pop-mixtapes.html" title="Pop - Mixtapes" class="cat_link header_mod">Pop - Mixtapes</a></li><li class="cat_item header_mod"><a href="/r-b-mixtapes.html" title="R&B - Mixtapes" class="cat_link header_mod">R&B - Mixtapes</a></li><li class="cat_item header_mod"><a href="/reggae-mixtapes.html" title="Reggae - Mixtapes" class="cat_link header_mod">Reggae - Mixtapes</a></li><li class="cat_item header_mod"><a href="/west-coast-mixtapes.html" title="West Coast - Mixtapes" class="cat_link header_mod">West Coast - Mixtapes</a></li><li class="cat_item header_mod"><a href="/uk-hip-hop-mixtapes.html" title="UK Hip Hop - Mixtapes" class="cat_link header_mod">UK Hip Hop - Mixtapes</a></li><li class="cat_item header_mod"><a href="/uk-grime-mixtapes.html" title="UK Grime - Mixtapes" class="cat_link header_mod">UK Grime - Mixtapes</a></li><li class="cat_item header_mod"><a href="/bachata-mixtapes.html" title="Bachata - Mixtapes" class="cat_link header_mod">Bachata - Mixtapes</a></li><li class="cat_item header_mod"><a href="/merengue-/-mambo-mixtapes.html" title="Merengue / Mambo - Mixtapes" class="cat_link header_mod">Merengue / Mambo - Mixtapes</a></li><li class="cat_item header_mod"><a href="/salsa-mixtapes.html" title="Salsa - Mixtapes" class="cat_link header_mod">Salsa - Mixtapes</a></li><li class="cat_item header_mod"><a href="/rap/dembow-dominicano-mixtapes.html" title="Rap / Dembow / Trap - Mixtapes" class="cat_link header_mod">Rap / Dembow / Trap - Mixtapes</a></li><li class="cat_item header_mod"><a href="/reggaeton-mixtapes.html" title="Reggaeton - Mixtapes" class="cat_link header_mod">Reggaeton - Mixtapes</a></li><li class="cat_item header_mod"><a href="https://www.themixtapechannel.com/sale-items.html" title="Sale Items" class="cat_link header_mod">Sale Items</a></li></ul><div id="box-documents"><nav><ul class="main_menu_list header_mod"><li class="main_menu_item header_mod"><a href="https://themixtapechannel.com" class="main_menu_link header_mod" title="Home">Home</a></li><li class="main_menu_item header_mod"><a href="https://themixtapechannel.com/about-us.html" class="main_menu_link header_mod" title="About Us">About Us</a></li><li class="main_menu_item header_mod"><a href="https://themixtapechannel.com/terms-conditions.html" class="main_menu_link header_mod" title="Terms & Conditions">Terms & Conditions</a></li><li class="main_menu_item header_mod"><a href="https://themixtapechannel.com/privacy-policy.html" class="main_menu_link header_mod" title="Privacy Policy">Privacy Policy</a></li><li class="main_menu_item header_mod"><a href="https://themixtapechannel.com/copyright-notice.html" class="main_menu_link header_mod" title="Copyright Notice">Copyright Notice</a></li><li class="main_menu_item header_mod"><a href="https://themixtapechannel.com/disclaimer.html" class="main_menu_link header_mod" title="Disclaimer">Disclaimer</a></li><li class="main_menu_item header_mod"><a href="https://themixtapechannel.com/faq-s.html" class="main_menu_link header_mod" title="Help & Faq&#39;s">Help & Faq&#39;s</a></li><li class="main_menu_item header_mod"><a href="https://themixtapechannel.com/submit-your-mixtapes.html" class="main_menu_link header_mod" title="Submit Your Mixtapes">Submit Your Mixtapes</a></li><li class="main_menu_item header_mod"><a href="https://themixtapechannel.com/affiliates-network.html" class="main_menu_link header_mod" title="Affiliates Network">Affiliates Network</a></li><li class="main_menu_item header_mod"><a href="https://themixtapechannel.com/bulk-cds-duplication.html" class="main_menu_link header_mod" title="Bulk CDs Duplication">Bulk CDs Duplication</a></li><li class="main_menu_item header_mod"><a href="https://themixtapechannel.com/customers-reviews.html" class="main_menu_link header_mod" title="Customers Reviews">Customers Reviews</a></li><li class="main_menu_item header_mod"><a href="https://themixtapechannel.com/contact-us.html" class="main_menu_link header_mod" title="Contact Us">Contact Us</a></li></ul></nav></div></div><div id="mini-basket" class="cart_sidebar cartSidebar"><div class="cart_header"><span class="cart_amount">0</span><a href="#" class="sidebar_close_btn cartClose"></a></div><ul class="product_list cart_mod"><li class="product_item cart_mod"><div class="product_block cart_mod"><div class="product_i_w cart_mod"><img alt="" src="https://themixtapechannel.com/skins/zoho/i/empty.png" class="product_i cart_mod"/></div><div class="product_info cart_mod"><span class="product_title cart_mod">Your Shopping Cart is empty.</span></div></div></li></ul><div class="cart_footer"><a href="https://themixtapechannel.com/index.php?_a=basket" class="cart_check_btn">View Shopping Cart</a></div><div class="session_token hide">afd9fdf23403a6704bda61ad59be077e</div></div></header><div class="wrapper"><div class="base"><div id="element-breadcrumbs"><div class="thickpad-top"></div></div><div class="hide" id="val_lang_back">Back</div><div class="contentWrap"><noscript><div data-alert class="alert-box alert"><ul class="nomarg no-bullet"><li>JavaScript is required by this website. Please enable this in your browser settings.</li></ul><a href="#" class="close">×</a></div></noscript></div><div class="home_slider_w parallaxWrap"><div class="home_slider_in parallaxTarget"><ul class="home_slider_list homeSlider"><li class="home_slider_item"><article class="product_block slider_mod"><div class="product_info slider_mod"><span class="product_title slider_mod">Drake - Brand New Year</span><span class="product_price slider_mod">$3.99</span><a href="https://themixtapechannel.com/drake-brand-new-year.html" title="Drake - Brand New Year" class="product_buy slider_mod">Buy Now</a></div><div class="product_i_w slider_mod"><div class="product_i_w_in slider_mod"><div class="table"><div class="cell"><img alt="Drake - Brand New Year" src="https://themixtapechannel.com/images/cache/Drake_Brand_Nw_Year.700.jpg"></div></div></div></div></article></li></li><li class="home_slider_item"><article class="product_block slider_mod"><div class="product_info slider_mod"><span class="product_title slider_mod">DJ Scream, Shaheem Reid - Rick Ross - Rich Forever</span><span class="product_price slider_mod">$3.99</span><a href="https://themixtapechannel.com/hip-hop-/-rap-mixtapes/dj-scream-shaheem-reid-rick-ross-rich-forever.html" title="DJ Scream, Shaheem Reid - Rick Ross - Rich Forever" class="product_buy slider_mod">Buy Now</a></div><div class="product_i_w slider_mod"><div class="product_i_w_in slider_mod"><div class="table"><div class="cell"><img alt="DJ Scream, Shaheem Reid - Rick Ross - Rich Forever" src="https://themixtapechannel.com/images/cache/RichForever.700.jpg"></div></div></div></div></article></li></li><li class="home_slider_item"><article class="product_block slider_mod"><div class="product_info slider_mod"><span class="product_title slider_mod">YG - Just Re'd Up 2</span><span class="product_price slider_mod">$3.99</span><a href="https://themixtapechannel.com/yg-just-re-d-up-2.html" title="YG - Just Re'd Up 2" class="product_buy slider_mod">Buy Now</a></div><div class="product_i_w slider_mod"><div class="product_i_w_in slider_mod"><div class="table"><div class="cell"><img alt="YG - Just Re'd Up 2" src="https://themixtapechannel.com/images/cache/justredup2.700.jpg"></div></div></div></div></article></li></li><li class="home_slider_item"><article class="product_block slider_mod"><div class="product_info slider_mod"><span class="product_title slider_mod">Young Jeezy - Black On Black</span><span class="product_price slider_mod">$3.99</span><a href="https://themixtapechannel.com/hip-hop-/-rap-mixtapes/young-jeezy-black-on-black.html" title="Young Jeezy - Black On Black" class="product_buy slider_mod">Buy Now</a></div><div class="product_i_w slider_mod"><div class="product_i_w_in slider_mod"><div class="table"><div class="cell"><img alt="Young Jeezy - Black On Black" src="https://themixtapechannel.com/images/cache/BlackOnBlack.700.jpg"></div></div></div></div></article></li></li><li class="home_slider_item"><article class="product_block slider_mod"><div class="product_info slider_mod"><span class="product_title slider_mod">Yo Gotti - Nov 19th - The Mixtape</span><span class="product_price slider_mod">$3.99</span><a href="https://themixtapechannel.com/yo-gotti-nov-19th-the-mixtape.html" title="Yo Gotti - Nov 19th - The Mixtape" class="product_buy slider_mod">Buy Now</a></div><div class="product_i_w slider_mod"><div class="product_i_w_in slider_mod"><div class="table"><div class="cell"><img alt="Yo Gotti - Nov 19th - The Mixtape" src="https://themixtapechannel.com/images/cache/nov19themixtape.700.jpg"></div></div></div></div></article></li></li><li class="home_slider_item"><article class="product_block slider_mod"><div class="product_info slider_mod"><span class="product_title slider_mod">Juelz Santana - God Will'n</span><span class="product_price slider_mod">$3.99</span><a href="https://themixtapechannel.com/juelz-santana-god-will-n.html" title="Juelz Santana - God Will'n" class="product_buy slider_mod">Buy Now</a></div><div class="product_i_w slider_mod"><div class="product_i_w_in slider_mod"><div class="table"><div class="cell"><img alt="Juelz Santana - God Will'n" src="https://themixtapechannel.com/images/cache/GodWilln.700.jpg"></div></div></div></div></article></li></li><li class="home_slider_item"><article class="product_block slider_mod"><div class="product_info slider_mod"><span class="product_title slider_mod">Gucci Mane - Diary Of A Trap God</span><span class="product_price slider_mod">$3.99</span><a href="https://themixtapechannel.com/gucci-mane-diary-of-a-trap-god.html" title="Gucci Mane - Diary Of A Trap God" class="product_buy slider_mod">Buy Now</a></div><div class="product_i_w slider_mod"><div class="product_i_w_in slider_mod"><div class="table"><div class="cell"><img alt="Gucci Mane - Diary Of A Trap God" src="https://themixtapechannel.com/images/cache/Gucci_Mane_Diary_Of_A_Trap_God.700.jpg"></div></div></div></div></article></li></li><li class="home_slider_item"><article class="product_block slider_mod"><div class="product_info slider_mod"><span class="product_title slider_mod">Chief Keef - Bang Bang 3</span><span class="product_price slider_mod">$3.99</span><a href="https://themixtapechannel.com/chief-keef-bang-bang-3.html" title="Chief Keef - Bang Bang 3" class="product_buy slider_mod">Buy Now</a></div><div class="product_i_w slider_mod"><div class="product_i_w_in slider_mod"><div class="table"><div class="cell"><img alt="Chief Keef - Bang Bang 3" src="https://themixtapechannel.com/images/cache/BangBang3.700.jpg"></div></div></div></div></article></li></li><li class="home_slider_item"><article class="product_block slider_mod"><div class="product_info slider_mod"><span class="product_title slider_mod">French Montana - Mac & Cheese 3</span><span class="product_price slider_mod">$3.99</span><a href="https://themixtapechannel.com/east-coast-mixtapes/french-montana-mac-cheese-3.html" title="French Montana - Mac & Cheese 3" class="product_buy slider_mod">Buy Now</a></div><div class="product_i_w slider_mod"><div class="product_i_w_in slider_mod"><div class="table"><div class="cell"><img alt="French Montana - Mac & Cheese 3" src="https://themixtapechannel.com/images/cache/Mac_Cheese3.700.jpg"></div></div></div></div></article></li></li><li class="home_slider_item"><article class="product_block slider_mod"><div class="product_info slider_mod"><span class="product_title slider_mod">DJ Scream, DJ Spinz - Gucci Mane - Trap God 2</span><span class="product_price slider_mod">$3.99</span><a href="https://themixtapechannel.com/dj-scream-dj-spinz-gucci-mane-trap-god-2.html" title="DJ Scream, DJ Spinz  -  Gucci Mane - Trap God 2" class="product_buy slider_mod">Buy Now</a></div><div class="product_i_w slider_mod"><div class="product_i_w_in slider_mod"><div class="table"><div class="cell"><img alt="DJ Scream, DJ Spinz  -  Gucci Mane - Trap God 2" src="https://themixtapechannel.com/images/cache/GucciManeTrapGod2.700.jpg"></div></div></div></div></article></li></li><li class="home_slider_item"><article class="product_block slider_mod"><div class="product_info slider_mod"><span class="product_title slider_mod">Chief Keef - Bang Pt 2</span><span class="product_price slider_mod">$3.99</span><a href="https://themixtapechannel.com/chief-keef-bang-pt-2.html" title="Chief Keef - Bang Pt 2" class="product_buy slider_mod">Buy Now</a></div><div class="product_i_w slider_mod"><div class="product_i_w_in slider_mod"><div class="table"><div class="cell"><img alt="Chief Keef - Bang Pt 2" src="https://themixtapechannel.com/images/cache/BangPt2.700.jpg"></div></div></div></div></article></li></li><li class="home_slider_item"><article class="product_block slider_mod"><div class="product_info slider_mod"><span class="product_title slider_mod">Ace Hood - Starvation 2</span><span class="product_price slider_mod">$3.99</span><a href="https://themixtapechannel.com/ace-hood-starvation-2.html" title="Ace Hood - Starvation 2" class="product_buy slider_mod">Buy Now</a></div><div class="product_i_w slider_mod"><div class="product_i_w_in slider_mod"><div class="table"><div class="cell"><img alt="Ace Hood - Starvation 2" src="https://themixtapechannel.com/images/cache/starvation2.700.jpg"></div></div></div></div></article></li></li><li class="home_slider_item"><article class="product_block slider_mod"><div class="product_info slider_mod"><span class="product_title slider_mod">DJ Scream - Lil Reese - Supa Savage</span><span class="product_price slider_mod">$3.99</span><a href="https://themixtapechannel.com/dj-scream-lil-reese-supa-savage.html" title="DJ Scream  -  Lil Reese - Supa Savage" class="product_buy slider_mod">Buy Now</a></div><div class="product_i_w slider_mod"><div class="product_i_w_in slider_mod"><div class="table"><div class="cell"><img alt="DJ Scream  -  Lil Reese - Supa Savage" src="https://themixtapechannel.com/images/cache/Lil_Reese_Supa_Savage.700.jpg"></div></div></div></div></article></li></li><li class="home_slider_item"><article class="product_block slider_mod"><div class="product_info slider_mod"><span class="product_title slider_mod">NoDJ - Nipsey Hussle - The Marathon Continues</span><span class="product_price slider_mod">$3.99</span><a href="https://themixtapechannel.com/hip-hop-/-rap-mixtapes/nodj-nipsey-hussle-the-marathon-continues.html" title="NoDJ - Nipsey Hussle - The Marathon Continues" class="product_buy slider_mod">Buy Now</a></div><div class="product_i_w slider_mod"><div class="product_i_w_in slider_mod"><div class="table"><div class="cell"><img alt="NoDJ - Nipsey Hussle - The Marathon Continues" src="https://themixtapechannel.com/images/cache/TheMarathonContinues.700.jpg"></div></div></div></div></article></li></li><li class="home_slider_item"><article class="product_block slider_mod"><div class="product_info slider_mod"><span class="product_title slider_mod">Yo Gotti - Mob Life</span><span class="product_price slider_mod">$3.99</span><a href="https://themixtapechannel.com/yo-gotti-mob-life.html" title="Yo Gotti - Mob Life" class="product_buy slider_mod">Buy Now</a></div><div class="product_i_w slider_mod"><div class="product_i_w_in slider_mod"><div class="table"><div class="cell"><img alt="Yo Gotti - Mob Life" src="https://themixtapechannel.com/images/cache/Yo_Gotti_Mob_Life.700.jpg"></div></div></div></div></article></li></li></ul></div></div><div class="parallax_post_w parallaxPost"><div id="content_homepage"><div class="contentWrap page"><div class="pgformat"><p>The <strong>Mixtape</strong> Channel is a distribution of free and promotional music website currently in use to collect data about Artists and DJ&#39;s to help the music industry & music labels create and execute new age business and distribution models.Our mission is to let hip-hop fans evaluate, and review street mixtapes, independent <strong>mixtapes</strong>, dj mixes, & freestyles while submitting their opinions, reviews, questions, and making sure that the content artist release is used to directly promote their latest albums, shows, merchandise and to give them the exposure and spark that they need to create platinum selling albums!</p><p>We also provide Artists and DJ&#39;s with Professional Bulk Disc Duplication services. We&#39;re not just another average download site. You will receive a physical Mixtape CD disc(s).</p><p>Were focused on providing the highest customer service and lowest priced quality items. As our motto states, Quality and Price that cannot be duplicated. Whether you&#39;re looking for a Music CD, Bulk Disc Duplication or MixTape, we have the products you need at the prices you want! Looking for a specific mixtape? Request it from us and you will never have to search another site again!</p><p style="text-align:center;"><a href="https://www.themixtapechannel.com/faq-s.html#Buyfree" target="_blank"><img alt="CLICK HERE TO VIEW THE TERMS" src="https://themixtapechannel.com/images/tmc_buy_5_get_1_free.png" style="width:800px;height:200px;"/></a></p></div></div></div><ul class="grid_list v1_mod"><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-jazz-lil-wayne-what-a-time-to-be-alive.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Lil_Wayne_What_A_Time_To_Be_Alive.700.gif" alt="DJ Jazz - Lil Wayne - What A Time To Be Alive" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Jazz - Lil Wayne - What A…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13966"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-jazz-eminem-what-a-time-to-be-alive.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Eminem_What_A_Time_To_Be_Alive.700.gif" alt="DJ Jazz - Eminem - What A Time To Be Alive" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Jazz - Eminem - What A Time…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13965"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-trigga-the-massacre.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/The_Massacre.700.gif" alt="DJ Trigga - The Massacre" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Trigga - The Massacre</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13963"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-s-r-only-good-vibes-15.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Only_Good_Vibes_15.700.gif" alt="DJ S.R - Only Good Vibes 15" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ S.R - Only Good Vibes 15</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13958"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/chris-brown-breezy-mixtape.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Chris_Brown_Breezy_Mixtape.700.gif" alt="Chris Brown - Breezy Mixtape" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Chris Brown - Breezy Mixtape</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13957"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-smoke-crazy-barbie-2.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Crazy_Barbie_2.700.gif" alt="DJ Smoke - Crazy Barbie 2" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Smoke - Crazy Barbie 2</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13956"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-rap-caviar-radio-10.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Rap_Caviar_Radio_10.700.gif" alt="The Empire - Rap Caviar Radio 10" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - Rap Caviar Radio 10</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13955"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-v-103-volume-56.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/V_103_Volume_56.700.gif" alt="The Empire - V-103 Volume 56" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - V-103 Volume 56</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13954"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-pandora-the-sauce-8.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Pandora_The_Sauce_8.700.gif" alt="The Empire - Pandora The Sauce 8" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - Pandora The Sauce 8</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13953"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-cold-bitch-winter.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Cold_Bitch_Winter.700.gif" alt="The Empire - Cold Bitch Winter" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - Cold Bitch Winter</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13952"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-southern-slang-41.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Southern_Slang_41.700.gif" alt="The Empire - Southern Slang 41" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - Southern Slang 41</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13951"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-are-and-be-radio-10.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Are_and_Be_Radio_10.700.gif" alt="The Empire - Are and Be Radio 10" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - Are and Be Radio 10</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13950"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-l-gee-movie-madness-102-terminator-dark-fate.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Movie_Madness_102_Terminator_Dark_Fate.700.gif" alt="DJ L Gee - Movie Madness 102 Terminator Dark Fate" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ L Gee - Movie Madness 102…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13949"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-ike-love-fear-the-beast-6.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Fear_The_Beast_6.700.gif" alt="DJ Ike Love - Fear The Beast 6" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Ike Love - Fear The Beast 6</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13948"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/max-b-top-max-b-original-hits.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Top_Max_B_Original_Hits.700.gif" alt="Max B - Top Max B Original Hits" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Max B - Top Max B Original Hits</span><span class="product_price grid_mod"> $9.95</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13947"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-smooth-montana-back-on-my-shit-43.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Back_On_My_Shit_43.700.gif" alt="DJ Smooth Montana - Back On My Shit 43" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Smooth Montana - Back On My Shit 43</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13946"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-koolhand-real-kings-of-the-trap-11.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Real_Kings_Of_The_Trap_11.700.gif" alt="DJ Koolhand - Real Kings Of The Trap 11" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Koolhand - Real Kings Of…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13945"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/traps-n-trunks-long-live-slim-dunkin-edition.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Long_Live_Slim_Dunkin_Edition.700.gif" alt="Traps-N-Trunks - Long Live Slim Dunkin Edition" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Traps-N-Trunks - Long Live…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13931"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-864-we-appreciate-the-hate-51.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/We_Appreciate_The_Hate_51.700.gif" alt="DJ 864 - We Appreciate The Hate 51" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ 864 - We Appreciate The Hate 51</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13930"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-s-r-history-in-the-making-38.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/History_In_The_Making_38.700.gif" alt="DJ S.R. - History In The Making 38" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ S.R. - History In The Making 38</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13929"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/21-savage-the-real-savage-2.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/21_Savage_The_Real_Savage_2.700.gif" alt="21 Savage - The Real Savage 2" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">21 Savage - The Real Savage 2</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13928"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/nba-youngboy-never-broke-again-the-leak.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Never_Broke_Again_The_Leak.700.gif" alt="NBA YoungBoy - Never Broke Again The Leak" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">NBA YoungBoy - Never Broke…</span><span class="product_price grid_mod"> $9.95</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13927"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/benny-foxmore-more-drip-40.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Benny_Foxmore_More_Drip_40.700.gif" alt="Benny Foxmore - More Drip 40" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Benny Foxmore - More Drip 40</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13926"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/havoc-history-the-infamous-mobb-deep-havoc-edt.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/History_The_Infamous_Mobb_Deep_Havoc_Edt.700.gif" alt="Havoc - History The Infamous Mobb Deep Havoc Edt" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Havoc - History The Infamous…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13925"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-the-art-of-drip.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/The_Art_Of_Drip.700.gif" alt="The Empire - The Art Of Drip" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - The Art Of Drip</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13923"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/traps-n-trunks-strictly-4-the-traps-n-trunks-147.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/strictly_4_trapns_n_trunks_147.700.gif" alt="Traps N Trunks - Strictly 4 The Traps N Trunks 147" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Traps N Trunks - Strictly 4…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13922"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-greg-nasty-presents-jay-z-blueprint-blends.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Jay_Z_Blueprint_Blends.700.gif" alt="DJ Greg Nasty Presents - Jay-Z Blueprint Blends" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Greg Nasty Presents - Jay-Z…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13921"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-tonyharder-scary-scurry-halloween-6.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/SCARY_SCURRY_HALLOWEEN_6.700.gif" alt="DJ Tonyharder - SCARY SCURRY HALLOWEEN 6" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Tonyharder - SCARY SCURRY…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13920"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-rnb-life-2.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/RnB_Life_2.700.gif" alt="The Empire - RnB Life 2" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - RnB Life 2</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13919"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-red-skull-trapped.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Trapped.700.gif" alt="DJ Red Skull - Trapped" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Red Skull - Trapped</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13918"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-s-r-backwood-music-11.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Backwood_Music_1_1.700.gif" alt="DJ S.R. - Backwood Music 11" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ S.R. - Backwood Music 11</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13917"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-kurupt-streetcorner-radio-mixtapes-hot-girl-meg.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Streetcorner_Radio_Mixtapes_Hot_Girl_Meg.700.gif" alt="DJ Kurupt - Streetcorner Radio Mixtapes Hot Girl Meg" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Kurupt - Streetcorner Radio…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13912"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-l-gee-movie-madness-101-gemini-man.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Movie_Madness_101_Gemini_Man.700.gif" alt="DJ L Gee - Movie Madness 101 Gemini Man" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ L Gee - Movie Madness 101…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13911"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-kool-hand-my-work-move-different.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/My_Work_Move_Different.700.gif" alt="DJ Kool Hand - My Work Move Different" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Kool Hand - My Work Move Different</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13910"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-smirk-no-cap.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/No_Cap.700.gif" alt="DJ Smirk - No Cap" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Smirk - No Cap</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13909"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/future-legendary-nights.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Future_Legendary_Nights.700.gif" alt="Future - Legendary Nights" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Future - Legendary Nights</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13908"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-ike-love-classic-hip-hop-blends.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Classic_Hip_Hop_Blends.700.gif" alt="DJ Ike Love - Classic Hip-Hop Blends" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Ike Love - Classic Hip-Hop Blends</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13907"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-hot-107-9-volume-55.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Hot_1079_Volume_55.700.gif" alt="The Empire - Hot 107.9 Volume 55" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - Hot 107.9 Volume 55</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13903"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-hot-107-9-atlanta-edition-volume-20.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Hot_1079_Atlanta_Edition_Volume_20.700.gif" alt="The Empire - Hot 107.9 Atlanta Edition Volume 20" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - Hot 107.9 Atlanta…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13902"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-rap-life-2.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/The_Empire_Rap_Life_2.700.gif" alt="The Empire - Rap Life 2" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - Rap Life 2</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13901"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-l-gee-movie-madness-100-joker.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Movie_Madness_100_Joker.700.gif" alt="DJ L Gee - Movie Madness 100 Joker" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ L Gee - Movie Madness 100 Joker</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13900"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-ty-boogie-blendz-4ever-part-4.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Blendz_4Ever_Part_4.700.gif" alt="DJ Ty Boogie - Blendz 4Ever Part 4" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Ty Boogie - Blendz 4Ever Part 4</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13899"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-gates-ryan-b-cleaning-out-my-closet-vol-5.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Ryan_B_Cleaning_Out_My_Closet_Vol_5.700.gif" alt="DJ Gates - Ryan B Cleaning Out My Closet Vol 5" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Gates - Ryan B Cleaning Out…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13898"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-ecko-30-minutes-of-reggae-volume-12.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/30_Minutes_Of_Reggae_Volume_12.700.gif" alt="DJ Ecko - 30 Minutes Of Reggae Volume 12" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Ecko - 30 Minutes Of Reggae…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13897"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-triple-exe-strictly-for-the-new-yorkers-6.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Strictly_For_The_New_Yorkers_6.700.gif" alt="DJ Triple Exe - Strictly For The New Yorkers 6" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Triple Exe - Strictly For…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13896"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/superstar-jay-2iammixtapesk20-hosted-by-benny-the-butcher.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/2IAmMixtapesK201.700.gif" alt="Superstar Jay - 2IAmMixtapesK20 (Hosted By Benny The Butcher)" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Superstar Jay -…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13895"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-s-r-mimosa-s-louie-10.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Mimosas_N_Louie_10.700.gif" alt="DJ S.R. - Mimosa&#39;s & Louie 10" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ S.R. - Mimosa&#39;s & Louie 10</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13894"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-kurupt-love-music-chris-brown.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Love_N_Music_Chris_Brown.700.gif" alt="DJ Kurupt - Love & Music (Chris Brown)" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Kurupt - Love & Music (Chris Brown)</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13893"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/ferrari-simmons-fly-guy-dc-vl-deck-trap-pastor-2.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/VL_Deck_Trap_Pastor_2.700.gif" alt="Ferrari Simmons, Fly Guy DC - VL Deck - Trap Pastor 2" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Ferrari Simmons, Fly Guy DC -…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13891"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/ferrari-simmons-tso-rojay-mlp-endeavors.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Rojay_MLP_Endeavors.700.gif" alt="Ferrari Simmons, TSO - Rojay MLP - Endeavors" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Ferrari Simmons, TSO - Rojay…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13890"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-tom-cruise-lit-like-this-3.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Lit_Like_This_3.700.gif" alt="DJ Tom Cruise - Lit Like This 3" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Tom Cruise - Lit Like This 3</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13889"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-ike-love-fear-the-beast-4-hosted-by-headkrack.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Fear_The_Beast_4.700.gif" alt="DJ Ike Love - Fear The Beast 4 (Hosted By Headkrack)" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Ike Love - Fear The Beast 4…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13888"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/colby-rae-the-busted-kicks-mixtape.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Colby_Rae_THE_BUSTED_KICKS_MIXTAPE.700.gif" alt="Colby Rae - THE BUSTED KICKS MIXTAPE" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Colby Rae - THE BUSTED KICKS MIXTAPE</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13887"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-s-r-dj-scooperachi-only-good-vibes-14.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Only_Good_Vibes_14.700.gif" alt="DJ S.R., DJ Scooperachi - Only Good Vibes 14" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ S.R., DJ Scooperachi - Only…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13882"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-koolhand-hood-most-requested-10-hosted-by-pbe-pluto.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Hood_Most_Requested_10.700.gif" alt="DJ Koolhand - Hood Most Requested 10 (Hosted By PBE Pluto)" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Koolhand - Hood Most…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13881"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-gates-classic-back-to-the-past-part-3.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Classic_Back_To_The_Past_Part_3.700.gif" alt="DJ Gates - Classic Back To The Past Part 3" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Gates - Classic Back To The…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13880"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-ben-frank-only-for-the-plugs-24.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Only_For_The_Plugs_24.700.gif" alt="DJ Ben Frank - Only For The Plugs 24" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Ben Frank - Only For The Plugs 24</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13879"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-mlk-talk-yo-shyt-9.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Talk_Yo_Shyt_9.700.gif" alt="DJ MLK - Talk Yo Shyt 9" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ MLK - Talk Yo Shyt 9</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13877"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-jay-rock-freebandz-mexico-rann-gambling-money-music.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Mexico_Rann_Gambling_Money_N_Music.700.gif" alt="DJ Jay Rock, Freebandz - Mexico Rann - Gambling Money & Music" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Jay Rock, Freebandz -…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13876"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/cookin-soul-whateva-volume-2.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Cookin_Soul_Whateva_Volume_2.700.gif" alt="Cookin Soul - Whateva Volume 2" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Cookin Soul - Whateva Volume 2</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13875"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-1hunnit-dj-idol-no-turning-down-13.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/No_Turning_Down_13.700.gif" alt="DJ 1Hunnit & DJ Idol - No Turning Down 13" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ 1Hunnit & DJ Idol - No…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13874"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-blak-boy-dj-s-r-fuck-da-summer-up-2019.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Fuck_Da_Summer_Up_2019.700.gif" alt="DJ Blak Boy & DJ S.R. - Fuck Da Summer Up 2019" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Blak Boy & DJ S.R. - Fuck…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13873"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-l-gee-movie-madness-99-rambo.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Movie_Madness_99_Rambo.700.gif" alt="DJ L Gee - Movie Madness 99 Rambo" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ L Gee - Movie Madness 99 Rambo</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13872"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-ecko-30-minutes-of-reggae-volume-11.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/30_Minutes_Of_Reggae_Volume_11.700.gif" alt="DJ Ecko - 30 Minutes Of Reggae Volume 11" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Ecko - 30 Minutes Of Reggae…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13871"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-l-gee-movie-madness-98-hustlers.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Movie_Madness_98_Hustlers.700.gif" alt="DJ L Gee - Movie Madness 98 Hustlers" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ L Gee - Movie Madness 98 Hustlers</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13870"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-ike-love-fear-the-beast-3.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Fear_The_Beast_3.700.gif" alt="DJ Ike Love - Fear The Beast 3" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Ike Love - Fear The Beast 3</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13868"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/yo-gotti-white-on-white.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Yo_Gotti_White_On_White.700.gif" alt="Yo Gotti - White On White" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Yo Gotti - White On White</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13867"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-jazz-lil-wayne-the-carter-v-mixtape.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Lil_Wayne_The_Carter_V_Mixtape.700.gif" alt="DJ Jazz - Lil Wayne - The Carter V Mixtape" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Jazz - Lil Wayne - The…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13866"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/21-savage-the-slaughter-tape-2.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/21_Savage_The_Slaughter_Tape_2.700.gif" alt="21 Savage - The Slaughter Tape 2" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">21 Savage - The Slaughter Tape 2</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13865"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/don-trip-they-don-t-love-you.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Don_Trip_They_Dont_Love_You.700.gif" alt="Don Trip - They Don&#39;t Love You" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Don Trip - They Don&#39;t Love You</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13864"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/nas-az-esco-sosa.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Nas_N_AZ_Esco_N_Sosa.700.gif" alt="Nas & AZ - Esco & Sosa" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Nas & AZ - Esco & Sosa</span><span class="product_price grid_mod"> $9.95</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13863"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-drama-thug-lucciano-all-or-nothing.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Thug_Lucciano_All_Or_Nothing.700.gif" alt="DJ Drama & Thug Lucciano - All Or Nothing" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Drama & Thug Lucciano - All…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13862"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-greg-nasty-str8-r-b-21.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/DJ_Greg_Nasty_STR8_RNB_21.700.gif" alt="DJ Greg Nasty - STR8 R&B 21" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Greg Nasty - STR8 R&B 21</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13860"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-greg-nasty-str8-r-b-20.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/DJ_Greg_Nasty_STR8_R_B_20.700.gif" alt="DJ Greg Nasty - STR8 R&B 20" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Greg Nasty - STR8 R&B 20</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13859"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-konvict-coke-a-rama-8.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Coke_A_Rama_8.700.gif" alt="DJ Konvict - Coke-A-Rama 8" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Konvict - Coke-A-Rama 8</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13858"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-rap-caviar-radio-9.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Rap_Caviar_Radio_9.700.gif" alt="The Empire - Rap Caviar Radio 9" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - Rap Caviar Radio 9</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13857"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-pandora-the-sauce-7.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Pandora_The_Sauce_7.700.gif" alt="The Empire - Pandora The Sauce 7" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - Pandora The Sauce 7</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13856"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/big-mike-hot-girl-summer.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Big_Mike_Hot_Girl_Summer.700.gif" alt="Big Mike - Hot Girl Summer" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Big Mike - Hot Girl Summer</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13855"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-streetz-94-5-atlanta-volume-30.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Streetz_94_5_Atlanta_Volume_30.700.gif" alt="The Empire - Streetz 94.5 Atlanta Volume 30" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - Streetz 94.5…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13854"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-rnb-on-demand-40.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/RnB_On_Demand_40.700.gif" alt="The Empire - RnB On Demand 40" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - RnB On Demand 40</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13853"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/brodinski-ola-playa-the-trap-mamba.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Ola_Playa_The_Trap_Mamba.700.gif" alt="Brodinski - Ola Playa - The Trap Mamba" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Brodinski - Ola Playa - The Trap Mamba</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13852"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/go-yayo-king-of-the-streets.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Go_Yayo_King_Of_The_Streets.700.gif" alt="Go Yayo - King Of The Streets" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Go Yayo - King Of The Streets</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13851"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/yung-booke-lil-freaky-bandana-6-two.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Yung_Booke_N_Lil_Freaky_Bandana_6_Two.700.gif" alt="Yung Booke & Lil Freaky - Bandana 6 Two" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Yung Booke & Lil Freaky -…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13850"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-s-r-street-matrimoney-22.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Street_Matrimoney_22.700.gif" alt="DJ S.R. - Street Matrimoney 22" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ S.R. - Street Matrimoney 22</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13849"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-southern-slang-40.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Southern_Slang_40.700.gif" alt="The Empire - Southern Slang 40" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - Southern Slang 40</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13848"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/benny-foxmore-more-drip-39-new-rnb.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/More_Drip_39_New_RnB.700.gif" alt="Benny Foxmore - More Drip 39 New RnB" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Benny Foxmore - More Drip 39 New RnB</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13847"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/drake-ovo-octobers-very-own.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Drake_OVO_Octobers_Very_Own.700.gif" alt="Drake - OVO Octobers Very Own" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Drake - OVO Octobers Very Own</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13846"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/big-mike-soundtrack-to-the-streets-2k19-part-3.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Soundtrack_To_The_Streets_2K19_Part_3.700.gif" alt="Big Mike - Soundtrack To The Streets 2K19 Part 3" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Big Mike - Soundtrack To The…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13845"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/traps-n-trunks-strictly-4-traps-n-trunks-146.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Strictly_4_Traps_N_Trunks_146.700.gif" alt="Traps N Trunks - Strictly 4 Traps N Trunks 146" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Traps N Trunks - Strictly 4…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13844"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/big-mike-trap-music-2k19-part-4.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Trap_Music_2K19_Part_4.700.gif" alt="Big Mike - Trap Music 2K19 Part 4" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Big Mike - Trap Music 2K19 Part 4</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13843"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/big-mike-rnb-jumpoff-2k19-part-5.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/RnB_Jumpoff_2K19_Part_5.700.gif" alt="Big Mike  -  RnB Jumpoff 2K19 Part 5" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Big Mike - RnB Jumpoff 2K19 Part 5</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13842"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/rara-dsivii-hard.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Rara_Dsivii_Hard.700.gif" alt="Rara - Dsivii Hard" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Rara - Dsivii Hard</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13841"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-smooth-montana-young-m-a-gods-girl-3.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Young_MA_Gods_Girl_3.700.gif" alt="DJ Smooth Montana - Young M.A. - Gods Girl 3" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Smooth Montana - Young M.A.…</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13840"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-kool-hand-street-cred-14.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Street_Cred_14.700.gif" alt="DJ Kool Hand - Street Cred 14" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Kool Hand - Street Cred 14</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13839"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/ysl-lil-gotit-the-real-goat.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Lil_Gotit_The_Real_Goat.700.gif" alt="YSL - Lil Gotit - The Real Goat" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">YSL - Lil Gotit - The Real Goat</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13838"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/maino-on-everything-i-love.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Maino_On_Everything_I_Love.700.gif" alt="Maino - On Everything I Love" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">Maino - On Everything I Love</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13836"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-tony-harder-off-the-curb-money-27.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Off_The_Curb_Money_27.700.gif" alt="DJ Tony Harder - Off The Curb Money 27" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Tony Harder - Off The Curb Money 27</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13834"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-s-r-arrogant-music-29.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Arrogant_Music_29.700.gif" alt="DJ S.R. - Arrogant Music 29" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ S.R. - Arrogant Music 29</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13833"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/the-empire-out-the-mud.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Out_The_Mud.700.gif" alt="The Empire - Out The Mud" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">The Empire - Out The Mud</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13832"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/nea-cashtalk-city-of-god-3.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/CashTalk_City_Of_God_3.700.gif" alt="NEA - CashTalk - City Of God 3" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">NEA - CashTalk - City Of God 3</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13831"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-triple-exe-the-passion-of-r-b-134.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/The_Passion_Of_RNB_134.700.gif" alt="DJ Triple Exe - The Passion Of R&B 134" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Triple Exe - The Passion Of R&B 134</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13830"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li><li class="grid_item v1_mod"><form action="https://themixtapechannel.com/" method="post" class="panel add_to_basket"><div data-equalizer-watch><a href="https://themixtapechannel.com/dj-hektik-free-bg-2.html" data-animation_name="fadeIn" class="product_block grid_mod animationTarget"><div class="product_i_w grid_mod"><img alt="" src="https://themixtapechannel.com/images/cache/Free_BG_2.700.gif" alt="DJ Hektik - Free BG 2" class="product_i grid_mod featImg"></div><div class="product_info grid_mod"><span class="product_cat grid_mod"> </span><span class="product_title grid_mod">DJ Hektik - Free BG 2</span><span class="product_price grid_mod"> $3.99</span><span class="product_cat grid_mod"> </span></div></a></div><input type="hidden" name="add" value="13829"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form></li></ul></div></div><footer class="footer"><div class="top_footer"><ul class="social_list"><li class="social_item"><a href="https://www.facebook.com/TheMixtapeChannel/" title="Facebook" target="_blank" class="social_link facebook-square_mod ">Facebook</a></li><li class="social_item"><a href="https://www.instagram.com/themixtapechannel" title="Instagram" target="_blank" class="social_link instagram_mod ">Instagram</a></li><li class="social_item"><a href="https://www.linkedin.com/in/themixtapechannel" title="Linkedin" target="_blank" class="social_link linkedin-square_mod ">Linkedin</a></li><li class="social_item"><a href="http://www.pinterest.com/www.pinterest.com/TheMixtapeChannel" title="Pinterest" target="_blank" class="social_link pinterest-square_mod ">Pinterest</a></li><li class="social_item"><a href="https://twitter.com/#!/TheMixtapeChann" title="Twitter" target="_blank" class="social_link twitter-square_mod ">Twitter</a></li><li class="social_item"><a href="https://www.youtube.com/user/TheMixtapeChannel" title="YouTube" target="_blank" class="social_link youtube-square_mod ">YouTube</a></li></ul><div class="subscribe_block" id="box-newsletter"><span class="subscribe_title">Mailing List</span><form action="https://themixtapechannel.com/" method="post" id="newsletter_form_box" class="subscribe_form"><dl class="form_cell form_cell_v1_mod"><dt class="form_c_hline form_v1_mod hline_hide_mod"><label for="email_subscribe">Email</label></dt><dd class="form_c_f_w form_v1_mod hline_hide_mod"><input name="subscribe" id="newsletter_email" type="text" class="f_c_field default_mod subscribe_mod" title="Subscribe" placeholder="e.g. [email protected]"/></dd></dl><input type="submit" class="subscribe_btn postfix" value="Subscribe"><input type="hidden" name="token" value="afd9fdf23403a6704bda61ad59be077e"></form><div class="hide" id="validate_email">Please enter a valid email address.</div><div class="hide" id="validate_already_subscribed">Email address already subscribed.</div></div></div><div class="footer_in_hold"><div class="footer_in"><div class="footer_first_row"><h4 class="footer_title">About Us</h4></div><div class="footer_sec_row"><div class="footer_text"><p><a href="https://www.themixtapechannel.com/index.php" title="Home">Home</a><br/><a href="https://www.themixtapechannel.com/about-us.html" title="About Us">About Us</a><br/><a href="https://www.themixtapechannel.com/terms-conditions.html" title="Terms &amp; Conditions">Terms & Conditions</a><br/><a href="https://www.themixtapechannel.com/privacy-policy.html" title="Privacy Policy">Privacy Policy</a><br/><a href="https://www.themixtapechannel.com/copyright-notice.html" title="Copyright Notice">Copyright Notice</a><br/><a href="https://www.themixtapechannel.com/disclaimer.html" title="Disclaimer">Disclaimer</a><br/><a href="https://www.themixtapechannel.com/faq-s.html" title="Help &amp; Faq's">Help & Faq&#39;s</a><br/><a href="https://www.themixtapechannel.com/submit-your-mixtapes.html">Submit Your Mixtape</a><br/><a href="https://www.themixtapechannel.com/affiliates-network.html" title="Affiliates Network">Affiliates Network</a><br/><a href="https://www.themixtapechannel.com/bulk-cds-duplication.html" title="Bulk CDs Duplication">Bulk CDs Duplication</a><br/><a href="https://www.themixtapechannel.com/customers-reviews.html" title="Customers Reviews">Customers Reviews</a><br/><a href="https://www.themixtapechannel.com/contact-us.html" title="Contact Us">Contact Us</a></p><p> </p><p><a href="https://safeweb.norton.com/report/show?url=themixtapechannel.com" target="_blank"><img alt="Click This Seal To Verify Safe Site" height="44" src="https://themixtapechannel.com/logoimgs/norton_safe_web.png" width="201"/></a>   <img alt="SSL Certificate" height="50" src="https://themixtapechannel.com/images/RapidSSL_SEAL-90x50.gif" width="90"/><br/> </p><script type="text/javascript">
    google_ad_client = "ca-pub-8192275757700353";
    google_ad_slot = "1940433812";
    google_ad_width = 728;
    google_ad_height = 90;
</script><script type="text/javascript" src="https://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><p> </p><p> </p><p>©2019 www.themixtapechannel.com - All rights reserved. </p></div><div class="ftItems"><div class="show-for-medium-up" id="box-currency"><span class="button white small">$ USD</span></div></div></div></div></div></footer></div></div><script src="https://themixtapechannel.com/skins/zoho/js/vendor/jquery.rating.min.js" type="text/javascript"></script><script src="https://themixtapechannel.com/skins/zoho/js/vendor/jquery.validate.min.js" type="text/javascript"></script><script src="https://themixtapechannel.com/skins/zoho/js/vendor/jquery.cookie.min.js" type="text/javascript"></script><script src="https://themixtapechannel.com/skins/zoho/js/1.foundation.min.js" type="text/javascript"></script><script src="https://themixtapechannel.com/skins/zoho/js/2.cubecart.js" type="text/javascript"></script><script src="https://themixtapechannel.com/skins/zoho/js/3.cubecart.validate.js" type="text/javascript"></script><script src="https://themixtapechannel.com/skins/zoho/js/all.js" type="text/javascript"></script><script src="https://themixtapechannel.com/skins/zoho/js/main.js" type="text/javascript"></script><script>
               
               $(document).foundation({equalizer:{equalize_on_stack:true}});
               $('.bxslider').bxSlider({auto:true,captions:true});
               
           </script></body></html>
Link to comment
Share on other sites

php 7.1

Even these rogue characters, are not really bothering me too much. What's really bothering me is the fack that new users can't register for new accounts nor check out. And I don't know or think that these rogue characters are the issue that's causing the new user to not be able to register nor checkout. Because it works perfectly fine when signed in to an active account. Driving me crazy lol.

Link to comment
Share on other sites

I understand.

Let's work on the theory that having upgraded to CC628, seeing rogue characters, and malfunctions in the behavior of the registration page could somehow have the same root cause.

I believe we have eliminated CC628 because the characters appear before the actual document.

If that then means the problem is in the hosting environment, then this problem could be affecting the javascript that powers the registration page.

It's just a theory.

And, perhaps your hosting provider is not able to, or not willing to, monitor the output of the CubeCart script and the output of the web server. To see if they note any difference between CubeCart and the content stream as it leaves their environment.

 

Link to comment
Share on other sites

On mixtapechannel, the "Uses cookies" banner has a link to the Privacy Policy, and that link is expressed as %PRIVACY_URL%. This won't cause a problem, of course, but you should know it needs to be fixed.

When entering an email address on the registration page (and checkout page), there is some javascript that makes an ajax request -- which is no different than a regular form POSTing -- to CubeCart to see if that email address is available.

Looking at the response of that ajax request, the response unfortunately also contains those rogue characters.

Thus, when the javascript is analyzing that response, the parser says something is wrong and treats the analysis as a fail -- meaning the form validation (3.cubecart.validate.js) fails and the form cannot be submitted.

 

Link to comment
Share on other sites

Working on the theory that the rogue characters are coming from some place other than CubeCart, we can kill the verification of the form made by an ajax request which receives a bad response.

However, there are a number of other events that use ajax: dynamic price updated for options chosen, newsletter signups, several critical admin functions, and others.

So, for the storefront skin, if using a validator that makes ajax calls:

Such as 3.cubecart.validate.js, find all occurances of the ajax call and comment it out. For example, find:

    $("#checkout_form").validate({

Within that function, find:

                remote: {
                    url: "?_g=ajax_email",
                    type: "post",
                    data: {
                        username: function() {
                            return $("#user_email").val();
                        },
                        token: function() {
                            return $("input[name=token]").val();
                        }
                    },
                    dataFilter: function(data) {
                        var json = JSON.parse(data);
                        return json.result;
                    }
                }

Add the following:

/* at the beginning of the first line shown above
*/ at the end of the last line shown above

There are a number of other functions in that javascript file that use the above remote: code to have CubeCart check on something when filling out forms.

Link to comment
Share on other sites

At Nucleus Films, the test HTML file does not have the rogue characters.

So, that sort of eliminates the web server. That leaves just PHP. (I am not yet running PHP 7.)

Or there is still something in CubeCart that is outputting something it shouldn't.

Link to comment
Share on other sites

Hey bsmither, thanks on the advise since you make 100% sense. Now on the PHP 7 I just had changed it about two days ago in also searching if it had anything to do with PHP.

Well I took a day break to fresh my brain as I have burned it out dealing with this and other issues lol.. I will try some other and also take a look at the %PRIVACY_URL% that you mentioned as well as try with the adding of the two above mentioned lines of code and see where that get's us thanks again.

I will post tomorrow or so after I get to it. But keep in mind that I highly dought that it has anything to do with PHP as mentioned, but that is my opinion since I only changed it about two days ago in trying to notice if any change which did not using PHP 7. Just for the heads up.

Ohh almost forgot to mention, that no, on the admin login page nor once logged in to admin, no rogue characters show.

Link to comment
Share on other sites

I still see an unedited 3.cubecart.validate.js.

    $("#registration_form").validate({
        rules: {
            first_name: {
                required: true
            },
            last_name: {
                required: true
            },
            email: {
                required: true,
                email: true,
/*                remote: {
                    url: "?_g=ajax_email",
                    type: "post",
                    data: {
                        username: function() {
                            return $("#email").val();
                        },
                        token: function() {
                            return $("input[name=token]").val();
                        }
                    },
                    dataFilter: function(data) {
                        var json = JSON.parse(data);
                        $("input[name=token]").val(json.token);
                        return json.result;
                    },
                    beforeSend: function () {
                        $("#email").prop('disabled', true);
                    },
                    complete: function () {
                        $("#email").prop('disabled', false);
                    }
                }
*/            },

For the #registration_form, I should see the two edited lines of code.

Well, I see the edits in #checkout_form. Please apply the edits in #registration_form.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.




×
×
  • Create New...