Page 1 of 2 12 LastLast
Results 1 to 40 of 50

Thread: Like My New Website?!

  1. #1

    Thread Starter
    Supreme User Madboy's Avatar
    Join Date
    Oct 2003
    Location
    England
    Posts
    3,253

    Like My New Website?!

    Click the link from my sig.

    What do you think? Only took over 30 minutes to make in Frontpage

  2. #2
    Frenzied Member Acidic's Avatar
    Join Date
    Sep 2003
    Location
    UK
    Posts
    1,090
    so far so good, I like the colours. You know, you could hide the tripod adds instead of shove them way down.
    In javascript you can hide any adds for Mozilla Firebird (and presumably Mozilla and NS). damn IE though, doesn't work for there.

    Anyway, quite a nice site.
    Have I helped you? Please Rate my posts.

  3. #3

    Thread Starter
    Supreme User Madboy's Avatar
    Join Date
    Oct 2003
    Location
    England
    Posts
    3,253
    Thanks, how would you hide the ads, and would it hide in AOL?

  4. #4
    Frenzied Member Acidic's Avatar
    Join Date
    Sep 2003
    Location
    UK
    Posts
    1,090
    Here's ho I did it when the adds were right at the start of the body tag, ie just after <body> but before anything I'd entered.
    Code:
    <script type="text/javascript">
    function no_adds() {
    document.body.innerHTML = document.body.innerHTML.substring(document.body.innerHTML.search("<p><strong>Updates:</strong>"),document.body.innerHTML.length)
    }
    </script>
    and then run that onLoad

    the <p><strong>Updates:</strong> bit is what I knew my actual page started with.
    If the code for the addvert is at the start then just change the code slightly.

    I don't know if AOL likes it though, It's a big bummer that IE doesn't
    Have I helped you? Please Rate my posts.

  5. #5

    Thread Starter
    Supreme User Madboy's Avatar
    Join Date
    Oct 2003
    Location
    England
    Posts
    3,253
    Cheers, ill look into that

  6. #6

    Thread Starter
    Supreme User Madboy's Avatar
    Join Date
    Oct 2003
    Location
    England
    Posts
    3,253
    Nah, didnt work. Heres all my HTML code for the main page:

    Code:
    <html>
    <head>
    <script type="text/javascript">
    function no_adds() {
    document.body.innerHTML = document.body.innerHTML.substring(document.body.innerHTML.search("<p><strong>Updates:</strong>"),document.body.innerHTML.length)
    }
    </script>
    <style>
    <!-- 
    body 
    { 
    scrollbar-base-color: #000000; 
    scrollbar-face-color: #202020; 
    scrollbar-track-color: #000000; 
    scrollbar-arrow-color: #606060;
    scrollbar-highlight-color: #000000; 
    scrollbar-3dlight-color: #000000; 
    scrollbar-shadow-color: #000000;
    scrollbar-darkshadow-color: #000000; 
    } 
    -->
    </style>
    <meta http-equiv="Content-Language" content="en-gb">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>KL245 Digital - [Home]</title>
    </head>
    <body bgcolor="#4A4A4A" link="#000080" vlink="#000080" alink="#000080">
    <p align="center"><b><font face="Verdana" size="7">KL245 Digital</font></b></p>
    <p align="center"><font face="Verdana" size="4"><b>[<a href="http://kl245digital.tripod.com/Index.htm">Home</a>]
    [<a href="http://kl245digital.tripod.com/News.htm">News</a>] [<a href="http://kl245digital.tripod.com/Software.htm">Software</a>]
    [<a href="http://kl245digital.tripod.com/Games.htm">Games</a>] [<a href="http://kl245digital.tripod.com/Links.htm">Links</a>]
    [<a href="http://kl245digital.tripod.com/Contact.htm">Contact</a>]</b></font></p>
    <p align="center"><font face="Tahoma" size="3"><b>Welcome to KL245 Digital! Here
    you can download all my developments including Software and Games. All
    applications found from this site are free, yes that's right free! There isn't a
    whole bunch of applications yet as I am just starting up the website. Infact
    most of the applications here are just small ones, no major ones here yet. I've
    only been learning to program for about 7 months now, so the quality of the
    programs may not be of a high standard as other professional applications.
    However they are still bug free and good to use. As some say, &quot;Less is
    More&quot;. Anyway, please feel free to browse the site, if you have any
    questions please feel free to contact me.</b></font></p>
    <p align="center"><font face="Tahoma" size="3"><b>Also some of the software such
    as &quot;VB6 Keygen&quot; should only be used at your own risk. I am not
    responsible for you &quot;Cracking&quot; Microsoft software, I just created the
    tool, I didn't tell you to use it!</b></font></p>
    <p align="center"><font face="Tahoma" size="3"><b>Thanks for reading and
    visiting my site!</b></font></p>
    <p align="center">&nbsp;</p>
    <p align="center"><b><font face="Tahoma" size="1">Copyrights© KL245 Digital
    2003 All Rights Reserved®</font></b></p>
    </body>
    <script type="text/javascript">
    function no_adds() {
    document.body.innerHTML = document.body.innerHTML.substring(document.body.innerHTML.search("<p><strong>Updates:</strong>"),document.body.innerHTML.length)
    }
    </script>
    </html>
    Cheers! If it does work, it doesnt in My IE or AOL

  7. #7
    Frenzied Member Acidic's Avatar
    Join Date
    Sep 2003
    Location
    UK
    Posts
    1,090
    try changing:
    <p><strong>Updates:</strong>
    to:
    <p align="center"><b><font face="Verdana" size="7">KL245 Digital

    That might make it work, then upload it so I can see it too please.
    Have I helped you? Please Rate my posts.

  8. #8

    Thread Starter
    Supreme User Madboy's Avatar
    Join Date
    Oct 2003
    Location
    England
    Posts
    3,253
    Nah, it aint working. I have:

    Code:
    <html>
    <head>
    <script type="text/javascript">
    function no_adds() {
    document.body.innerHTML = document.body.innerHTML.substring(document.body.innerHTML.search("<p align="center"><b><font face="Verdana" size="7">KL245 Digital"),document.body.innerHTML.length)
    }
    </script>
    <style>
    <!-- 
    body 
    { 
    scrollbar-base-color: #000000; 
    scrollbar-face-color: #202020; 
    scrollbar-track-color: #000000; 
    scrollbar-arrow-color: #606060;
    scrollbar-highlight-color: #000000; 
    scrollbar-3dlight-color: #000000; 
    scrollbar-shadow-color: #000000;
    scrollbar-darkshadow-color: #000000; 
    } 
    -->
    </style>
    <meta http-equiv="Content-Language" content="en-gb">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>KL245 Digital - [Home]</title>
    </head>
    <body bgcolor="#4A4A4A" link="#000080" vlink="#000080" alink="#000080">
    <p align="center"><b><font face="Verdana" size="7">KL245 Digital</font></b></p>
    <p align="center"><font face="Verdana" size="4"><b>[<a href="http://kl245digital.tripod.com/Index.htm">Home</a>]
    [<a href="http://kl245digital.tripod.com/News.htm">News</a>] [<a href="http://kl245digital.tripod.com/Software.htm">Software</a>]
    [<a href="http://kl245digital.tripod.com/Games.htm">Games</a>] [<a href="http://kl245digital.tripod.com/Links.htm">Links</a>]
    [<a href="http://kl245digital.tripod.com/Contact.htm">Contact</a>]</b></font></p>
    <p align="center"><font face="Tahoma" size="3"><b>Welcome to KL245 Digital! Here
    you can download all my developments including Software and Games. All
    applications found from this site are free, yes that's right free! There isn't a
    whole bunch of applications yet as I am just starting up the website. Infact
    most of the applications here are just small ones, no major ones here yet. I've
    only been learning to program for about 7 months now, so the quality of the
    programs may not be of a high standard as other professional applications.
    However they are still bug free and good to use. As some say, &quot;Less is
    More&quot;. Anyway, please feel free to browse the site, if you have any
    questions please feel free to contact me.</b></font></p>
    <p align="center"><font face="Tahoma" size="3"><b>Also some of the software such
    as &quot;VB6 Keygen&quot; should only be used at your own risk. I am not
    responsible for you &quot;Cracking&quot; Microsoft software, I just created the
    tool, I didn't tell you to use it!</b></font></p>
    <p align="center"><font face="Tahoma" size="3"><b>Thanks for reading and
    visiting my site!</b></font></p>
    <p align="center">&nbsp;</p>
    <p align="center"><b><font face="Tahoma" size="1">Copyrights© KL245 Digital
    2003 All Rights Reserved®</font></b></p>
    </body>
    <script type="text/javascript">
    function no_adds() {
    document.body.innerHTML = document.body.innerHTML.substring(document.body.innerHTML.search("<p align="center"><b><font face="Verdana" size="7">KL245 Digital"),document.body.innerHTML.length)
    }
    </script>
    </html>
    But the ads just keep on showing and showing. Check if i have the code right. If it isnt, could you make it right instead of giving me the code. I must be doing something wrong

  9. #9
    PowerPoster hellswraith's Avatar
    Join Date
    Jul 2002
    Location
    Washington St.
    Posts
    2,464
    You may E-mail me at any time using deleted If I don't reply to your email its either because im too busy, or I haven't got the email. You may email me for:
    this is going to get you even more spam in your email than aol already provides you. Posting your email anywhere on your page or in the html will allow the spam people to spider you site, and harvest your email address. You should start receiving a lot of email in a month or two if the spiders come.

    What I do is create a form. Use server side processing to send the email to you so you never have to expose your email address to spiders.

    Just a suggestion to help you out. You probably are already used to the spam from AOL though, and you won't mind...lol.

  10. #10

    Thread Starter
    Supreme User Madboy's Avatar
    Join Date
    Oct 2003
    Location
    England
    Posts
    3,253
    Thanks, i actually dont get much from spam from AOL.

    Thanks again though.

    Do you know how to remove the ads from TRipod in iE?

  11. #11
    Frenzied Member Acidic's Avatar
    Join Date
    Sep 2003
    Location
    UK
    Posts
    1,090
    Everything was right, except you had forgotten to call the function. Here's the code:
    Code:
    <html>
    <head>
    <script type="text/javascript">
    function no_adds() {
    document.body.innerHTML = document.body.innerHTML.substring(document.body.innerHTML.search("<p align="center"><b><font face="Verdana" size="7">KL245 Digital"),document.body.innerHTML.length)
    }
    </script>
    <style>
    <!-- 
    body 
    { 
    scrollbar-base-color: #000000; 
    scrollbar-face-color: #202020; 
    scrollbar-track-color: #000000; 
    scrollbar-arrow-color: #606060;
    scrollbar-highlight-color: #000000; 
    scrollbar-3dlight-color: #000000; 
    scrollbar-shadow-color: #000000;
    scrollbar-darkshadow-color: #000000; 
    } 
    -->
    </style>
    <meta http-equiv="Content-Language" content="en-gb">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>KL245 Digital - [Home]</title>
    </head>
    <body bgcolor="#4A4A4A" link="#000080" vlink="#000080" alink="#000080" onLoad="no_adds()">
    <p align="center"><b><font face="Verdana" size="7">KL245 Digital</font></b></p>
    <p align="center"><font face="Verdana" size="4"><b>[<a href="http://kl245digital.tripod.com/Index.htm">Home</a>]
    [<a href="http://kl245digital.tripod.com/News.htm">News</a>] [<a href="http://kl245digital.tripod.com/Software.htm">Software</a>]
    [<a href="http://kl245digital.tripod.com/Games.htm">Games</a>] [<a href="http://kl245digital.tripod.com/Links.htm">Links</a>]
    [<a href="http://kl245digital.tripod.com/Contact.htm">Contact</a>]</b></font></p>
    <p align="center"><font face="Tahoma" size="3"><b>Welcome to KL245 Digital! Here
    you can download all my developments including Software and Games. All
    applications found from this site are free, yes that's right free! There isn't a
    whole bunch of applications yet as I am just starting up the website. Infact
    most of the applications here are just small ones, no major ones here yet. I've
    only been learning to program for about 7 months now, so the quality of the
    programs may not be of a high standard as other professional applications.
    However they are still bug free and good to use. As some say, "Less is
    More". Anyway, please feel free to browse the site, if you have any
    questions please feel free to contact me.</b></font></p>
    <p align="center"><font face="Tahoma" size="3"><b>Also some of the software such
    as "VB6 Keygen" should only be used at your own risk. I am not
    responsible for you "Cracking" Microsoft software, I just created the
    tool, I didn't tell you to use it!</b></font></p>
    <p align="center"><font face="Tahoma" size="3"><b>Thanks for reading and
    visiting my site!</b></font></p>
    <p align="center"> </p>
    <p align="center"><b><font face="Tahoma" size="1">Copyrights© KL245 Digital
    2003 All Rights Reserved®</font></b></p>
    </body>
    </html>
    But as I said, this only works in Mozilla, still it doen't do anything bad in the others, so it's better than nothing.

    edit:sorry code is right now
    Last edited by Acidic; Nov 22nd, 2003 at 06:11 PM.
    Have I helped you? Please Rate my posts.

  12. #12

    Thread Starter
    Supreme User Madboy's Avatar
    Join Date
    Oct 2003
    Location
    England
    Posts
    3,253
    Thanks, but what have you done!

    In IE my page shows two ads at the top. But it doesnt display them, my background is dark grey, where the ads were its bright white. I think ill leave it as it was

  13. #13
    Frenzied Member Acidic's Avatar
    Join Date
    Sep 2003
    Location
    UK
    Posts
    1,090
    try again, I had to edit my post when I realised I had done a mistake.

    If it still doesn't work then fine, ignore me. It's wierd though, it workied for me, and in IE it would only show it like normal.
    Have I helped you? Please Rate my posts.

  14. #14

    Thread Starter
    Supreme User Madboy's Avatar
    Join Date
    Oct 2003
    Location
    England
    Posts
    3,253
    Ive just done a few searches and found a way to remove ads. If they work in IE ill let you know.

    THANKS

  15. #15

    Thread Starter
    Supreme User Madboy's Avatar
    Join Date
    Oct 2003
    Location
    England
    Posts
    3,253
    Couldnt find anything that works or is worth while

  16. #16
    PowerPoster Arc's Avatar
    Join Date
    Sep 2000
    Location
    Under my rock
    Posts
    2,336

    Re: Like My New Website?!

    Originally posted by Madboy
    Click the link from my sig.

    What do you think? Only took over 30 minutes to make in Frontpage
    Only took 30 mins huh? Looks like it only took 15.
    -We have enough youth. How about a fountain of "Smart"?
    -If you can read this, thank a teacher....and since it's in English, thank a soldier.


  17. #17
    PowerPoster Pc_Madness's Avatar
    Join Date
    Dec 2001
    Location
    Melbourne, Australia
    Posts
    2,765
    Wow! Black text on a grey background with dark blue links. You might want to consider trying something else.
    Don't Rate my posts.

  18. #18
    Frenzied Member Acidic's Avatar
    Join Date
    Sep 2003
    Location
    UK
    Posts
    1,090
    i liked the colours. It suited the feel and content (what there is) of the site. Maybe there should be a choice of many style things to choose from
    Have I helped you? Please Rate my posts.

  19. #19
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344
    Originally posted by Pc_Madness
    Wow! Black text on a grey background with dark blue links. You might want to consider trying something else.
    Exactly my thought.
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  20. #20
    Frenzied Member
    Join Date
    Oct 2002
    Location
    Gammapolis
    Posts
    1,474
    It would be better if you disable the link to the page you are in now, for example disable the link for Home when in home page and NEWS when in news page,...
    'Heading for the automatic overload'
    Marillion, Brave, The Great Escape, 1994

    'How will WE stand the FIRE TOMORROW?'
    Eloy, Silent Cries and Mighty Echoes, The Vision - Burning, 1979

  21. #21
    KrisSiegel.com Kasracer's Avatar
    Join Date
    Jul 2003
    Location
    USA, Maryland
    Posts
    4,985
    [harsh]
    1. Bad color combination. Needs more contrast
    2. Does not validate
    3. FrontPage really sucks ass and generates some really nasty code. Learn HTML, it isn't difficult.
    4. The "VB6 keygen" on your site is illegal. Hope your site doesn't become popular or you'll be ****ed. That tiny disclamer won't save you from ****.
    5. Tripod really sucks ass. Find a better host
    6. What is with the copyright? registered? I highly doubt you actually copyrighted KL245 Digital.
    7. E-Mail address on site = no no. It's bad enough that it's an AOL address.

    [/harsh]
    When I critic websites, I give the honest truth

  22. #22
    KrisSiegel.com Kasracer's Avatar
    Join Date
    Jul 2003
    Location
    USA, Maryland
    Posts
    4,985
    Originally posted by Lunatic3
    It would be better if you disable the link to the page you are in now, for example disable the link for Home when in home page and NEWS when in news page,...
    No, that breaks navigation. It should be the same on all pages reguardless.

    Well that's more of an opinion....

  23. #23
    Frenzied Member
    Join Date
    Oct 2002
    Location
    Gammapolis
    Posts
    1,474
    Originally posted by kasracer
    No, that breaks navigation.
    How?
    'Heading for the automatic overload'
    Marillion, Brave, The Great Escape, 1994

    'How will WE stand the FIRE TOMORROW?'
    Eloy, Silent Cries and Mighty Echoes, The Vision - Burning, 1979

  24. #24
    KrisSiegel.com Kasracer's Avatar
    Join Date
    Jul 2003
    Location
    USA, Maryland
    Posts
    4,985
    Originally posted by Lunatic3
    How?
    It isn't consistant. One page home isn't highlighted, other pages it is.

    Like I said, it's more of an opinion. However, I believe the w3c has guidelines about it.

  25. #25
    Frenzied Member
    Join Date
    Oct 2002
    Location
    Gammapolis
    Posts
    1,474
    Originally posted by kasracer
    It isn't consistant. One page home isn't highlighted, other pages it is.
    Obivously the page in which Home is not highlighted, or has another color is home page.
    'Heading for the automatic overload'
    Marillion, Brave, The Great Escape, 1994

    'How will WE stand the FIRE TOMORROW?'
    Eloy, Silent Cries and Mighty Echoes, The Vision - Burning, 1979

  26. #26
    KrisSiegel.com Kasracer's Avatar
    Join Date
    Jul 2003
    Location
    USA, Maryland
    Posts
    4,985
    Originally posted by Lunatic3
    Obivously the page in which Home is not highlighted, or has another color is home page.
    Which is what I said I didn't like.......

  27. #27
    Frenzied Member
    Join Date
    Oct 2002
    Location
    Gammapolis
    Posts
    1,474
    Originally posted by kasracer
    Which is what I said I didn't like.......
    It would be better if you said that at frist and didn't mention 'it breaks navigation' which is obviously wrong.
    'Heading for the automatic overload'
    Marillion, Brave, The Great Escape, 1994

    'How will WE stand the FIRE TOMORROW?'
    Eloy, Silent Cries and Mighty Echoes, The Vision - Burning, 1979

  28. #28
    KrisSiegel.com Kasracer's Avatar
    Join Date
    Jul 2003
    Location
    USA, Maryland
    Posts
    4,985
    Originally posted by Lunatic3
    It would be better if you said that at frist and didn't mention 'it breaks navigation' which is obviously wrong.
    I did mention that! I said it was an opinion!

    In my opinion, it would break navigation because it isn't consistant. The navigation is changed on each page.

  29. #29
    PowerPoster hellswraith's Avatar
    Join Date
    Jul 2002
    Location
    Washington St.
    Posts
    2,464
    Originally posted by kasracer
    [harsh]
    1. Bad color combination. Needs more contrast
    2. Does not validate
    3. FrontPage really sucks ass and generates some really nasty code. Learn HTML, it isn't difficult.
    4. The "VB6 keygen" on your site is illegal. Hope your site doesn't become popular or you'll be ****ed. That tiny disclamer won't save you from ****.
    5. Tripod really sucks ass. Find a better host
    6. What is with the copyright? registered? I highly doubt you actually copyrighted KL245 Digital.
    7. E-Mail address on site = no no. It's bad enough that it's an AOL address.

    [/harsh]
    When I critic websites, I give the honest truth
    Number 6 of your post is wrong.

    Any work he does is automatically copyrighted by law. The notice is usually there only to help deter people. He could pay for a legal one, but it is more of a formality than anything.

    I am not sure about the R though for reserved. I think that means Registered Trademark (or is it TM), which he would then need to go through the legal process to get it.

    In any event, Madboy, you should look at copyright notices on a few sites. They will show you how to format it.

  30. #30
    KrisSiegel.com Kasracer's Avatar
    Join Date
    Jul 2003
    Location
    USA, Maryland
    Posts
    4,985
    Originally posted by hellswraith
    Number 6 of your post is wrong.
    It isn't wrong. You even mention in your post that he could go and get a legal one.

  31. #31
    PowerPoster hellswraith's Avatar
    Join Date
    Jul 2002
    Location
    Washington St.
    Posts
    2,464
    Maybe 'wrong' was the wrong word to use on my part, sorry. He does have a copyright on it. You said you highly doubted he had a copyright. He can go further and get a piece of paper copyright, but the fact still remains that he has a copyright. No need to doubt him.

  32. #32
    KrisSiegel.com Kasracer's Avatar
    Join Date
    Jul 2003
    Location
    USA, Maryland
    Posts
    4,985
    Originally posted by hellswraith
    Maybe 'wrong' was the wrong word to use on my part, sorry. He does have a copyright on it. You said you highly doubted he had a copyright. He can go further and get a piece of paper copyright, but the fact still remains that he has a copyright. No need to doubt him.
    I doubt all people

  33. #33
    Fanatic Member arsmakman's Avatar
    Join Date
    Dec 2001
    Location
    Leiden, Netherlands.
    Posts
    719
    Those ads are awful. My advise: get a new host.

    http://www.freewebspace.net/search/power.shtml
    No matter how fool-proof your program is, there will always be a better fool.

    Was a post helpful to you? Rate it!

  34. #34

    Thread Starter
    Supreme User Madboy's Avatar
    Join Date
    Oct 2003
    Location
    England
    Posts
    3,253
    Thanks for the replies,

    well i asked before for a good free web host. No good replies for it

    Does it matter if the current page disables or highlights the link you are in? Its slighlty more work and the user should know what page they are in. THERE IS A BIG PIECE OF TITLE TEXT AT THE TOP OF THE PAGE. AND IT TELLS YOU IN THE BROWSER WINDOW CAPTION!

    Who cares about the color scheme, its not bright, its not dull and bold. It is contrasted in between.

    The Keygen was actually made for me, as backup purposes. When ever i buy software such as VB6 i never think of keeping product ID numbers etc. So this was merely for backup purposes. I think i should remove it from the site.

    The reason it only took 30 minutes because i was also in the middle of doing stuff on the net. So ok, it only took about 15-20 minutes.

    Frontpage does suck, but im not buying something like Dreamweaver. Sure i could get a cracked copy of Kazaa, but i dont see the point in doing such a thing.

  35. #35
    Frenzied Member Acidic's Avatar
    Join Date
    Sep 2003
    Location
    UK
    Posts
    1,090

    I don't think it's kosher to mention getting pirated software from *cough* Kazaa *cough* on this site. I use www.freewepage.org where your URL is yourname.freewebpage.org You also get FTP uploads which is handy, 150MB of space and formmail cgi scripts. It is also easy to get rid of their adds (in Mozilla). The only downside is that they not allow files bigger than 0.9MB. But you could always either split your files ro host the big files somewhere else.
    Have I helped you? Please Rate my posts.

  36. #36

    Thread Starter
    Supreme User Madboy's Avatar
    Join Date
    Oct 2003
    Location
    England
    Posts
    3,253
    Thanks, Acidic. The link didnt work though

  37. #37
    Frenzied Member Acidic's Avatar
    Join Date
    Sep 2003
    Location
    UK
    Posts
    1,090
    typo,
    now it works
    Have I helped you? Please Rate my posts.

  38. #38

    Thread Starter
    Supreme User Madboy's Avatar
    Join Date
    Oct 2003
    Location
    England
    Posts
    3,253
    Which one is it?

    Free webpages or
    Free Domain Host Name?

    Thanks

  39. #39
    Frenzied Member Acidic's Avatar
    Join Date
    Sep 2003
    Location
    UK
    Posts
    1,090
    Damn it, I had written www.freewebpages.org instead of www.freewebpage.org

    go to the latter.
    www.freewebpage.org
    That should work.
    Have I helped you? Please Rate my posts.

  40. #40

    Thread Starter
    Supreme User Madboy's Avatar
    Join Date
    Oct 2003
    Location
    England
    Posts
    3,253
    Why is it asking to download something?

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width