How to create a NO-database clone site?

bhbeginner

Newbie
Joined
Nov 7, 2016
Messages
4
Reaction score
0
Hi, I'm trying to learn to write a PHP page that do something maybe very beginner's level to you guys I don't even know the term (cloning, .etc) :

It just grabs another website and render as my site. Also I will patch all the links on the clone site as if it's my site with a token, then when the user click on it, it just go to the original site and grab the content, then display on it. The beauty is that it doesn't need to retain a database to save space. How to do it? thanks

For example, the original site is: (sorry can't paste link due to lack of score)

nUROJlx
[/IMG]
nUROJlx



and the clone is:


1BN7XPM
1BN7XPM
[/IMG]

Note: I'm not doing any backlink seeding here, purely to give example. They are not even my site.
 
I think you can do it using iframe, or use Jack Jacker gold word-press plugin.
 
I think you can do it using iframe, or use Jack Jacker gold word-press plugin.
The clone site doesn't, I inspect the source page, it rewrites the links. Because the clone site is meant for SEO, so they don't use iframe, but they put the links they are SEO-ing right after the body tag.
 
check thepirate.ga... the piratebay proxying script..
i use "createaproxy" script.. not only rewrite title, you can change anything ..
like css, image, html code and just put you idea in there..
 
I think you can do it using iframe, or use Jack Jacker gold word-press plugin.
I have just tried the jack jacker original plugin and it did now work. Can you send me a link to the gold one? I did not find any.
 
I think you can do it using iframe, or use Jack Jacker gold word-press plugin.
Hi. where can I find jack jacker gold? I searched for it but can't find it any where. I have the original one but it does not work. Or maybe something similar.
 
While everyone suggests iFraming which certainly is the simplest option, I'd like to point out that most large sites nowadays are including the X-FRAME-OPTIONS header in deny mode which restricts third party sites from iframing them.

If you don't wanna use a database and can't iframe the site then I guess the only solution is to do a server side request for every request to your site and serve the returned response to the client.

Eg. target site = abc.com, your site is abc1.com

User visits abc1.com/hello -> your server fetches abc.com/hello and returns that response to the user.

Of course this approach is extremely moronic, but that's the answer to your question.
 
check thepirate.ga... the piratebay proxying script..
i use "createaproxy" script.. not only rewrite title, you can change anything ..
like css, image, html code and just put you idea in there..

Thanks! Awesome tip, I've managed to do it after your tip. sleepwake[dot]me
 
Please elaborate.

check thepirate.ga... the piratebay proxying script..
i use "createaproxy" script.. not only rewrite title, you can change anything ..
like css, image, html code and just put you idea in there..
 
Back
Top