Total newbie trying to get started.

I have a domain name and am going to sign up with a web
hosting company. If I purchase Contribute, can I use it to design a
new web site or is Contribute only used to edit existing web pages?
TIA

Contribute can only be used to edit a site that's already
built. It can
allow you to create new pages at an existing site, but it's
not possible to
create pages from scratch and build a new site. If you're
looking for
something easy you might look at NetObjects Fusion for
Windows or Freeway
for the Mac.
On 8/2/06 4:31 PM, in article
earcjv$fc2$[email protected], "cpekarek"
<[email protected]> wrote:
> I have a domain name and am going to sign up with a web
hosting company. If I
> purchase Contribute, can I use it to design a new web
site or is Contribute
> only used to edit existing web pages? TIA

Similar Messages

  • I'm trying to get started and register my new ipad. I have been told to sign into my info web page. How do I do that? And where do I find it?

    I am trying to get started and register my new ipad. I have been told to sign into " my info web page". How do I do that and where do I find it?

    Hi,
    You can register your new iPad here.
    https://register.apple.com/cgi-bin/WebObjects/GlobaliReg.woa
    Carolyn :-)

  • Newbie looking to get started in Mac programming

    Hi,
    I have a handful of ksh scripts written for Leopard, I would like to create an interface/wrapper in C++, ref existing system prefs, to bring everything together under a suite of commands and eventually rewrite the shell scripts into C++. Is there a preferred C++ application and help resources, samples, etc to get started?

    On macintosh, the preferred language is Objective-C, and the preferred framework is Cocoa. The tools to develop in Objective-C/Cocoa (and also other languages) are installable using your Leopard install disk, or you can download them on the [ADC website|http://developer.apple.com>.
    You also have the documentations that go with it, and a lot of courses about Cocoa and Objective-C programming.

  • Just trying to get started

    I installed jdk 1.3. After that made this:
    class helloworld {
    public static void main (string args[]) {
    System.out.printin("Hello world!");
    In command prompt compiled with?javac HelloWorld.java?.     
    Got this massage? ?javac? is not recognized as an internal or external command, operable program or batch file. I know nothing about java need more information respond and ask. just need to get started please help.

    > Got this massage? ?javac? is not recognized as an
    internal or external command, operable program or
    batch file. I know nothing about java need more
    information respond and ask. just need to get started
    please help.
    The javac program is not in your system path. My recommendation is to 1) install a more recent version of Java, and 2) follow the instructions (to the letter) here: Your First Cup of Java
    Good luck!
    ~

  • Some very "newbie" networking questions -- trying to get started

    Hello all. Since this forum is so friendly for issues related to Arch, I thought I'd post my semi-arch related question.
    I'm trying to create a network for my house, consisting of about 3 computers. I have a book reference, TCP/IP Network Administration from O'reilly, but I think I need a bit of a "kick-start" in order to get to a level in which I can comfortably understand the book (if that makes sense).
    I've got internet access working by connecting to a router and having everything configured by DHCP (ie, in rc.conf, eth0="dhcp"). What's bothering me (and I don't even know if it should) is that the other computers on the physical network are not visible to me.
    IE, when I try to connect to them with their host name, it doesn't recognise them. My understanding of that is that either I need to manually set the hostnames of the other computers on the network in /etc/hosts, or use something like a DNS server on one of the computers in the network in order to recognize the others.
    My other doubt is that I think I've got a dynamic IP address (though it might be static, I'm not quite sure). Does that change things?
    I don't expect you guys to completely run through me setting up the network (that's what the book is for!) but some basic advice on either my misconceptions (I'm sure I have plenty) or related in general to my situation would be awsome and highly appreciated. I'd also be happy to provide any additional info that would be helpful.
    Thanks in advance.

    ralvez wrote:
    My set up is simple.
    I have a Linux router running on an old Pentium machine. It has two cards, one configured for the private network (with an address like 192.168.1.1) and the second card set up to take addresses from DHCP ( since that's how Rogers sends you the public address).
    In that machine I run my firewall, SmoothWall (smoothwall.org) and have enabled NAT so the machines in the inside network can go to the Internet.
    I have Samba set up in another machine to share files (that's an Arch system) with static IP, my daughter's machine (another Arch system), my system (obviously another Arch with static IP) and my wife's machine with Windows XP system (static IP too).
    So, the key concept here  are:
    1. Use static IPs for the private network
    2. Use DHCP for Rogers
    3. Use NAT in your router so all the machines can go to the Internet but no one from the Internet can get to them.
    Hope this helps.
    R
    p.s. feel free to contact me off the list if you need further details/help.
    Aha! So, for example, the network 192.168.0.0 where mask is 255.255.255.0 is a private network set up by my router, right?
    So the addresses in 192.168.0.0 never change, but the public IP address of the hosts do change?
    Does that mean that if, for example, I have a host called 192.168.0.32 that its address never changes? Can I simply add that to all the other hosts' /etc/hosts file and it won't change?
    All I was ever concerned about was allowing hosts in the network to contact each other via hostname. If that never changes then I'm all set.
    BTW, thanks for your continuing help!
    Last edited by Jessehk (2007-08-10 16:33:57)

  • Newbie: Trying to get data  from Code Behind file to HTML file.

    Greetings,
    I am trying to use the opener link adaptive tag to open a specific page. I have the Object ID, and classID as variables in my class in my class file, but I do not know how to get that data into the opener link which is on the html page.
    Should I be using session variables? If so how, I am a newbie.
    Does anyone know how?
    Thanks.

    Kinda depends on your flavor/need/preference. I've done it...
    * Using session variables and just writing to the page in script blocks. Not preferred in .NET-land, but definitely more of the fast/traditional ASP style. Use sparingly and with caution. Be really careful about VS.NET totally destroying your tags. It seems to love doing that (as an aside - HUGE thank-yous to the BEA engineers who altered the tags to consistenly use lower case. Really. I can't thank you enough. :) )
    * Using label controls and then just populating the label with the formatted adaptive tag (this can work well)
    * One of our guys did a really simple/elegant server control that takes arguments for the objectid, classid, etc. Nice for creating things repeatedly server-side and gets you by the HTML, quotes, etc. all over the place. Nice as it also consolidates the tag in a single place you can alter once.
    For session variables, you'd just do something like...
    <%
    '//in your code-behind
    Session("myClassID") = 18
    Session("myObjectID") = 12345
    %>
    <!-- in your aspx file -->
    <pt:standard.openerlink xmlns:pt='http://www.plumtree.com/xmlschemas/ptui/' pt:objectid='<%=Session("myObjectID")%>' pt:classid='<%=Session("myClassID")%>' pt:mode='2' target='myWindow' onclick=window.top.open('','myWindow','height=800,width=700,status=no,toolbar=no,menubar=no, location=no');>Adaptive Tags Made This Easy - Click to Open My Awesome Document</pt:standard.openerlink>
    That help?
    Personal style, I would try to avoid using session, etc. directly on your ASPX file. I'd go with writing out the HTML through labels, data lists, etc. in your code-behind.
    Thanks,
    Eric

  • Trying to Get Started With Windows 8.1

    I'm not a troll, I'm just a crotchety, oldster trying to figure out how to get Windows 8.1 to fit my workflow.  I've been using Windows 7 for the last bunch of years, so I'm a bit late to the Windows 8 party, but I'm building a new PC and figured I'd
    move to 8.1 instead of continuing with 7...
    I liked the XP interface - extremely easy to find the application I wanted because things were hierarchical. Windows 7 was more bothersome, but I got used to it.  So far, after 3 days, I'm still struggling with Windows 8.1, so I figure I'll get some
    guidance here...
    I did a rummage, but didn't find much on how I should change my workflow to make it easier in 8.1.  In Windows 7 I had a desktop with icons for less frequently used applications, a taskbar with frequently used applications pinned, and a start menu (3rd
    party) with EVERYTHING organized hierarchically so it was easy to find what I need. I'm trying to use 8.1 without adding a bunch of 3rd party stuff to make it look more like older interfaces that were organized differently.
    In Windows 8, I appear to have the equivalent of THREE desktops, all different, none with any hierarchical organization.  
    I'm not seeing the advantage of the Start screen...  Are the boxes, of whatever size, just the equivalent of icons or do they do something better?  And I only appear to be able to organize horizontally, which means I'm limited to six named groups.
    On the Apps screen, I already have a large number of my apps, despite deleting a bunch of the "modern" things.  They exceed the width of the 24" monitor I'm using for setup.  There doesn't seem to be any hierarchy there, either. 
    So, for example, for Office I have at least 12 icons/apps/whatevers.  Including the ones I CARE about, like Word, Excel, Powerpoint, and Outlook that I use regularly.  AND a bunch of OTHER stuff I VERY rarely use like Clip Organizer, and Groove,
    and Uploader, and so on.  But, I can't take them off the screen if I ever want to get at them, right?  'Cause there's no start menu any more...
    I also have a lot of stuff for handling e-books - Calibre, a Kindle Reader, OverDrive, Adobe Digital Additionsl, a Nook Reader, a couple 3M cloud things, and so on.  On the Apps page they're all OVER the place instead of being grouped together (which at
    least the Office stuff is).  And there doesn't appear to be a way to have them be together and hierarchical so I can quickly find Calibre or ADE quickly, and only have to see the Kindle reader or Nook reader when I want them...  So how do folks organize
    their screens so they don't have to wade through hundreds of things you only need once a year to get to the ones you use a couple times a month or once a week?
    I also have a bunch of stuff that's just a single application, like Syncback, but instead of just being "Syncback", there' ANOTHER line that tells me who the creator is - I don't care that 2BrightSparks made it, I just want to be able to find it when
    I need it - once in a while.
    The desktop is as it's always been, but I don't want 2 or 300  icons on there for a bunch of stuff I rarely use.  The constantly used stuff will be pinned to the taskbar, and the less frequently can be icons, but where do I do to organize all the
    other stuff?
    So, in my ignorance - is there a way to have 8.1 support MY workflow, or if not, how do other people organize things to make it as easy as possible to find what you need without having to wade through a ton of stuff you don't?  And have it all fit on the
    screen. 
    I found the Name Group thing for the Start screen, but I can only group applications aross the screen?  Which limits me to 6 groups.  How do I configure that screen so I can have multiple groups in a column?
    And the Apps screen.  How do I organize things hierarchically so I can have the Office stuff I care about visible, with the rest not clogging up space but available for drilling down?
    I currently have the system boot to the desktop, which is most like Windows 7, but without a start menu to group things, I'd need a lot of icons for the applications I use, and a lot MORE for the stuff I rarely use.  Cumbersome.
    How are other people organizing in 8.1?

    I have a Dell U3014 as well as a couple of older Dells turned up sideways as "ears".
    Other than supplying the desktop "theme" (if you can call a complete lack of style along with a fair bit of inconsistency a "theme"), the OS really shouldn't be causing you to have a washed-out desktop experience.  That's more a
    matter of your display driver not really doing its job.  What video card do you have?
    FYI, one of the reasons I like Aero Glass for Win 8.1 (a 3rd party package) is that it allows me to make the desktop more pleasant to use and helps set the client areas (i.e., where work gets done) apart from the window chrome.
    From what I can see, the color-management logic in Windows 8.1 is essentially unchanged from what it was in Windows 7.  That there has been NO progress in this area is really a disappointment.  It's an area where Microsoft has again just stopped
    trying to make improvements.
    If it's at all interesting to you, here's a screen grab of a REALLY cluttered up desktop.  I don't normally work this way; this was an exercise to see how much I could get running.  I finally gave up starting more stuff as I grew tired
    and it just kept working fine...
    http://Noel.ProDigitalSoftware.com/ForumPosts/Win81/BusyDesktop.png
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

  • Have a new ipod shuffle trying to get started with it.but my laptop dosn,t recognise it and no "assistant "shows up to help me locate the shuffle

    can,t get my shuffle to be recognised by my laptop so i can,t sync it
    i,ve downloaded itunes but nothing happens when i connect shuffle
    no assistant appears

    I have a Dell U3014 as well as a couple of older Dells turned up sideways as "ears".
    Other than supplying the desktop "theme" (if you can call a complete lack of style along with a fair bit of inconsistency a "theme"), the OS really shouldn't be causing you to have a washed-out desktop experience.  That's more a
    matter of your display driver not really doing its job.  What video card do you have?
    FYI, one of the reasons I like Aero Glass for Win 8.1 (a 3rd party package) is that it allows me to make the desktop more pleasant to use and helps set the client areas (i.e., where work gets done) apart from the window chrome.
    From what I can see, the color-management logic in Windows 8.1 is essentially unchanged from what it was in Windows 7.  That there has been NO progress in this area is really a disappointment.  It's an area where Microsoft has again just stopped
    trying to make improvements.
    If it's at all interesting to you, here's a screen grab of a REALLY cluttered up desktop.  I don't normally work this way; this was an exercise to see how much I could get running.  I finally gave up starting more stuff as I grew tired
    and it just kept working fine...
    http://Noel.ProDigitalSoftware.com/ForumPosts/Win81/BusyDesktop.png
    -Noel
    Detailed how-to in my eBooks:  
    Configure The Windows 7 "To Work" Options
    Configure The Windows 8 "To Work" Options

  • Total rookie trying to get on-line with my ipod touch.

    Ok... I just got a new ipod touch for my family and have no idea what is happening when I try to go on-line.
    Whenever we try to go to a web site we are asked to select a wi-fi network. When we choose on, we are asked for a password or to join. I have no idea what to do from here?? as I said, we are absolute rookies here?
    Any help would be great!!

    Welcome aboard!
    When you see a list of WiFi networks, you'll see some of them have a little lock symbol next to their names, and others do not have that symbol. The ones with a lock are the ones that have been password protected by their owners. Unless you know the password, you won't be able to get onto those networks.
    Instead you should look for and choose the ones without a lock symbol. Those are the ones that are not password protected and therefore will allow access by your Touch. It might not work all the time (maybe there are configuration issues with that network), but it will usually work.
    However, if the open network is one that is pay-to-use (such as at an airport or at a cafe), it will seem like it lets you onto the network, and yet you cannot get Weather to work or anything else. If that happens, try starting up Safari. Try to go to a web site. If your destination gets hijacked by a login page, then you know this is a network that requires you to log in (and perhaps pay) before you can use it. For example, I was in two different airports last week. In one I got access but it was pay-to-play. In the other one, it also popped up a login screen on Safari, but it was just to have me acknowledge that they were providing free access. Once I clicked to acknowledge, I was online without any problem.
    In summary, you have four different scenarios with WiFi:
    1. None in your immediate area. You aren't going online.
    2. Ones with locks. Unless you know the password, you aren't using them.
    3. Ones with no locks, but they create a splash screen in Safari. Maybe they want money to use, maybe they don't. Give 'em a shot and see.
    4. Ones with no locks and no barriers to entry. You can go online with them unless there are some odd configuration issues.

  • Trying to get started.. but fumbling badly.

    I just got my first MacBook Pro on monday (currently posting from it). I decided this morning that I wanted to register a .mac name and try it out for its free trial period.
    I went to system settings, clicked on the .mac icon, and typed in my newly created .mac (or mobileme ?) ID and pass, and it verified my password. I can get into iDisk and open up all the foders and stuff, also I can log into my mobile me account and read my mail as well, so I know that its not a login issue.. but i'm having the following problem.
    When I start up iWeb, all I get is this:
    iWeb will not allow me to start a new webpage, no matter what I do.. everything is grayed out. Even if I go through iPhoto. I've checked to see if there are any updates.. and the only thing I get is a message telling me to get iLife 09. Has anyone experienced this before that can lead me in the right direction?

    Nevermind, I'm retardedly new to mac's I didnt realize I am not running iWeb 08.. I think this is where the problem lies..

  • Newbie trying to get tracks to mp3 without clipping

    Hi Folks, I have imported a bunch of track from a HDD recorder (as wav files) into Garageband. It's a rock band setup - drums, bass, guitar etc. I can't get the drums or bass anywhere near loud enough without clipping. If you look at the wave form of the signal it's not above 0 or even close. I tried turning off all compression I was using and all other effects and it still sounds like crap. I can get a decent mix in GB but when I try to export either as MP3 or .aif I have no volume or I have clipping. I have tried both Normalizing and not.
    Please, any thoughts are most welcome. Thanks!

    jburnard12 wrote:
    I have the volume on my pc up all the way and compared to other music it's not near the volume.
    http://www.bulletsandbones.com/GB/GBFAQ.html#commercialcdvolume
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • Total Newbie, best way to start learning?

    After much frustration with having others design my website
    for me and not getting what I want, I figured what the hell, I'm
    going to learn it myself. As I'm reasonably familiar with Photoshop
    CS3 through my photography, DW seems the logical next step,
    although I'm also considering learning to code from scratch, just
    using NotePad or TextPad or something like that. The whole coding
    thing intimidates the hell out of me, though.
    Do I really NEED to learn the basics of coding BEFORE diving
    into DW, or can DW help me learn the coding as I use the Design or
    Split modes?

    Hello,
    "Do I really NEED to learn the basics of coding BEFORE diving
    into DW, or
    can
    DW help me learn the coding as I use the Design or Split
    modes? "
    You don't have to, and you will certainly learn things by
    looking at what
    happens in code view as you do things in design view.
    However, spending the time to learn the basics first will
    make DW far easier
    for you to use.
    It will also save you a tremendous amount of time, and
    frustration, in the
    long run.
    It will also save you from making mistakes that might end up
    undoing hours
    of work when you realize there's a problem with something.
    A good place to start:
    http://www.w3schools.com/html/default.asp
    You can "play" with live examples of code that start with the
    basics.
    Change the code and see, in real time, what happens...right
    there.
    It's a great way to learn.
    Or alternate at least. Go through a few pages at w3 and play
    with DW.
    If you just jump into DW, the learning curve will be huge and
    painful.
    Once you start to understand code, you'll understand how
    things work, but
    more importantly, what you can do.
    This is key, because you will need to make an adjustment in
    how you think of
    design when going from static image design to web design.
    When you produce a design in Photoshop, the layout will
    essentially look the
    same to all viewers.
    However, when you produce a webpage you have users who have
    different text
    size settings (text is bigger or smaller while images on the
    page remain the
    same), view the site in different sized browser windows and a
    host of other
    things you can't control. The web is too dynamic.
    With the above said, I'd like to give you a big piece of
    advice that will
    hopefully prevent a mistake many new users make.
    Don't use AP Divs to layout your page.
    You're sure to run across them in DW, and you might think,
    "Hey, I can drag
    things where I want them!"
    It's tempting to use, especially because it is familiar in
    function to
    dragging things around in applications like Photoshop.
    However, as I mentioned, the web is dynamic and using AP Divs
    to layout a
    page will likely result in you posting back here with
    significant problems.
    Things like your page breaks, text overflows into other areas
    of the page or
    things don't line up when I change browser window size.
    There have been many people who have built entire sites using
    AP Divs to
    layout their pages, only to find out what the problems are
    when viewed in
    different browsers. They then had to rebuild their entire
    site.
    You're off to a good start by using this forum.
    Read through some posts, and ask questions often.
    It will be a huge help as you learn.
    Take care,
    Tim
    "Payetdds" <[email protected]> wrote in
    message
    news:[email protected]...
    > After much frustration with having others design my
    website for me and not
    > getting what I want, I figured what the hell, I'm going
    to learn it
    > myself. As
    > I'm reasonably familiar with Photoshop CS3 through my
    photography, DW
    > seems the
    > logical next step, although I'm also considering
    learning to code from
    > scratch,
    > just using NotePad or TextPad or something like that.
    The whole coding
    > thing
    > intimidates the hell out of me, though.
    >
    > Do I really NEED to learn the basics of coding BEFORE
    diving into DW, or
    > can
    > DW help me learn the coding as I use the Design or Split
    modes?
    >

  • Newbie trying to get a flash ad swf to loop

    Hello,
    I am a designer trying my hand at flash animated ads for the first time and can't do what is probably the simplest function imaginable. There is a tile ad on ingoodfaithwyoming.com toward the bottom of every page. It's a simple ad but I cannot export the swf so it loops. I tried creating a new layer and putting in a go to and play (1) on the last frame but it hasn't helped. I asked a buddy who is used to cs3 and he said it is in the publish settings, I am on cs4 and can find no such setting except in the html side, which does me no good as I have to use swf for the site's system. Please help.

    Hahahaha, so I tried the go to and play 1, uploaded it and so no change which is when I came here... However I never cleared teh cache for the site. Once I cleared that out it was working correctly. Thank you so much for your help, I really appreciate it.
    Kyle

  • Mac Newbie trying to get a handle on photoshop pull downs

    I am fairly new to osx and really love the design of photoshop with one exception: layer pull downs.  When I used photoshop on a pc I could select the layer mode and then up or down arrow key to preview how a  layer mode would look.  I could just up arrow or down arrow and see what different looks each layer mode would cause.  On the mac, I find that I  have to click and drag every time.  Is there a way to get the arrow keys to work?  I found that after a days work my arm was actually sore from needing to constantly click and drag.
    Any help would be appreciated.
    Thanks
    ACC

    Zeno Bokor wrote:
    if i'm not mistaken, on the mac the drop-downs don't "stick"
    They most certainly do, at least on my machine.  I double checked before posting.  The up/down arrows work to move through the blending modes, but you don't get previews as you cycle through them.

  • Trying to get started with iPad

    I received an iPad for Christmas. However, I have an iMac 17" flat screen PowerPC G4 running Mac OSX 10.4.11 with iTune 8. (Yes I know I am a little behind the curve but it all as worked for me until now.) On the iPad box it says I need OS 10.5.8 and at least iTunes 9.1. I am covered for the iTunes as I have a copy of iTune 9. My problem is finding OS 10.5. I did a little research yesterday and found 10.5.4 for $200 which I think is quite high since I want to recall the original release for 10.5 was only $129, and the upgrades are usually free from Apple. Also there is no guarantee that I'll get a PowerPC version. I ran into that with some other older Apple software I ordered from a third party. Any suggestions on were to turn to get a copy of 10.5 for a PowerPC G4?
    Thanks for your help.
    Retiredmac

    Well, I was curious about 10.5 and googled it. Seems the "going" price for a new box is $199, but I did find a link to Amazon where it was on sale for $162. I would recommend doing an extensive search for Mac OS X 10.5 and see what prices you might find. But it seems that, unless you are buying used, the price will be much higher than $129.

Maybe you are looking for

  • Vendor Balance Report ( field addition )

    Hi Gurus How i can add ( Name1 )   vendor name field in following report. Financial Accounting > Account Payable > Information System > Reports for account payable accounting > Vendor balances > S_ALR_87012082 - Vendor Balances in Local Currency than

  • MESSAGE TYPE DEFAULT FOR PURCHASE ORDER

    Dear All, I want to set default message type ZNEU for all purchase order. I try this with T-CODE MN04 AND MN05 but it is not working. SO HOW I MAKE MESSAGE TYPE DEFAULT FOR PURCHASE ORDER Regards, Pankaj

  • ORABPEL-9708 Error while querying workflow task WFTask. Caused by:ORA-00936

    Hi, I am trying to integrate my Primavera p6 web version8.0 with the BPM setup 11.1.1.3 . The BPM is setup fine. But when I integrated with primavera p6 and on load of workflows portlet of p6 web where the BPM tasks are listed, I am getting following

  • Absolute link issue

    I'm building an application that has numerous folders with the same element in each folder. i.e. header.jpg. The elements change from folder to folder, but their position in the folder is the same, so /images/header.jpg is consistent throughout. I'm

  • Employee photo upload issue

    Hello Experts, i am uploading a photo wih the help of abaper but problem is when i run t code OAC0 and create repository for that storage type should be type as R/3 database .but when I  am selecting it is not coming another option is comes HTTP CONT