IWeb and non-iWeb files @ same site?

I have modified my CNAME at my personal domain site to forward to MobileMe, and I am not having any problems with that aspect. What I am wondering is ... can I have both iWeb files and non-iWeb files at the same site and still use MobileMe?
Basically, I want to use iWeb for my main family web site, but still have my Wordpress blog as well as some older web pages that I don't want to convert to iWeb. Right now, anything that starts with my domain name is pointed to MobileMe, which precludes access to the non-iWeb files.
Not sure if this is clear or not, but if anyone has any pointers, I would be very grateful.

Thanks for the advice about putting the other files on MobileMe - I didn't know you could host non-iWeb pages there.
Unfortunately, I actually don't want to store them there. My Wordpress blog is hosted on my own server (it's not a wordpress.com blog), and my old files are large and I don't want to burn up all the space on MobileMe. I have a ton of space and other good hosting services as my provider (doteasy). I do, however, like the features of iWeb for my main family page, so I want to be able to publish to MobileMe, but still have the domain function as well, with some pages accessible only through the domain, not MobileMe.

Similar Messages

  • AppleScript - Writing to non-existent directories, and non-existent files..

    All,
    AppleScript - Writing to non-existent directories, and non-existent files...
    Creating directories several levels deep on the fly.
    How do we write to a file that does not exist, buried deep down in a hierarchy of directories that don't exist either...
    In trying to do this I explored two options. One used AppleScript, assisted by UNIX, which was simplicity itself, the other one used only AppleScript and was considerably more complex, and slower.
    http://www.mac-specialist.com/r/asckdirs.html
    Hope these are useful,
    Best Regards,
    Bill Hernandez
    Plano, Texas

    Simplified code examples - lacking extensive error checking -
    UNIX example 001:
    set file_Name to "Sales Figures.txt" -- File to create.
    set file_Path to "2006 Sales:Forecast:Fruits:Flordia:Oranges:Large" -- Folder to create.
    set UNIXfilePath to (quoted form of (POSIX path of file_Path))
    try
    do shell script "mkdir -p " & UNIXfilePath -- Attempt to create a folde, and respective intermediary folder(s).
    end try
    try
    do shell script "touch " & UNIXfilePath & "/" & file_Name -- Attempt to create a blank file.
    end try
    UNIX example 002:
    set file_Name to "Sales Figures.txt" -- File to create.
    set file_Path to "2006 Sales:Forecast:Fruits:Flordia:Oranges:Large" -- Folder to create.
    try
    do shell script "mkdir -p " & (quoted form of (POSIX path of file_Path)) -- Attempt to create a folde, and respective intermediary folder(s).
    end try
    -- Create a file, and enter some text.
    set FREF to open for access file (file_Path & ":" & file_Name) with write permission
    write "Beispieltext" to FREF
    close access FREF
    AppleScript example:
    set file_Name to "Sales Figures.txt" -- File to create.
    set file_Path to "2006 Sales:Forecast:Fruits:Flordia:Oranges:Large" -- Folder to create.
    -- Obtain list of text items of 'file_Path'.
    set {oAStID, AppleScript's text item delimiters} to {AppleScript's text item delimiters, ":"}
    set filePathList to text items of file_Path
    set AppleScript's text item delimiters to oAStID
    tell application "Finder"
    set folder_Path to name of startup disk -- Obtain name of boot disk.
    repeat with i in filePathList -- Cycle through list.
    try
    make new folder at folder_Path with properties {name:i} -- create folder.
    set folder_Path to folder_Path & ":" & i -- Create new path for next new folder.
    end try
    end repeat
    end tell
    -- Create a file, and enter some text.
    set FREF to open for access file (folder_Path & ":" & file_Name) with write permission
    write "Beispieltext" to FREF
    close access FREF
      Mac OS X (10.4.4)  

  • Retrieving spatial and non spatial in same query.

    I have hacked out queries that retrieve and display GEOM Vertices in a JSP using sdoapi.
    I have hacked out queries that retrieve standard format data types and display them in JSP using jdbc, java.sql and oracle.sql.
    I cannot figure out an easy way to blend the two. It seems as though there is no choice but to make two separate queries to the same table in the database in order to present all the columns of an entire row result if a row contains both spatial and standard data.
    Does anyone have any ideas of how this can be done without making two separate calls??

    I'm not sure why you need to print to a file or why you feel you need to do multiple queries to fetch spatial and non spatial attributes. Here are some snippets of SDOAPI based code that may help or may end up confusing matters even more. Hopefully they'll help. I assume you can modify the code to print coordinates to whichever output stream you require for displaying them. "..." indicates that some other code goes here.
    DriverManager.registerDriver(new OracleDriver());
    m_conn = DriverManager.getConnection(url, user, password);
    m_adapter = OraSpatialManager.getGeometryAdapter("SDO", "9.0.1", STRUCT.class, STRUCT.class, null, m_conn);
    Statement stmt = null;
    ResultSet rs = null;
    stmt = m_conn.createStatement();
    String query = "SELECT " + idName + ", " + columnName + " FROM " + tableName;
    rs = stmt.executeQuery(query);
    while (rs.next())
    Object id = rs.getObject(1);
    Object sdoGeom = rs.getObject(2);
    Geometry geometry = ((AdapterSDO)m_adapter).importGeometry(sdoGeom, nDim);
    // do something with the ID column
    // print the geometry's coordinates
    processGeometry(geometry);
    public void processGeometry(Geometry geometry)
    if (geometry instanceof Point)
    Point point = (Point) geometry;
    System.out.println("Point: SRID = " + point.getSpatialReference().getID()+ " (" + point.getX() + ", " + point.getY() + ")");
    else if (geometry instanceof LineString)
    LineString lineString = (LineString) geometry;
    System.out.println(lineString.getNumPoints() + "-point LineString: ");
    for (Enumeration pointEnum = lineString.getPoints(); pointEnum.hasMoreElements();)
    CoordPoint point = (CoordPoint) pointEnum.nextElement();
    System.out.println("\t\t(" + point.getX() + ", " + point.getY() + ")");
    else if (geometry instanceof Polygon)
    Polygon polygon = (Polygon) geometry;
    System.out.println((polygon.getNumRings()) + "-ring Polygon: ");
    LineString exteriorRing = (LineString) polygon.getExteriorRing();
    System.out.println("\t" + exteriorRing.getNumPoints() + "-point exterior ring:");
    for (Enumeration pointEnum = exteriorRing.getPoints(); pointEnum.hasMoreElements();)
    CoordPoint point = (CoordPoint) pointEnum.nextElement();
    System.out.println("\t\t(" + point.getX() + ", " + point.getY() + ")");
    for (Enumeration ringEnum = polygon.getInteriorRings(); ringEnum.hasMoreElements();)
    LineString interiorRing = (LineString) ringEnum.nextElement();
    System.out.println("\t" + interiorRing.getNumPoints() + "-point interior ring:");
    for (Enumeration pointEnum = interiorRing.getPoints(); pointEnum.hasMoreElements();)
    CoordPoint point = (CoordPoint) pointEnum.nextElement();
    System.out.println("\t\t(" + point.getX() + ", " + point.getY() + ")");
    ...

  • Upload and download the file same name but different extension from the document library.

    HI,
         I am using the Client Object Model (Copy. Asmx ) To upload and download the file from the document library.
    I am having the mandatory File ID for the each Document.
    I tried to upload the the document (KIF53.txt) with File ID (KIF53) uploaded successfully.
    Again I tried to Upload the document(KIF53.docx) With File ID(KIF53) its uploaded the file but it not upload the File ID in the Column
    Please find the below screen shoot for the reference.

    thanks ashish
    tried 
    My requirement is to create the  folder and sub folder in SharePoint document library. If already exist leave it or create the new folder and the subfolder in the Document library using client side object model
    I able to check for the parent folder.
    But cant able to check the subfolder in the document library.
    How to check for  the sub folder in the document library?
    Here is the code for the folder IsFolder alredy Exist.
    private string IsFolderExist(string InputFolderName)
            string retStatus
    = false.ToString();
            try
                ClientContext context
    = newClientContext(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryLink"]));
    context.Credentials = CredentialCache.DefaultCredentials;
                List list
    = context.Web.Lists.GetByTitle(Convert.ToString(ConfigurationManager.AppSettings["DocumentLibraryName"]));
                FieldCollection fields
    = list.Fields;
                CamlQuery camlQueryForItem
    = new CamlQuery();
    camlQueryForItem.ViewXml = string.Format(@"<View 
    Scope='RecursiveAll'>
    <Query>
                          <Where>
    <Eq>
    <FieldRef Name='FileDirRef'/>
    <Value Type='Text'>{0}</Value>
                            </Eq>
    </Where>
    </Query>
    </View>", @"/sites/test/hcl/"
    + InputFolderName);
    Microsoft.SharePoint.Client.ListItemCollection listItems
    = list.GetItems(camlQueryForItem);
    context.Load(listItems);
    context.ExecuteQuery();
                if (listItems.Count
    > 0)
    retStatus = true.ToString();
                else
    retStatus = false.ToString();
            catch (Exception ex)
    retStatus = "X02";
            return retStatus;
    thanks
    Sundhar 

  • Problems loading and saving pdf files from sites with latest version.

    On my utilities I wish to download and save pdf files of my e-bill.
    Lately when I click on getting bill, Firefox opens new tab and stops.
    with a light message in url place saying "Type a web address".
    To get around this I must do a right click on the save bill and
    select open in new window, then it opens a new copy of Firefox,
    and two tabs, with the second one asking me to use Adobe to see
    pdf file. I tell it to open and then save it and print it from the tab
    that opens with the pdf file in it. This never happened before was
    always able to just click on link and it would open new tab with
    pdf file there.

    Thanks for the replies. I don't think I was clear enough with my question.
    What I want to be able to do is to click on a PDF file in my Firefox browser and be able to save it as an Adobe PDF file, not a Preview PDF file, in any folder on my computer, rather than just the specified default location for downloads. This way I can save, for example, phone bills in the phone bills folder and bank statements in the bank statements folder without having to save them to the desktop, "Get Info" on each, and change the "Open with:" box from Preview to Adobe Reader.
    Fortunately, thanks to Michael's post, I found an add-on from Firefox that allows me to do just that: https://addons.mozilla.org/en-US/firefox/addon/636
    Thanks for your help. Now, within my Firefox browser, I can choose whether to view or download PDF files, always in Adobe rather than Preview, and when I save them I get the option to choose the location each and every time.
    MacBook Mac OS X (10.4.9)
    MacBook Mac OS X (10.4.9)

  • Converting WMV and non apple files on the net

    I'm very new to apple, and I love my new machine, however, I cannot open any microsoft based files eg. wmv files on the internet and I thought that the conversion would be much simpler. I called tec support and was directed to flip4mac.com, however I couldn't install the wmv converter onto the macbook, has anyone figured this out??
    Please Help
    Drew

    Flip4mac.com will have a Universal version of their plugin soon. It is the best option as it will run natively on the Intel chip.
    You might be able to find an old version of Windows Media Player for the Mac but it is being discontinued.

  • FileInputStream.read()  and non-blocking file i/o

    According to the API, FileInputStream.read() is :
    public native int read() throws IOException
    Reads a byte of data from this input stream. This method blocks if no input is yet available.
    Returns:
    the next byte of data, or -1 if the end of the file is reached.In what instances does the read() blocks? Is there a danger that the call to read() would block forever?

    thanks martian!
    is the ff code right enough to prevent i/o blocking?
      FileInputStream fis = new FileInputStream(src);
      FileOutputStream fos = new FileOutputStream(sPersistorFolder+src.getName());
      if(fis.available() > 0) {
        int c = -1;
        while((c=fis.read()) != -1) {
          fos.write(c);
      fis.close();
      fos.close();

  • No cursor available for entering text in an https site popup. Site is on "trusted/allowed" list. Do get cursor on same site with IE6.

    No cursor is available for entering text in an allowed https popup. Site is on "trusted/allowed" list. Cursor is available and text enters on same site using IE6. Same "no cursor" issue occurs with FF on my laptop. Both machines are Windows XP Home, SP2.
    == This happened ==
    Every time Firefox opened
    == FF was installed -- all updates for FF and extensions are current

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    You have to close and restart Firefox after each change via "File > Exit" (on Mac: "Firefox > Quit")

  • Finding strings in "Selected Files in Site" not working

    When searching files for a string, and selecting "Selected Files in Site", Dreamweaver (starting today) will only search the root directory, NOT the selected subdirectory.  This is uselss.  I've been using Dreamweaver for years.  Today I switched to mapping the site with an IP address instead of a server/domain name, could this be the culprit?

    I encountered exactly the same problem.
    I'm trying to solve this problem...

  • Retrieving spatial and non spatial data in one query

    Hello. I am having slight difficulties using JDBC to retrieve both spatial and non spatial data in the same query. The following is code from a sample program of mine that retrives spatial data from spatial tables.
    (In spatialquery geom is a geometry column and city is simply the name of the city):
    try
    Geometry geom = null;
    String database = "jdbc:oracle:thin:@" + m_host + ":" + m_port + ":" + m_sid;
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
    con = (OracleConnection)DriverManager.getConnection(database, sUsername, sPassword);
    GeometryAdapter sdoAdapter =
    OraSpatialManager.getGeometryAdapter("SDO", "8.1.7", STRUCT.class, null, null, con);
    String spatialquery = "SELECT a1.geom, a1.city \n" +
    "FROM cities a1";
    Statement stmt = con.createStatement();
    OracleResultSet rs = (OracleResultSet) stmt.executeQuery(spatialquery);
    int i = 0;
    int noOfFeatures = 2;
    while (rs.next())
    for(i = 1; i <= noOfFeatures; i++)
    STRUCT dbObject = (STRUCT)rs.getObject(i);
    try
    geom = sdoAdapter.importGeometry(dbObject);
    catch(GeometryInputTypeNotSupportedException e)
    System.out.println("Input Type not supported");
    catch(InvalidGeometryException e)
    System.out.println("Invalid geometry");
    System.out.println(geom);
    }//end while loop
    This retrieves the sptial data fine, however when I attempt to retreive the non-spatial data I keep getting a "ClassCastException" error. I understand it is something to do with "STRUCT dbObject = (STRUCT)rs.getObject(i);" line. Can anyone tell me how to retrieve both spatial and non-spatial data in the one query using JDBC. I have tried nearly everything at this stage. Cheers joe

    Theresa A Radke
    Posts: 20
    OTN Member Since: Jul, 2001
    retrieving spatial and non spatial in same query. May 23, 2003 12:02 AM
    retrieving spatial and non spatial in same query.

  • Encore and .SCC caption files

    I 'm having an issue importing an .scc file into field one of an Encore project.
    My .scc is a non drop frame timecode and would like to know if there are any converter's to convert either an .smi or .scc non drop frame to .scc drop frame timecode.
    Thanks!

    I did a hex dump of the working and non-working files. The only difference appears to be where in the working file every time there is a 0a-30, there is 0d-30 in the non-working file. Could this be some line ending or beginning that is invisible otherwise? Both files are saved as Unicode (UTF-8, no BOM). Here is a screen capture: http://www.personal.psu.edu/pzb4/hexdump.png

  • Two browser with same site having two different session

    Hai Experts................
    I have a problem that with session............
    when we logged in one site with our username and password, and
    then i try to log in same site with other username and password in another browser
    then how to know is there any browser is open with any other username and password in the same site.
    I want to give this checking in the client side.....

    You could use cookies, but this will only allow you to detect multiple uses of the same browser like two instances of IE. This won't work if you are using IE and you open another different browser such as Firefox.
    I think you are out of luck :)

  • Two logins for same site

    I have saved the password and login of a site into my keychain, however i have other logins and passwords for the same site. How can i make it access these?
    I've tried adding them to the keychain, with keychain access, but it still only seems to use the first one that i added via safari.

    You originally purchased a monthly Plan.
    It is just that - monthly.
    It is not possible to add more minutes to your Plan until the first month has expired.
    You can ask Customer Support if they will consider a refund.
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • I had a drive failure and lost the iWeb file along with other things.   I did manage to save a lot of user file documents but I don't see or   recognize the my iWeb site file. It was on a 15" G4 Titanium pb. I'm trying to find a way, using version 2.0.4

    I had a drive failure and lost the iWeb file along with other things. 
    I did manage to save a lot of user file documents but I don't see or 
    recognize the iWeb site file. It was on a 15" G4 Titanium pb.
    I'm trying to find a way, using version 2.0.4 of iWeb on a different 
    pb to recover the file into the iWeb app or a way to download the site into iWeb.
    There are 6 pages of images and text, and it 
    would be a task for me to recreate the whole thing again. I did 
    download the site but I don't know how or if I can get iWeb to see it and open it.
    Does anyone have any knowledge about this? The link to my site:
    <http://web.mac.com/danauerbach>
    Any suggestions will be most appreciated.
    dan auerbach
    [email protected]

    Unfortunately iWeb cannot read or import previously published files, only generate them.  You'll have to recreate your site from scratch.
    However, Chapter 2.3 on the iWeb FAQ.org site has tips on using some of the existing files, image, audio, video, etc., from the published site in the recreation of the site.
    OT

  • An error occurred while publishing file "/Web/Sites/iWeb/Jim and Steph's Si

    I'm guessing this is a common message most see when they try to publish their website. Reason I say this, is it is the only message I have recieved in the last week when trying to use this faulty software.
    Here it is again if you missed it:
    An error occurred while publishing file “/Web/Sites/iWeb/Jim and Steph's Site/Jim's Blog”.
    I got this MacBook week ago yesterday. Totally excited to share pictures and blog information. Spent 99 dollars or close to it for a mac account to simply share this information on the web. The first four pages (all pictures), I published worked well. Then I updated to iWeb 1.1.1 and tried to publish with blogs and more pictures and it won't work. Now all that I published before does not even come up. I emailed support here on mac.com and got the generic reply that I have already read on this forum. I tired as many fixes as I could to no avail. Two questions:
    1. Any ideas to fix this problem?
    2. Can you get your money back?
    Sorry this was so long.
    Thanks everyone,
    Jim B

    Jim...
    Try doing a "Publish All to .Mac" if nothing else works for you. And if I could make a recommendation, it probably wouldn't be a bad thing to simplify your site name (Jim and Steph's Site) and eliminate the apostrophes (also in Jim's Blog). A longer site URL with complexities such as punctuation and spaces and even capitalization can potentially wreak havoc on your site navigation and function. Simplifying your site and page names will at the very least lead to shorter and more recognizable URLs...and when you start to add more pages it will also make the navigation menu at the top of your pages look "cleaner". Think simple names, like "oursite" and "HeSays" or "SheSays"
    Just a suggestion.

Maybe you are looking for