+ Reply to Thread
Results 1 to 5 of 5

Thread: Help regarding publishing my page
      
   

  1. #1
    RicoRos is offline Sergeant
    Join Date
    Feb 2008
    Posts
    36

    Default Help regarding publishing my page

    Hi,

    (I am from denmark, so my english may not be a 100% accurat.)
    first I would like to say thank you, for such an easy-to-use webdevelop-program. I am about to make my first web-company using BlueVoda, and so far it is really looking like an expensive, professionel homepage! I would like it to go online the 1īst of April, and I even have the name for it. The only thing (at all!) that im not a 100% sure of is: when I have to publish my whole website, do I publish one page at a time, starting with the main- or index-page?
    And when publishing a site, if I want to publish my index-page and I want it to be named www.mycompany.com, do I then click the "publish"-button and type www.mycompany.htm or www.mycompany.com in the category "folder", or am I totally lost??
    And, is there no way at all, that I could have my domain to end with ".dk/"?

    Best regards
    Rico Rosenkrans

  2. #2
    aussiebaz is offline First Lieutenant
    Join Date
    Jan 2007
    Location
    Newcastle , Australia
    Posts
    178

    Default Re: Help regarding publishing my page

    Quote Originally Posted by RicoRos View Post
    Hi,

    (I am from denmark, so my english may not be a 100% accurat.)
    first I would like to say thank you, for such an easy-to-use webdevelop-program. I am about to make my first web-company using BlueVoda, and so far it is really looking like an expensive, professionel homepage! I would like it to go online the 1īst of April, and I even have the name for it.

    A: when you publish your site it is automatically online so if you want your site to be available as from 1st April you will need to waittill last day in march to publish it.

    The only thing (at all!) that im not a 100% sure of is: when I have to publish my whole website, do I publish one page at a time, starting with the main- or index-page?

    A:Yes you will need to publish each page one at a time and they may be done in any order.

    And when publishing a site, if I want to publish my index-page and I want it to be named www.mycompany.com, do I then click the "publish"-button and type www.mycompany.htm or www.mycompany.com in the category "folder", or am I totally lost??

    A:You would click publish and in the "FOLDER" section you should see
    "public_html". this is the folder to publish to.
    If you have an add-on domain, eg:rico.com and you want your page to be under that domain you would publish to "public_html/rico

    And, is there no way at all, that I could have my domain to end with ".dk/"?

    A:You can have a domain ending in .dk but you would need to redirect it to your voda site
    Hope this helps
    aussiebaz

  3. #3
    RicoRos is offline Sergeant
    Join Date
    Feb 2008
    Posts
    36

    Default Re: Help regarding publishing my page

    Thanks a lot! That really helped.

    I just have one more question, do you know any html-code that could redirect people from my ".dk"-site to my ".com"-site?
    Or is there a more simple way?
    (I am using Microsoft FrontPage for the ".dk"-site")

    Best regards

  4. #4
    aussiebaz is offline First Lieutenant
    Join Date
    Jan 2007
    Location
    Newcastle , Australia
    Posts
    178

    Default Re: Help regarding publishing my page

    Here are 2 scripts for redirecting:

    A/ if you want to redirect people to another site as soon as they arrive at your url:
    Change the "window.location to whatever url
    you want to take them to,place script in body of page
    ===================================
    <script type="text/javascript">
    <!--
    window.location = "http://www.yourdomain.com/"
    //-->
    </script>
    ===============================
    B/ This script will have a time delay before
    taking your viewer to your selected page
    change the URL to the url that you want them to go to
    =========================
    <html>
    <head>
    <script type="text/javascript">
    <!--
    function delayer(){
    window.location = "URL"
    }
    //-->
    </script>
    </head>
    <body onLoad="setTimeout('delayer()', 5000)">
    <h2 >Prepare to be redirected!</h2>
    <p>This page is a time delay redirect, please update your bookmarks to our new
    location!</p>
    </body>
    </html>
    ==================================

    or alternatively
    you could just set up a hyperlink stating:
    Please Click here to be taken to out new Site and
    make the Click Here a link to your new page

  5. #5
    RicoRos is offline Sergeant
    Join Date
    Feb 2008
    Posts
    36

    Default Re: Help regarding publishing my page

    Thanks!
    Now I am all set to go... Canīt wait!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49