Using different URL with iweb

I was wondering if I could use iweb to set up a web site, but I want the address to be just a basic ".com" address. (without the .mac// stuff)
Can I do this with a .mac account, or do I need to use a different web hosting company?

Click here and follow the instructions, or use a different web host.
(49756)

Similar Messages

  • Printing different URL with javascript

    I am trying to print a URL using javascript but i do not want to print the current page. I have searched google, this forum and a javascript book and can not seem to figure it out. To exlplain in it generic terms i want to be on one page and tell it to print another. Reason being, I am looking at an overview page and want to print a report made in Oracle reports, (Yes I could load the report and print it but i want to print multiple reports from one button)(The reports do work and are valid) Here is a rundown of what I am doing.
    From a button i am calling a 'url' with the following code:
    javascript:V_PRINT('P50_CUSTOMER_ID','P50_YEAR');
    And then in the html header i have the code: (printing same page twice, just an example)
    <script language="JavaScript" type="text/javascript">
    function V_PRINT (formItem1,formItem2) {
    var formVal1 = document.getElementById(formItem1).value;
    var formVal2 = document.getElementById(formItem2).value;
    var url1;
    var url2;
    url1 = 'http://www.google.com/search?hl=en&q=' + formVal1 + '+' + formVal2;
    url2 = 'http://www.google.com/search?hl=en&q=' + formVal1 + '+' + formVal2;
    url1 = print();
    url2 = print();
    </script>
    This code just prints the current page. I know I am calling print incorrectly and thats where i need the help. Of course I might just be approaching it all wrong. Either way I hope someone with javascript knowledge can help.
    Thanks

    Hello,
    To print a page it has to be open in the browser since all it does it call the browsers print dialog.
    Here is one solution http://www.irt.org/script/508.htm and you can also try a iframe instead of a regular frame.
    If it's crossdomain request like your example here that might cause problems as well. There might be additional problems.
    Carl

  • Using Google Analytics with iWeb site

    Is it possible to use Google Analytics with an iWeb site? They have code they want me to put before the </body> tag.... and I can't find that tag. How do I get the code to show in iWeb? Can I insert this with an HTML snippet?
    Thanks!

    Hello ruralart,
    After saving the automator workflow as a Finder Plugin,
    mount you iDisk in the finder (ex. click on the iDisk icon in the left pane of a Finder window),
    goto the folder iDisk / Web / Sites , select this folder "sites",
    control-click on the folder to run the “Add Google Analytics” workflow.
    Note : when you have iDisk Sync = ON, you'll see that the folder "web" is an alias so Automator will not work in this situation. You'll have to turn iDisk Sync OFF.
    Kind regards,
    Leo

  • Opening BBP_POC using a url with a PO number

    Hi all,
    I'm trying to create a URL with an purchase order number (or guid) to open it directly in the transaction (BBP_POC).
    I do not want to use ITS.
    Is it possible? How can I do it?
    Thanks,
    Ronit.

    Hi all,
    I'm having the same issue, can anyone help?
    Thanks,
    Tomer.

  • Can I use java script with iWeb?

    I am quite pleased with iWeb for my web requirements, commercial and private, but I need to insert java script and don't know how or if iWeb accepts it.

    All custom code, including JavaScript, is pasted in the HTML Snippet.
    Read this : Using the HTML Snippet
    Everything you paste there, is your responsibility.
    iWeb happily publishes your code, whether it works or not. If not, mend it.
    See examples here :
         http://www.wyodor.net/_Demo/Fancy/Dynamic_Text.html
         http://www.wyodor.net/_Demo/html5/BlowUp.html
         http://www.wyodor.net/mfi/Maaskant/How_To.html
         http://www.wyodor.net/mfi/cultureclub/Movies.html
         http://www.wyodor.net/mfi/roodhout/How_To_Do.html
    You may have to learn HTML, CSS, JavaScript, AJAX, DOM and how iWeb creates its pages. Especially that.

  • Shorten Blog URL with iWeb 09?

    With iWeb 09 is there an easy way to shorten the auto-generated site structures for blogs, yet?
    From -> http://www. domain.com/blog/blog/blog.html
    To -> http://www. domain.com/blog
    If I publish to a folder and upload only the blog page directory, some navigation links are broken, and there I have to duplicate the blog.html file to rename as index.html. This is tedious for every blog update.

    I just wrote an article about this. Check it out!
    http://www.ehow.com/how4917516create-shorter-urls-iweb-mobileme.html
    Note that the /Sitename/ part of your URL will still be there, unless you do some further tinkering. If you do, unfortunately you'd lose the blog comments feature.
    If you don't care about blog/photo comments or RSS feeds, then it's easy enough to remove the /sitename/ part of your URL entirely. Simply open your /sitename/ folder in iDisk, and paste the contents into the parent directory (the "Sites" folder.) Of course, this won't work when you have multiple websites on iDisk.

  • Using different content with template tag (struts)

    I developed a page according to the examples on the following link.
    http://jakarta.apache.org/struts/api/org/apache/struts/taglib/template/package-summary.html
    my problem is, that i want to use different pages as content. How can i do this?? do i need, to write multiple pages like this??
    <%@ taglib uri='/WEB-INF/tlds/struts-template.tld' prefix='template'>
    <template:insert template='/chapterTemplate.jsp'>
    <template:put name='title' content='Templates' direct='true'/> <template:put name='header' content='/header.html' />
    <template:put name='sidebar' content='/sidebar.jsp' />
    <template:put name='content' content='/introduction.html'/>
    <template:put name='footer' content='/footer.html' />
    </template:insert><%/*"introduction.jsp"Specify template for this page (chapterTemplate.jsp).The chapterTemplate.jsp defines the layout positions for fiveelements: title, header, sidebar, content, and footer.Specify the source file (html or jsp) for each element.*/%>

    slight typo .. corrected version
    <definition name="master" path="/chapterTemplate.jsp"> 
      <put name="title" value="title.jsp" /> 
      <put name="sidebar" value="sidebar.jsp" />        
      <put name="body" value="body.jsp" /> 
      <put name="footer" value="footer.jsp" />
    </definition>
    <definition name="a.struts.def" extends="master"> 
      <put name="body" value="anotherBodyA.jsp" />
    </definition>
    <definition name="b.struts.def" extends="master"> 
      <put name="body" value="anotherBodyB.jsp" />
    </definition>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Using different locale with date format

    Hi guys,
    I'm trying to print of the same date represented in its different locale but can't seem to get it right. I want the
    dates and times to be represented appropriately (e.g., ?Feb? should be represented as ?f?vr.? in a
    localized for France). I've also tried to use SimpleDateFormat but had no luck there either.
    Locale[] locales = { new Locale("fr", "FR"), new Locale("zh", "CN"),
                 new Locale("it", "IT") };
    for (int i = 0; i < locales.length; i++) {
                  //print date in the different locales
                  try {
                       changeLanuage(locales);
              }catch(IOException e) {
                   System.out.println("ERROR:");
              System.out.println()
    public void changeLanuage(Local loc)
    String dateString = "Sun Jan 27 01:56:00 GMT 2008"
    // Get the default MEDIUM/MEDIUM DateFormat
    String sdate = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM).format(new Date());
    System.out.println(sdate);
    try {
    Date date;
    date = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM,loc).parse(sdate);
    String output;
    output = DateFormat.getDateTimeInstance(DateFormat.FULL, DateFormat.FULL,loc).format(date);
    outputStream.write(output);
    }catch(ParseException pe) {
    System .out.println("ERROR: for lanuage could not parse date in string \"" +
    dateString + "\"");
    pe.printStackTrace();
    Running the code, at the terminal i get the following output.Apr 3, 2008 5:00:03 PM
    ERROR: for lanuage could not parse date in string "Mon Jun 12 10:50:00 BST 2006"
    java.text.ParseException: Unparseable date: "Apr 3, 2008 5:00:03 PM"
         at java.text.DateFormat.parse(DateFormat.java:335)
         at readParser.changeLanuage(readParser.java:275)
         at readParser.main(readParser.java:412)
    If anyone can see what the problem is and how i can overcome it, i would greatly appreciate it if said so.
    Thanks a Lot                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    okay i've attempted date --> format but this getting the same exception throw at run time.
    outputStream.write(present+" "+s.next()+"");
    String dateString = "Mon Jun 12 10:50:00 BST 2006"
    try {
         //parse with default format
          Date dtTmp = new SimpleDateFormat("MMM d, yyyy  H:mm:ss a",loc).parse(dateString);
          String strOutDt = new SimpleDateFormat("yyyy-MM-dd").format(dtTmp);
         outputStream.write(strOutDt+"DONE");
    }catch(ParseException pe) {
         System .out.println("ERROR: for lanuage could not parse date in string \"" +
         dateString + "\"");
         pe.printStackTrace();
    }Any suggestions/help would be great, thanks
    ERROR: for lanuage could not parse date in string "Mon Jun 12 10:50:00 BST 2006"
    java.text.ParseException: Unparseable date: "Mon Jun 12 10:50:00 BST 2006"
         at java.text.DateFormat.parse(DateFormat.java:335)
         at readParser.changeLanuage(readParser.java:261)
         at readParser.main(readParser.java:397)

  • Image.source problem when using an URL with params

    Hello everbody,
    I want to dynamically load images into a dataGrid using the
    following item renderer:
    <mx:DataGridColumn headerText="Image" dataField=""
    width="100">
    <mx:itemRenderer>
    <mx:Component>
    <mx:Image width="100" height="75" source="{'
    http://myserver:8080/servlets/getImage?id='+data.@id+'&width=100&height=75&format=image/pn g'}"/>
    </mx:Component>
    </mx:itemRenderer>
    </mx:DataGridColumn>
    This source won't compile, the error message is 'The
    reference to entity "width" must end with the ';' delimter.
    Ok what's going on here. Seems AS3 not liking my URL params,
    it's not that the width url parameter is a general widget property,
    when i rename the params to "xywhatever" i have the same result.
    When i remove the "&...." from the URL the code compiles.
    (Unfortunately my servlet isn't working without the params..).
    Anyone has an idea what i can do here?
    Thanks in advance!

    I am having difficulties connecting to the MS Active Directory from weblogic 10.3.2. Can you please post your connection info? I am getting data 525 v1772 error. I can't see the users.
    Note: My friend Koksal Aci changed a user parameter, we are not sure if it is the main reason we couldn't connect, but after we have written the first domain's name in capital + "\" + user name, we were successful in connection to Microsoft AD, and getting the user and group names.
    Edited by: cenkozan on Dec 3, 2010 11:12 AM

  • Using two domains with iWeb

    I use a domain from GoDaddy.com to post my iWeb pages but I produced a new iWeb site that I want to post to another domain (one which I've already purchased at GoDaddy). It appears though that mobile me only allows one domain.
    Question: How can I post iWeb sites to different domains from a single mobile me account?

    As you know, you can only use Cname once - any other sites have to use masking.
    Be aware of the downside to this. Masking kills SEO and makes it impossible for your individual pages to bookmarked.
    You could get a MobileMe family account but it would be cheaper to get "real" hosting.

  • Examples of using phpbb forum with iWeb site?

    I'm in the process of converting my site to iWeb using a non .mac host and I'd love to see some examples of anyone using a phpbb forum with their site.
    Thanks in advance!

    Hi Mireille,
    I know that iWeb won't support the forum per say but I should be able just have that specific page of my site point to the forum (not using iweb). I was just curious if anyone has done this and if they had any advice. Hopefully someday iweb will support forums as its a large part of sites like mine. I remember reading about the iframe so I'll look into that too. Thanks!
    Chris

  • Opening different file with iWeb

    Hard drive went....I have aback up copy of My iWeb site. With newly reinstalled iweb I am not able to open my old site...I tried renaming the folder to Domain as suggested by one of the support articles...but to no avail,
    Any advice?
    Devin

    Devin,
    I'm afraid that there is no way to import published sites back into iWeb for editing. You can't just rename the site folder "Domain" and have iWeb recognize it. There is (was) actually a file called "Domain" on your other hard drive that iWeb saves everything to. This is (was) the file to backup in order to preserve the link between iWeb and your published website. Without it, you are going to have to start over and reassemble your pages...at least you can drag some of the photos and graphics that you used from your site folder. So all is not completely lost. Live and learn...start backing up your Domain file...that file is by default located on your hard drive in the following folder path.../Users/yourname/Library/Application Support/iWeb/...
    If you find this information useful, please do me a favor and mark my reply "solved" or "helpful" using the little buttons in the title bar of this reply. Thanks.

  • What is the best solution for streaming the same stream on 2 different URL with 2 network cards ?

    I have a work station with Osprey 230 , I need to stream the same stream on two diffrent  URL  via 2 network cards . Is that possible ?
    Which software you reccommend ?

    use FMLE

  • Using a URL with listFiles?

    Hi,
    I'am using:
    File[] csv = new File ("c://temp").listFiles (new FilenameFilter () {
                        public boolean accept (File file, String name) {
                             return name.substring (Math.max (0, name.length () - 4)).equalsIgnoreCase (".csv");
    Now i tried to search on a ftp location like this..
    File[] csv = new File ("ftp://userId:[email protected]/").listFiles (new FilenameFilter () {
                        public boolean accept (File file, String name) {
                             return name.substring (Math.max (0, name.length () - 4)).equalsIgnoreCase (".csv");
    But this won't work...

    This is the total code:
    import java.io.*;
    import java.net.*;
    import java.net.URL;
    public class Ftp {
    public void searchNameFtp(String user,String
    pass,String ip)throws IOException {
    URL url = new
    ew
    URL("ftp:///administrator:[email protected]/");
                   String fileName = url.getFile();
                   File file = new File(fileName);
                   File[] FtpBestand = file.listFiles();
                   for (int i = 0; i < FtpBestand.length; i ++) {
                        System.out.println("BESTAND:"+FtpBestand.getName
         public static void main (String args[]){
              Ftp ft = new Ftp();
              try{
                   ft.searchNameFtp("","","");
              } catch(Exception e) {
                   System.err.println(e.toString());
    This is the outpunt:
    java.lang.NullPointerException
    I think this is generated cause the array doesn't
    contain any value.
    When i try with file:///c://temp i get the hole dir.
    structure
    I tried ftp://administrator:[email protected] in
    the browser and there comes clear the structure
    (3sub-dir and 4files).
    (btw. 10.232.229.181 is a local adres so i'am the only
    one who can acces this server)
    "(btw. 10.232.229.181 is a local adres so i'am the only one who can acces this server)"
    . . . Yes I'm sure. There are several considerations:
    1. When you do put the URL in manually, then when you hit enter and it 'GOES' there, does it EXPAND the address to something else, or add anything additional?
    2. Put System.out.printlns between each command, as I had them:
    URL("ftp:///administrator:[email protected]/");
    String fileName = url.getFile();
    System.out.println("fileName: "+fileName); // ADD
    File file = new File(fileName);
    System.out.println("Directory? . . . "+ (file.isDirectory())); // ADD
    File[] FtpBestand = file.listFiles();
    // ADD FtpBestand != null below
    for (int i = 0; FtpBestand != null && i < FtpBestand.length; i ++) {
    Yes, the NullPointerException is almost asuredly because it is NOT a directory - or - there is nothing in it . . . that you can get at.
    ~Bill

  • Use different profiles with different versions of Firefox

    I want to use 2 versions of firefox (27 and AURORA) on my mac. IS there any way I can PERMANENTLY 'assign' profiles to the exact versions so one version ALWAYS opens with profile1, the other- with profile2?
    Please explain clearly.
    Thanks.

    You will have to make specific shortcuts to open a Firefox instance with a specific profile by adding -P "profile name" to the command line to launch Firefox. If no profile is specified then the profile that is selected as the last used profile in the Profile Manager will be used. It is not possible to select another profile automatically if another profile is already being used. You will have to click the correct desktop shortcut to select a specific profile.

Maybe you are looking for