Small web site question :(

Hello....
I got the DW CS3 trial, and I have a question:
I made my site, but there's a problem. When I go to
www."mysite".com, it shows my newer index page. when I go to
"mysite".com with out the "www." it goes to my older one. I can't
even find the older one....Is there anyway to make it so when you
put the www in or not it still goes to the same thing, or is this
more complicated?
Thank you,
Nick

Which Browser are you using?
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"Neiche" <[email protected]> wrote in
message
news:f22uf1$45g$[email protected]..
> How?
> Sorry, Like I said, I'm new.

Similar Messages

  • I want to create a SWF for my small web site. How do I do this? Do I need to purchase "Flash Builder"?

    I want to create a SWF for my small web site. How do I do this? Do I need to purchase "Flash Builder"?

    Hi Developer_46038, 
    if for example all the properties and object are stated as list, i think there is a tool that overcome cross list.
    http://listrollup.codeplex.com/
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/13a51be5-4007-46e8-bbb2-5e04320dfebd/cross-list-webpart?forum=sharepointcustomizationlegacy
    you can also using dataview webpart to show the cross lists:
    http://office.microsoft.com/en-us/sharepoint-designer-help/create-a-data-view-HA010094804.aspx
    http://office.microsoft.com/en-us/sharepoint-designer-help/connect-two-data-views-HA010169133.aspx
    3rd party: http://community.bamboosolutions.com/blogs/bambooteamblog/archive/2009/03/11/relational-database-capabilities-for-sharepoint-lists-cross-list-web-part.aspx
    but i am not quite sure how crystal report will do, if you can make the crystal report as also list, i think its possible, 
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/8247edf5-dee8-49d8-b7ee-9e49bfd97b9b/crystal-report-in-sharepoint-2010-webpart?forum=sharepointdevelopmentprevious
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Apple web site question

    I couldn't find an appropriate place to ask this so here goes. Does anyone know why apple's search engine is totally useless? 99% of the time it give me product/marketing results, is it only designed for that? The results usually have NOTHING to do what I searched for.
    Thanks

    Does anyone know why apple's search engine is totally useless?
    I don't find it "totally useless". But you need to know where you're searching and for what sort of topic.
    99% of the time it give me product/marketing results, is it only designed for that?
    If you've been using the general search on Apple's main web pages, yes, that's going to primarily turn up product information. If you are looking for support information, click on the Support tab at the top of any Apple web page and use the "Search Support" field. That is designed to provide support information. Though even that search it's always completely effective. Many people use Google's search engine and just specify Apple's support section as the site, e.g.:
    site:support.apple.com <your search query here>
    Regards.

  • Submitting Web Sites

    I run a small web site design business and I’m looking
    for a programme that will help me to optimise my sites and submit
    them to search engines. There are a number to choose from and feel
    a bit like a dog in a butchers shop. I would be grateful for any
    recommendations. I see that Microsoft do one (submit it) that seems
    reasonably priced. Has anyone used this to good effect? Any
    comments much appreciated.

    My favorite recommendation? None. They are all frauds. No
    program can
    optimize your pages the way they should be, and submitting to
    the search
    engines is usually unnecessary if you can place an incoming
    link to the site
    on a page that has already been spidered (like your own
    website, for
    example).
    There is SO much more to optimizing your site than simply
    counting keywords
    and using meta tags....
    Check here -
    http://www.dreamweaverresources.com/seo/
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "cncreative" <[email protected]> wrote in
    message
    news:eihik8$6qe$[email protected]..
    >I run a small web site design business and I?m looking
    for a programme that
    > will help me to optimise my sites and submit them to
    search engines.
    > There are
    > a number to choose from and feel a bit like a dog in a
    butchers shop. I
    > would
    > be grateful for any recommendations. I see that
    Microsoft do one (submit
    > it)
    > that seems reasonably priced. Has anyone used this to
    good effect? Any
    > comments much appreciated.
    >

  • Questions on Invoking a Process from a web site

    Question in regards to invoking processes.  I am new to this portion of technology and I am sure many would know how this works.  We have a process in Workbench that needs to be invoked from a remote web site.  The process would take one parameter.. ie an ID.  The process will then query the database and send a boolean value back to the site and then this site would perform a specific operation.   My question is, is there any examples out there that someone could provide that can show how this can be done?  What do i need in my website (I know how to set up buttons and  create OnSubmit processes and very familiar with javascript,html)?  I believe somehow it can be done with SOAP or REST?  Thanks very much in advance for any help.

    You just need a form in HTML with elements(e.g. textbox - string, file - document etc.) having same name as the process input parameter name and the the form action attribute should be pointing to REST URL of the process.
    For example : for a process(short-lived) having REST URL : http://localhost:8080/rest/services/WatchedFolder...  with one input parameter as XML and document as output variable, we'll use below HTML code :
    <HTML>
    <HEAD>
    <TITLE> Sample Invoke REST endpoint </TITLE>
    </HEAD> 
    <BODY>
      <form action="http://localhost:8080/rest/services/WatchedFolder... method="post" enctype="multipart/form-data">
    <p>Chose a file to send to the process.</p> <p>file: <input type="file" name="inputXML" /> </p> <p> <input type="submit"/> </p>
    </form>
      </BODY>
    </HTML>
    When you click on submit, the output document would be opened in the browser automatically after submission of the form.
    -Wasil

  • Plug-in PDF, Internet Explorer, unable to open a pdf file from web site. Question mark

    Hello,
    A computer where Acrobat 9 Standard and Acrobat Reader 9 have been installed.
    When I try to read a pdf file from a web site and read it in IE, I get a popup whith a question mark and no text.
    The pdf file is not open.
    I have try to reinstall the last reader but the problem is not solved.
    Thanks for your help.
    fabrice

    Any ideas how to solve this issue?
    Try using Protected Mode Off.  Then you will be at the same level of security that those other programs are running at.  You could also try elevating the iexplore.exe task.  That would turn off Protected Mode in that task automatically but then
    you would be running also with Administrator level authority which might be excessive.
    Robert Aldwinckle

  • HELP! Getting Blue Q with question marks when visiting web sites

    I see from the replies to similar posts that is is recommended to use the default settings under Advanced/ mime settings, in Quick time
    I always had all boxes checked in all the categories as my preference would be to have Quick time play every thing. And encountered no problems .
    I recently purchased flip4mac studio and now every thing is all messed up, web pages that used to work fine as far as saving content to my desk top or downloads folder, or copying and pasting urls, for sharing now work no more, I get the blue Q with the question mark as shown in these web sites I am completely hobbled as far as sharing my videos.
    [Post Edited by Hosts due to adult content]
    What are the correct settings for quicktime preferences ?
    and please explain kiosk mode , I do have Macromedia flash player installed, and I guess Adobe, when I visit different sites with video, and I control click on the player I am able to tell which player is playing the media, only quicktime offers the save to my computer option, this is how I wound up with flip 4 mac, it was recommended to play content , I also just upgraded my safari to the beta version
    iMac G5/G4 12 inch Power book   Mac OS X (10.4.9)  

    "What are the correct settings for quicktime preferences ?"
    Make sure you have the latest versions of Adobe Flash Player Software
    QuickTime Preferences > Advanced > MIME Stettings > Miscellaneous.
    Deactivate the "Flash Media" option.
    This tells the browser not to to display Flash Media and lets the newly installed Adobe software work its magic.
    ==================
    If the above thread doesn't help, try this...
    Thanks to QuickTimeKirk........
    Quit QuickTime.
    Open User (Home)/Library/Preferences and delete any .plist file with QuickTime in its name. Don't worry as a new one will be created.
    Open System Preferences/QuickTime and see if the window and tabs work as they should.
    The following post should be helpful also: http://discussions.apple.com/thread.jspa?threadID=779076&tstart=0
    ===================
    Since you are using Safari then I suggest that you check out Safari 2.0 Help Webpages aren't working (indicated by boxes with question marks)
    "I recently purchased flip4mac studio"
    Then you should contact Flip4Macs technical customer service and/or post in their forums if none of the above suggestions works out.
    Flip4Mac Community Forum
    Flip4Mac Support Center
    Good luck!

  • Ask your question.APPLE WEB SITE IS SLOW

    I'm on apple support page,I ask a question,10sec later the page comes up. I click on a question and 5 sec later the tiny circular spins letting me know it's looking for the page and then 5 sec later the page opens. Anything and every thing I do the apple web site takes about 10sec or longer every time I click go.
    A lot of times if I click twice and some times just once I get a pop up telling me Apple is not responding. 
    I thought it was verizon service but I just got charter and it's the same way. Any Ideas?? 
    I just went down this page to find out where the best place on apple is to put my question and I clicked the box WiFi and 5 sec later the check mark showed up.

    I actualy had Verizon shut off and removed there security from my p/c and I'm in awe. My p/c is fast and I no longer have trouble with turning pages. I was wrong about charter.com it's who I have now and I'm not haveing trouble with slow int and clicking on the next web page is fast.
    At first it was the same thing w/charter but I still had verizon. I wanted to see if charter was better before I got rid of Verizon but I got speed only after I called Verizon and had them shut me off and then I got rid of there security. 
    I HOPE THIS HELPS.

  • Why is the text so small on this web site???

    Why is the message text so small on this web
    site?? It is almost impossible to read!!
    The navigation text is tiny as well, I cant
    read a word of the navigation bar at the top
    of this page.
    If this is produced using Netweaver, I am
    very concerned.
    Come on SAP, this needs addressing.

    On my computer it is OK, but I have seen this on other machines too. But this surely is not connected to NetWeaver, as you surely knew
    I'll forward this to SDN personell.
    Regards,
    Benny

  • The print is too small on various web sites that I open. How can I correct this?

    The print is too small on various web sites that I open. This has never happened on older Firefox versions. How can I correct this so every page I open, the print size is consistent and legible? I don't want to change it every time I open a new site.

    Hi Donna,
    Welcome to the HP Community Forum.
    Font Size and the scale (size) at which a document is printed is controlled within the application just before the job is sent to the printer -  this means the size is set from your browser (Firefox, Internet Explorer) or perhaps your Editor (Word).  Generally speaking, most applications use Print Preview -- or a variation of that program under a different name.
    An explanation and the use of Print Preview is avialble in the following document:
    Change Print Size with Print Preview
    Click the Kudos Thumbs-Up to show you appreciate the help.
    I am pleased to provide assistance on behalf of HP. I do not work for HP. 
    Click Accept as Solution when the Answer provides a Fix or Workaround!
    Kind Regards,
    Dragon-Fur

  • The display of web sites in response to a search is showing up very small on my screen. How do I get it back to regular size?

    I may have unknowingly punch a combination of keys or something on the menu. But the result is that when I do a search, the resulting list of web sites shows up very small in the upper left hand corner of my screen. How do I get the display to default back to regular size? Now the default is tiny type that I can't even read. Thanks.

    { Ctrl + 0 } to reset the zoom level as you are viewing that page
    https://support.mozilla.com/en-US/kb/Page+Zoom

  • Can you embed survey questions in discontinuous places on a Web site?

    Can you embed survey questions in discontinuous places on a Web site? By analogy, think of an online magazine that would have survey questions at the end of each article. The reader would never go through the survey from start to finish, but rather read an article, then answer questions about subjects covered in the article, then read the next article, answer or skip questions, and so on. In this scenario, if there are 30 survey questions, I would not want 30 separate surveys, but rather an means of rolling up all the answers from a single respondent who logs into the Web site. Can Acrobat forms help in this context, or do you know of other software/services that I should consider?

    You could look into a service such as http://www.formsite.com/. I believe it can do what you want. The support there is excellent so if you can't find the answer looking around, just contact them.

  • How do i find the place on this Mozzilla web site where the answer to the question that i submitted will be found?

    Someone please tell me how to locate the place on this web site where the answer to my question can be found?

    Your other thread is https://support.mozilla.org/en-US/questions/1014066
    The users questions and answers search has been a bit broken since July 31 or even earlier. As a results the Questions and Posts count may not increase.
    It may or may not work but another way is to go to https://support.mozilla.org/questions/ and click on My contributions at top.
    The best you can do at moment is to use the email and to bookmark the threads you posted or replied in.
    There are a few threads in relation to this issues in https://support.mozilla.org/en-US/forums/contributors

  • Aperture web site photos: too small

    The photos on web sites created in Aperture are too small for me. Is there any way to upsize them?
    (And besides, can I eliminate the technical details?)
    Thank you very much!
    Hp

    Yes, you can customize the layout.
    To change the size of the photo on the detail page, select the "Detail" view and change the layout parameters "Fit images within" .
    To change the "details" edit the metadata preset used for the page:
    Select a Metadata preset, that has only the tags that you want to display or set it to "None".

  • I need to open web sites to a slightly smaller window.

    When I open a web site, the site opens to a full screen and integrates with Mozilla. Therefore, when I close the web site, it also closes Mozilla and I'm returned to my desktop. How can I make the web site open a little smaller and show the red "X" at the upper right corner for the site in addition to the one for Mozilla?

    Uncheck: Firefox > Preferences > Tabs: [ ] "Open new windows in a new tab instead"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

Maybe you are looking for