WEB SITE CLONING

Web programming topics

WEB SITE CLONING

Postby Face » Sat Oct 30, 2010 1:39 pm

WEB SITE CLONING

I wanna know about WEB SITE CLONING.
There are so many projects about web cloning.I don't know many things about it.I can think from the name "cloning" is to get a copy from one web & make little changes according to some one's ideas.(I don't think it is good thing.)
But It is nice to learn & to get freelance projects.

Can I know About the basics?
Is there any software to use?(I use ADOBE DREAM VIEWER to edit HTML.Can I use it)
User avatar
Face
 
Posts: 762
Joined: Thu Feb 18, 2010 11:36 am
Cash on hand: 3,244.10
Bank: 70,694.00
Location: SRI LANKA.KANDY.
Medals: 1
EC_Achievment (1)

Invitations sent: 34
Registered friends: 5
Reputation point: 12
Corporal

Re: WEB SITE CLONING

Postby Nipuna » Sat Oct 30, 2010 2:44 pm

I've seen that Too.

So I found on Net. Then I saw a YouTube Video, On it it said download the whole page with IDM(Internet Download Manager)
But I think this is not what exactly Buyers Want.  :|  so I want to know about this too.


According to my Thought, I think Web Site Cloning is

Make a Exact site to another with Joomla or What Ever.

Thanks
User avatar
Nipuna
Promo Team
Promo Team
 
Posts: 2213
Joined: Mon Jan 04, 2010 2:32 pm
Cash on hand: 85,640.50
Bank: 252,701.40
Location: Deraniyagala,SRI LANKA
Medals: 2
EC_Bronze_Star (1) EC_Achievment (1)

Invitations sent: 5
Registered friends: 0
Highscores: 1
Reputation point: 33
Staff Sergeant

Re: WEB SITE CLONING

Postby Neo » Sat Oct 30, 2010 3:01 pm

Nipuna has some close idea in that. Basically website cloning is about re-creating the same thing mostly from scratch (from the beginning). At the end of development it should function almost same as the original site. The main concern is the functionality, not the look.
User avatar
Neo
Site Admin
Site Admin
 
Posts: 2452
Joined: Tue Jul 14, 2009 8:37 pm
Cash on hand: 190,465.80
Bank: 11,223,865.00
Location: Colombo/London
Medals: 2
EC_Bronze_Star (1) EC_Achievment (1)

Invitations sent: 94
Registered friends: 12
Highscores: 11
Reputation point: 67
Second Lieutenant

Re: WEB SITE CLONING

Postby Nipuna » Sat Oct 30, 2010 3:53 pm

So Neo, how to Make sites like that. Without knowing from what it was made of?
User avatar
Nipuna
Promo Team
Promo Team
 
Posts: 2213
Joined: Mon Jan 04, 2010 2:32 pm
Cash on hand: 85,640.50
Bank: 252,701.40
Location: Deraniyagala,SRI LANKA
Medals: 2
EC_Bronze_Star (1) EC_Achievment (1)

Invitations sent: 5
Registered friends: 0
Highscores: 1
Reputation point: 33
Staff Sergeant

Re: WEB SITE CLONING

Postby Neo » Sat Oct 30, 2010 4:25 pm

After you become an expert, when see the pages, you will understand how it can be done with your favourite language (in my case php). It can be ASP.Net, Java or anything. The requirement is, the functionality should be close enough to the original site.

To become an expert, you will have to use your knowledge as much as possible. That means do more coding.
User avatar
Neo
Site Admin
Site Admin
 
Posts: 2452
Joined: Tue Jul 14, 2009 8:37 pm
Cash on hand: 190,465.80
Bank: 11,223,865.00
Location: Colombo/London
Medals: 2
EC_Bronze_Star (1) EC_Achievment (1)

Invitations sent: 94
Registered friends: 12
Highscores: 11
Reputation point: 67
Second Lieutenant

Re: WEB SITE CLONING

Postby Face » Sun Oct 31, 2010 2:44 pm

OK.It is hard thing to learn language to clone a web.
If I can get it like a template,I can do some changes by HTML editor.Like frontpage or DREAMVIEWER.
I tried by copy pasting the source code.
Got the code,pasted in a text editor.(NOTEPAD)saved it with the extension .html
Then I tried to edit that saved page with DREAMVIWER.But I is not proper.No colors,No thing looks like the main site.
Please give me tip.
Many times people need to clone WORDPRESS site.
User avatar
Face
 
Posts: 762
Joined: Thu Feb 18, 2010 11:36 am
Cash on hand: 3,244.10
Bank: 70,694.00
Location: SRI LANKA.KANDY.
Medals: 1
EC_Achievment (1)

Invitations sent: 34
Registered friends: 5
Reputation point: 12
Corporal

Re: WEB SITE CLONING

Postby Nipuna » Sun Oct 31, 2010 2:53 pm

for that you have to make a WordPress account and then try. But I am no thinking just copy pasting course will work. You have to manually edit things in wordpress.
Ask Neo He will tell more
User avatar
Nipuna
Promo Team
Promo Team
 
Posts: 2213
Joined: Mon Jan 04, 2010 2:32 pm
Cash on hand: 85,640.50
Bank: 252,701.40
Location: Deraniyagala,SRI LANKA
Medals: 2
EC_Bronze_Star (1) EC_Achievment (1)

Invitations sent: 5
Registered friends: 0
Highscores: 1
Reputation point: 33
Staff Sergeant

Re: WEB SITE CLONING

Postby Neo » Sun Oct 31, 2010 10:06 pm

Yes, just copy/pasting won't work at all. Basically for server side executed parts like php, etc...

I'll give you an example. Say you have a page as below. Save this as mypage.php
Code: Select all

<html>
<head>
<title>My Page</title>
</head>

<body>

Some text here ..... 1 <br><br>

<?php

$a 
= 10;
$b = 15;

echo "a + b is " . ($a+$b) . "<br><br><br>";

?>

Some text here ..... 2

</body>
</html>


If you copy this page to your webserver root (if it is WAMP, C:/WAMP/WWW/), call it in a browser (If you are using WAMP, http://localhost/mypage.html) and you will see the answer as 25.


Code: Select all
Some text here ..... 1

a + b is 25


Some text here ..... 2


Get page source and you will see following code.

Code: Select all
<html>
<
head>
<
title>My Page</title>
</
head>

<
body>

Some text here ..... 1 <br><br>

+ b is 25<br><br><br>
Some text here ..... 2

</body>
</
html>
 


Now, where is the part which is enclosed with <?php and ?>?
That php code was executed on the server and you only got the output of it.

I'm sure now you know why simple copy/paste won't work here. However when you see the page source of the output, you must be able to think how it was created and make a page close to the original code.
User avatar
Neo
Site Admin
Site Admin
 
Posts: 2452
Joined: Tue Jul 14, 2009 8:37 pm
Cash on hand: 190,465.80
Bank: 11,223,865.00
Location: Colombo/London
Medals: 2
EC_Bronze_Star (1) EC_Achievment (1)

Invitations sent: 94
Registered friends: 12
Highscores: 11
Reputation point: 67
Second Lieutenant

Re: WEB SITE CLONING

Postby Face » Mon Nov 01, 2010 4:16 pm

Ah NEO,I got it.The main Idea I got is"learn well,Because simple methods like copy/past can be done by any one.No one will pay for you that."right.
I am bidding just for fun.Not for full time work.I am targeting to learn something more.(I feel that I am not good in IT some times.But I love it,That's why I am following it.)
I will give a rest to this topic.I will start this in near future.
User avatar
Face
 
Posts: 762
Joined: Thu Feb 18, 2010 11:36 am
Cash on hand: 3,244.10
Bank: 70,694.00
Location: SRI LANKA.KANDY.
Medals: 1
EC_Achievment (1)

Invitations sent: 34
Registered friends: 5
Reputation point: 12
Corporal

Re: WEB SITE CLONING

Postby Neo » Mon Nov 01, 2010 5:33 pm

PHP is easy to learn and very interesting to work with. There are some tutorials in ExpertCore. If you learn PHP (with mysql database), HTML, CSS and some JavaScript (You don't have to learn everything at ones), there will be 1000s of opportunities for you to bid. I'm sure you can do it.
User avatar
Neo
Site Admin
Site Admin
 
Posts: 2452
Joined: Tue Jul 14, 2009 8:37 pm
Cash on hand: 190,465.80
Bank: 11,223,865.00
Location: Colombo/London
Medals: 2
EC_Bronze_Star (1) EC_Achievment (1)

Invitations sent: 94
Registered friends: 12
Highscores: 11
Reputation point: 67
Second Lieutenant

Next

Return to Web programming

Who is online

Users browsing this forum: No registered users and 0 guests

cron