Computer literacy, assistance and repair

A copy of the landing page. How to copy a landing page and transfer leads via API

Now there is a crisis and many are being made redundant or have their wages reduced. How to survive in such a situation, in a crisis? Try the Internet! Only here your earnings depend on yourself. How much can you earn on the Internet if you were fired from your job and not be afraid for tomorrow? You will learn all this from this article on our website about. Let's talk about how to copy a landing page for free and make money.

There are a lot of options for making money, and new ones appear every day. Let's talk about one interesting type of earning money on the Internet by copying landing pages. Landing is a web page that contains information about a product or service. As a result, the page provides a link to go to the paysite (to purchase the product). Making a landing page yourself or ordering it is too expensive and troublesome. But you can copy the landing page for free and this is a great option. A copied landing page costs approximately 400 – 1500 rubles. As a result, you can earn from 2,000 rubles a day by copying such pages.

Where to look for orders for landing pages?

There are special freelance sites where you can work and get a decent salary. For example, the site kwork.ru or work-zilla.com. Let's look at each in turn.

Freelancing site Work-zilla

I already wrote about him, look about it. There you will learn how to register and get started. The only disadvantage of this service is that when registering to access tasks you will need to pay a certain amount. After that, you simply follow up on orders and offer your services. Don't want to pay and start without investment? Then look at the second freelance site:

Kwork.ru for freelancers.

Wherever it is more convenient for you to work, offer copying of landing pages.

The main thing in this income is not registration and not working on services. The main thing is to find a decent program that will copy landing pages without problems and without errors. In this article I do not provide a link to the program. But I found one course on the Internet. You can buy it and learn how to copy landing pages without any problems.

There they will explain to you in detail how to copy them, and provide an application for downloading. If you do not want to pay for the course, then search the Internet for information about the program. Or look at the YouTube video on how to copy landing pages for free.

In order to use some of the achievements of our time, it is not at all necessary to be their inventor or owner. It is enough just to competently adopt this achievement so that it serves you, making your goals a reality. This principle of “borrowing” is especially suitable for Internet resources.

Copying landing page: scrapbook plugin

Copying a landing page is not as difficult as it might seem at first glance. To make a copy of a one-page website, you don’t have to resort to tricks and delving into the program code. To solve such problems, there are a number of special services, one of which I would like to dwell on in more detail.

This service is called “Scrapbook”. This is a productive extension free of charge for the well-known Firefox browser. Using this service you can save web pages to your computer. In the future, you can view them off-line (without access to the Internet) and edit them, modifying them to the state you are interested in. This service does not stand still and is constantly being improved to give its users more and more opportunities to work with Internet resources.

How to copy a landing page yourself

So if you need free program to copy the landing page yourself, then Scrapbook is what can help you achieve your goals. Work with downloaded versions of one-page websites, edit its content and achieve the visual display of the site you need. You can even add some of your own elements that were not included in the original downloaded one-pager.

Very often, affiliate marketers are faced with the need to copy a landing page from a CPA network and upload it to their hosting. This may be needed for various purposes:
  • Install your Yandex.metrics or Google Analytics on your landing page.
  • Set different pixels.
  • Collect a database for retargeting.
  • What to correct to pass moderation, etc.
Here we will try to deal with all these points, and in one thing you will see that all this is done quite quickly and simply.

The main free ways to copy a landing page:

  • Using the ScrapBook extension for Firefox.
  • Using HTTrack Website Copier or Teleport pro programs.
  • Using the wget utility.
  • In this article we will look at how to download a landing page using the wget utility, because... I use it exactly and it has never let me down yet. Copy the landing page using the wget utility First, you need to download and install this utility, download it here - Register or Log in

    After you download and install the utility, run command line, for this we do:
    start - all programs - standard - command line

    As a result, we get access to the command line:

    I won’t describe all the wget commands in full (because I don’t know myself), but we will analyze only the command with which we will merge the landing page, it looks like this:

    Attention! You do not have permission to view hidden text. Register or Log in

    We enter the first part as written here, i.e. “wget --page-requisites -r -l 10”, in the second part, respectively, enter the address of the landing page we need.

    Let's, for example, copy some landing page from m1-shop. Let's say we chose the offer "AirPods - wireless headphones"and we want to download a mobile landing page" Attention! You do not have permission to view hidden text. Register or Log in ".

    So in wget our command will look like this: wget --page-requisites -r -l 10 Attention! You do not have permission to view hidden text. Register or Log in

    Entered, press enter, the process of copying the landing page to your PC occurs:

    After the utility completes copying, you will see the following picture:

    So we can go and check what we have done. Our landing page will be saved in the folder C:\Users\(your username)

    We go into this folder and see that everything has downloaded normally.

    If you don’t understand anything from what I described, you can watch the video on how to work with this utility:

    Now let's see how to attach the API to our downloaded landing page.

    Connecting the API to the landing page Since we downloaded the m1 landing page, let’s look at how to attach their API to our downloaded landing page.

    Very detailed instructions API connection can be found on their website, here - Attention! You do not have permission to view hidden text. Register or Log in

    By the way, there is also a video instruction on the next tab.

    We will transmit orders and statistics via javascript, because... this is the simplest option.

    Opening home page our landing page index.html and after the opening tag insert this code:

    var m1_product_id = PRODUCT_ID; var ref = WEBMASTER_ID; var script = document.createElement("script"); script.src = "https://m1-shop.ru/send_order/?ref="+ref+"&s="+getC("s")+"&w="+getC("w")+"&t= "+getC("t")+"&p="+getC("p")+"&m="+getC("m")+"&product_id="+m1_product_id+"&out=1"; document.body.appendChild(script);

    But you need to edit it a little to suit yourself, namely, instead of PRODUCT_ID we insert the product ID for the API, in our case it is 4712. You can find it on the offer page:

    And instead of WEBMASTER_ID, we insert the webmaster ID, you can find it in your profile. So our code will look like this:

    var m1_product_id = 4712; var ref = 111111; var script = document.createElement("script"); script.src = "https://m1-shop.ru/send_order/?ref="+ref+"&s="+getC("s")+"&w="+getC("w")+"&t= "+getC("t")+"&p="+getC("p")+"&m="+getC("m")+"&product_id="+m1_product_id+"&out=1"; document.body.appendChild(script);

    This code also needs some minor changes.

    First, make sure that in the order form the “full name” field has the name “name”, and the “telephone” field has the name “phone”:

    And add two hidden fields to our form:

    In which we again insert our PRODUCT_ID and WEBMASTER_ID, we get the following code:

    We paste it into the code of our form:

    Now we need to leave the action="" field empty in our form and add a form handler:

    • Option without checking the entered data: onsubmit="urlGen(this);"
    • Option to check the data entered in the form: onsubmit="if(this.name.value=="")(alert("Enter your name!");return false)if(this.phone.value=="")( alert("Enter your phone number!");return false)urlGen(this);return true;"
    I inserted the second option:

    Everything is ready, we have installed the transfer of requests via API.

    Now you can upload our landing page to your hosting and make a test lead to make sure that we have configured everything correctly. I won’t describe how to upload a landing page to hosting here, everything seems to be clear here.

    Let's make our test lead, and in order to check the transfer of all tags to the stat in one go, we'll place a test order with tags. To do this, enter the address of our landing page in the browser and add the necessary tags to it, for example, like this:

    Attention! You do not have permission to view hidden text. Register or Log in

    After that, insert the test data into the order form and click “order”:

    Now let's go to PP, to in this case m1 and look at orders:

    And in the stat:

    Well, everything is fine, we have set up data transfer via the API, we can send traffic)

    Related publications