Publish to Web as HTML?

Hi,
I'm currently using Bento as a quick database but it lacks the possibility to export data contented (in a formatted way) to the web.
Before switching to FileMaker Pro, I was thinking that I can publish to Numbers.
But then what? From what I've seen, Numbers can publish to the web but as links to files (PDF, Excel, etc...)
Is it possible to publish as HTML only. This is for read-only publishing and the target audience has no clue
about downloading data. The audience has to be able to check data as a spreadsheet in a table on the web.
All this with a few clicks from my side.
I'd like to avoid setting up a MySQL DB and then write a PHP page for them to check the data.
Is this possible?
Thanks for any help.
P.S. No, publishing as a PDF is not a solution.

sj,
If all you need is a Table and Text, with no special Numbers features, sure you can, if you're willing to take a detour through TextEdit.
You can make a table in Numbers, Copy/Paste to TextEdit, add whatever text is needed, and Save to HTML. Here's an example, in Safari, of a table that began in Numbers and was pasted into TE then saved as HTML:
Regards,
Jerry

Similar Messages

  • WEB WIDGET - HTML SNIPPET  how to post myspace music in iWeb

    i'm making a site for a band. i'm using the *web widget- html snippet* to insert the myspace player from a band. the bands site is http://www.myspace.com/mod39lone.
    this is the code i'm putting in :
    <embed src="http://lads.myspace.com/music/musicplayer.swf?n=aHR0cDovL211c2ljLm15c3BhY2 UuY29t&t=wz7NYVvdN1sD5sZn5jwqhteIJEBAWtU7cGxSvblOZr59VYuvhFOEuaUs29mG1lCNKsOUiB4 00Vl6iAOogScxHQ==&u=LTE=&a=0&d=MTc4MzA0MTgxXjExODc3NDE1MjU=" quality=high bgcolor=#FFFFFF width="450" height="345" name="mp3player" align=""type="application/x-shockwave-flash" FlashVars="culture=nl-NL"pluginspage="http://www.macromedia.com/go/getflashplay er"> </embed>
    when i'm editing iWeb, the player shows up and plays the music and everything is fine! but when i publish the site, it says "Movie not loaded" when you click on it.
    the site i'm currently working on is still being worked on, but i made an extra page to show whoever could help me. the link is:
    http://web.me.com/henreegee/IamTokyo/Blank.html

    That method can be done using iFrame code in an HTML snippet. You need to upload the Family Matters - Computer.m4v file to your server and link to it there via an HTML snippet and iFrame code. An example is in this demo page along with the code: QT movies via iFrame.
    There are other ways to add the movie (the full one Family Matters - Computer.m4v.
    One is to upload the file to your server and linking to it as shown in this demo page: Opening Item in a New, Precisely Sized Window.
    The method you posted is explained in this tutorial: Old Toad's Tutorial #18 - Adding Movie/Video File to iWeb Page via Export for Web in Quicktime Player. To see the edits click on the buttons in steps 5a and 5b.
    OT

  • I am trying to publish a web site using my own domain. How do I transfer my host to mac from another server?

    I am trying to publish a web site using my own domain. How do I transfer my host to mac from another server?

    I've created a CNAME entry to redirect the domain to apple but the site is still not live! Can anyone help please?
    Did you also do what is required in the .Mac account settings?
    http://help.apple.com/mac2/1/help/member/pgs2/memfmsetgen367.html
    Could you provide your urls?

  • How to integrate Oracle BI Publisher via Web Services in Oracle Forms.

    hi
    I hope you fine and happy. I think you hear about the new reporting tool (Oracle BI Publisher).
    Really it is a great tool. I need someone help me; How I can integrate Oracle BI Publisher via Web Services in Oracle Forms.
    I got the guidelines of this integration process from ORACLE.
    But, when I compile the script of publicreportserviceclient.callRunReport - the script running the report -, I get some errors in PL/SQL compiler
    http://www.oracle.com/technology/products/xml-publisher/index.html

    ==========================
    PL/SQL CODE:
    ==========================
    DECLARE
         RAISEDEXCEPTION ORA_JAVA.JOBJECT;
    REPORT_PATH VARCHAR2(200);
    PARAM_NAME VARCHAR2(200);
    PARAM_VALUE VARCHAR2(200);
    UN VARCHAR2(200);
    PW VARCHAR2(200);
    FORMAT VARCHAR2(200);
    TEMPLATE VARCHAR2(200);
    OUT_FILE VARCHAR2(200);
    OBJ ORA_JAVA.JOBJECT;
    BEGIN
    OBJ := PUBLICREPORTSERVICECLIENT.NEW();
    REPORT_PATH := '/LEARN/EMPLOYEES/EMPLOYEES.XDO';
    PARAM_NAME := 'P_DEPTNO';
    PARAM_VALUE := '50';
    UN := 'Administrator';
    PW := 'Administrator';
    FORMAT := 'PDF';
    TEMPLATE := 'Simple';
    OUT_FILE := 'C:\DevSuiteHome_1\j2ee\home\default-web-app\' || 'TEST';
    --PUBLICREPORTSERVICECLIENT.CALLRUNREPORT(OBJ,:REPORT_PATH,PARAM_NAME,:PARAM_VALUE,UN,PW,:FORMAT,:TEMPLATE,OUT_FILE);
    PublicReportServiceClient.callRunReport( REPORT_PATH,
    PARAM_NAME,
    PARAM_VALUE,
    UN,
    PW,
    FORMAT,
    TEMPLATE,
    OUT_FILE);
    WEB.SHOW_DOCUMENT('HTTP://127.0.0.1:8889/j2ee/' || 'TEST');
    END;
    ==========================
    JAVA CODE FOR callRunReport FUNCTION:
    ==========================
    public void callRunReport (String reportPath, String[] paramName, String[] paramValue, String
    username, String password, String format, String template, String outFile)
    try {
    bip_webservice.proxy.PublicReportServiceClient myPort =
    new bip_webservice.proxy.PublicReportServiceClient();
    // Calling runReport
    ReportRequest repRequest = new ReportRequest();
    repRequest.setReportAbsolutePath(reportPath);
    repRequest.setAttributeTemplate(template);
    repRequest.setAttributeFormat(format);
    repRequest.setAttributeLocale("en-US");
    repRequest.setSizeOfDataChunkDownload(-1);
    if (paramName != null)
    ParamNameValue[] paramNameValue = new ParamNameValue[paramName.length];
    String[] values = null;
    for (int i=0; i<paramName.length; i++)
    paramNameValue[i] = new ParamNameValue();
    paramNameValue.setName(paramName[i]);
    values = new String[1];
    values[0] = paramValue[i];
    paramNameValue[i].setValues(values);
    repRequest.setParameterNameValues(paramNameValue);
    else
    repRequest.setParameterNameValues(null);
    ReportResponse repResponse = new ReportResponse();
    repResponse = myPort.runReport(repRequest,username,password);
    byte[] baReport = repResponse.getReportBytes();
    FileOutputStream fio = new FileOutputStream(outFile);
    fio.write(baReport);
    fio.close();
    } catch (Exception ex) {
    ex.printStackTrace();

  • Publish Error - An error occurred while publishing file "/Web/Sites/iWeb/X"

    Hello everyone,
    I've been using mac for about 10 years now and have finally decided to try out this iWeb application. Spent several hours putting the site together... fun... but when I hit the publish button, the following error popped up.
    Publish Error
    An error occurred while publishing file "/Web/Sites/iWeb/X". (X being my site name which also happens to be my .mac account name.
    So I've spent another 3 hours trying it over and over again but still no luck. So I've searched this forum and see if there's any tips. Found a lot of solutions but none of them seem to help. I've deleted all the folders and file on my 'Sites' folder on the iDisk. Closed all running apps before hitting the 'Publish' button. And I've even deleted all my work and tried just to upload the 'welcome' page. Still doesn't work.
    I'm getting a bit annoyed... Are there any solutions for my problem??
    I'm using a PowerBook G4 12" 1.33GHz Mac OS X 10.4.9 with iWeb 1.1.2
    Any help will be greatly appreciated! Thanks in advance!!
     88kin 
     PowerBook G4 12" 1.33GHz   Mac OS X (10.4.9)  

    Probably not. No big deal, really. The important thing is we have been able to get your site on the .Mac server, albeit in the homepage directory.
    Ok here's your last assignment. This will also take awhile, but when you are finished your site will be up on .Mac and accessible using the web.mac.com/username/iWeb/sitename url.
    Since you have already initiated a publish to .Mac from iWeb, the root directory for iWeb should be on your iDisk. You should be able to navigate to the iWeb folder following this path:
    Go/iDisk/MyiDisk/Web/Sites/iWeb/SiteFolder
    "SiteFolder" should be a folder named for the site you are having trouble publishing.
    On your desktop, open the Site folder that iWeb delivered when you published the original site using the Publish to a Folder... command. You will see a number of folders in there and a number of page.html files. Drag each of these into the Site Folder mentioned earlier, on the iDisk. (The one named for the site). The root index.html file, (the one published outside of the Site folder) needs to be placed in the Web/Sites folder; you should see it in the column above the iWeb folder when done. Basically, you are "manually" uploading your site. It's cumbersome and a royal pita, but if successful, this exercise will confirm what I have suspected all along:
    The problem is a latency/time-out error. (The actual error message itself is misleading and somewhat immaterial--iWeb probably chose it randomly). Lots of things contribute to it, but basically, iWeb gets tired of waiting on the WebDav protocol and then generates an error message. I wish I could be more specific, but that's about as close as I can get to the core issue. Many folks publish successfully from your area of the world; just keep trying, and when all else fails, you can always swap out the changed files manually following the method outlined above.

  • Losing Mouse "hand" over buttons when publish for Web.

    Hi,
    I'm new to Flash. I'm publishing a web-site and I lose the "Hand" icon for the mouse over buttons after I publish and run the HTML=>Swf files from the Browser. When I "Test the movie" from flash I see the "Hand" over buttons just fine.
    Is there a publish setting that I'm missing which allows the hand to remain?
    Please help.
    Thanks,
    Jeff

    Hi, Had to work yesterday.
    At the moment I'm running/testing locally  (which may be the problem) from a flash secure directory on my desktop. So no link sorry.
    I think I need to look into setting up a test service with Yahoo or something. Any suggestions? I'm not really sure how to upload my completed website (.html and .swf files) to a service. That's a different topic/question. Any help along those lines is greatly appreciated.
    Anyway, I'm using safari 5.1.7 on my IMac. and Safari 6.0.3 on my Mac Pro. and Firefox 21.0 (primarily) or Internel Explorer (rarely) on my "windows" laptop.    The "Hand" works on all of these (files local to the respective computer) except the IMAC Safari 5.1.7 flash player 12.0 combination, which was my first test environment scenerio.
    I'm planning to do two things.
    1) Update my IMAC to Safari 6.0.
    2) Set up a test area with a service provider. This in itself may resolve the issue for the Safari 5.1.7. At least I'll be testing in a "real world" environment.
    So, thank you for your help with this. I think we can call it solved. If my testing on a true server shows the same results then I may shoot out another question. I think it is a nice goal to have our web site creations run on all platforms and browser comibations but is that realistic? If we test on as many combinations of the most recent software releases as we can with reasonable success what more can we do? I'd like to hear you opinion. Feel free to sent me an email.
    Would you like me to open a new question/discussion regarding the help finding and uploading files to a service provider?
    Thanks again,
    Jeff

  • Publishing static web reports

    Hi experts!!!
    I need to publish static web reports...with my understanding...I guess I have to do like this...Can anyone guide  in correct way if its wrong...
    First design query in Query designer...then go to WAD and design your template with appropriate web items having this query as Data Provider...now save your template....how to proceed from here to publish static web reports in companys intranet...I searched internet but couldnot find appropriate links....
    Rgds,
    P Olin.

    Create a broadcast setting for your web template and use HTML as output type for broadcast setting. Lookup help on broadcasting.

  • Digital Publishing Suite Help | Creating HTML articles for DPS

    This question was posted in response to the following article: http://helpx.adobe.com/digital-publishing-suite/help/import-html-articles.html

    Hi
    I believe that the issue is that the HTML article will automatically start outside of your control, which is expected with HTML articles unless you code some kind of starting mechanism that responds to some reader action (tap a button, swipe somewhere, etc). To answer your other question, though, you can indeed use inDesign and control when the ad will start.
    In InDesign, you can set the delay to .125 for a Web Content overlay and it will then "fire" when it first comes into the reader's view. If you set it to zero (the default, by the way), then it will "fire" as soon as the article loads, which may not be when you expect, since DPS will preload adjacent articles in order to improve the reading experience. You can, therefore, put your HTML/jquery ad into a folder with an index.html file to drive it and then make a Web Content overlay in InDesign that points at the index.html file for your ad. Set the overlay to autoplay, and set the delay to .125 seconds. This way, your ad will always start when your reader swipes to view it. It also allows you to put the ad as an interstitial deeper in an article, and you can ensure it starts when the reader views it and not before.
    There is a cavet here, which is that the article will take some time to load, depending on the complexity of your HTML. As a result, your reader may see a spinning wheel on the screen instead of your ad while the ad begins to load. You should be sure to put a poster frame there that perhaps is a screen shot of the first frame of your animation. That way, when the ad loads, it will already have the first frame ready to go and will replace the first frame with the animation.

  • How to to publish php web application with Mysql as database in sharepoint server 2013

    I Have done a PHP web Application which uses html, css,javascript, php, mysql, ajax. now i want to publish this web application in my sharepoint server 2013. I want this site in my company intranet. How can i do this? 

    You can host that site in web server. 
    Use SharePoint page viewer webpart to show content from your PHP site on sharepoint page
    http://office.microsoft.com/en-in/sharepoint-server-help/page-viewer-web-part-HA010024045.aspx
    http://office.microsoft.com/en-in/sharepoint-foundation-help/display-a-web-page-on-a-sharepoint-page-by-adding-the-page-viewer-web-part-HA101857182.aspx

  • Cannot publish to web gallery

    I have a dotmac account and the newest iPhoto '08 fully updated
    I cannot publish using web gallery
    whenever I try to, I get this error message
    "An error occurred while publishing the album "albumname." this is not a valid location for this request.
    my dotmac account is programmed into my computer and working just fine in every other way. what's going on here?
    help! thank you

    David:
    How long has this gone on? Have you been able to publish successfully previously? Apple has been having problems with their servers for the last several days. My publishing efforts from iWeb and iPhoto have been sporadic, good one moment and bad a short time later only to get good again. Be sure to post your problem to the .Mac and iPhoto feedback sites:
    http://www.apple.com/feedback/iphoto.html
    http://www.apple.com/feedback/mac/tm.html
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Digital Publishing Suite Web Viewer

    I saw this demo (http://stage.adobepublish.com/s/f72c05c4-8e54-4ea6-a633-aeb5b8738511/6-monaco.html) for the Digital Publishing Suite Web Viewer and I'm trying to figure out how to get my folio to display like in this demo?

    Please refer to belows:
    http://helpx.adobe.com/digital-publishing-suite/kb/setting-dps-app-social-networking.html
    http://help.adobe.com/en_US/digitalpubsuite/using/WS67cb9e293e2f1f60-12e05bfc12f6c86d767-7 ffe.html
    1st: The folio's Ptotect Off at Folio Producer (DPS Dashboard)
    2nd: Publish or Update the folio
    3rd: Mail button at the folio protect-off on Viewer app.
    4th: The Web view Link is showed in the mail message.
    I hope this helps you.
    shimoawazu

  • Publish a web-viewable password-protected calendar?

    Is there any way to publish a web-viewable password-protected calendar?
    There is info here about publishing to your iDisk w/ password protection:
    http://docs.info.apple.com/article.html?artnum=61725
    But I need something that doesn't require iCal to access! For instance something that I could access via a web browser on a public computer, and would have to input a password to access.
    Is this possible, or is this a missing functionality?

    Hi UniAce, apparently in one of the recent versions of iCal you can now publish your ICS file (from iCal 'publish' command) onto a private server that is not WebDav... which was the requirement in the past.
    View your iCalendar on the web
    Here is a link to a program called PHP iCalendar that basically uses your ICS file that you've 'published' via iCal and makes it into a viewable HTML calendar.
    My problem with it
    I don't have .Mac and haven't tried it with that, but even though the program works great after a bit of installation (you should be comfortable with HTML editing to use PHP iCalendar, but not necessarily PHP) I could not get iCal to export my ICS file properly – it appeasr to upload properly in iCal, but then the file is 0 bytes on the server which is, in turn, making PHP iCalendar have a problem viewing it.
    How I got around it
    I ended up finding the 'resource' file that had my calendar and setup an automator action that locates that file, copies it to a location on my hard drive, renames it then 'opens' it with a Transmit droplet, which uploads it where I want it.
    Hope this helps, let me know if it's something that may work for you.
    12 PB G4, 1.33Ghz, 1.25 RAM   Mac OS X (10.4.6)  

  • Problem when i publish my web site with muse

    i have an erreur inconnu when i want to wruite my pass word
    i had changed my adobe ID
    it is reconise by BC

    Yes i had restart Muse and my mac. I have no more message than a red hexagon with an exclamation point and the message : "erreur inconnue" no number nothing more.
    Best regards
    Le 8 mai 2014 à 16:24, Aishvarya Raj Rastogi <[email protected]> a écrit :
    I can't publish my web site with Muse because of an "error inconnu . I have my ID Adobe and my pass word. But i have an error message " erreur inconnu" Business catalyst tell me that my ID and pass word are ok. so wath ?
    created by Aishvarya Raj Rastogi in Help with using Adobe Muse CC - View the full discussion
    Hi,
    Have you tried restarting Muse and your computer? If not, please try it. If you still face the problem, please provide us the complete error message and we'll look into it.
    Regards,
    Aish
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6365165#6365165
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • 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.

  • Error while trying to publish a web service in UDDI client

    hi
      i m getting this error when trying to publish my web service in UDDI client.I have
    configured my uddi client using Visual Administrator.I created a  local test registry.The name of my  registry is QuickCarRentalRegistry_Local.I created this at admin level.I also tried at level 1 Tier.But it was giving the same error.
    The error is "<b> Internet Explorer Script Error</b>".my ie version is 7.0
    In my alert window it displays error: 'ur_txt' is undefined.
    Regards
    mythri.

    Hi mythri.
    Did you find a way out of this error? Could you share the solution with me? Because I am facing a problem that looks just like the one you had.
    Thanks in advance.
    Renan

Maybe you are looking for

  • Network shared variables lose binding

    Hello, I am developing an application in LabVIEW that uses network shared variables to transmit data between two PC's on the same subnet. The shared variables work fine when running the VI's in development mode, however, when i build the vi's into an

  • I can't get uupdates for Photo Shop Elements 9.  The answer is "not available now, try again later".  Very frustrating.

    Why can't I get updates for Photo Shop Elements 9?  All I get is "not available now, try again later".  Very frustrating.

  • Wi-fi access in Canada

    I am Australian and going to Canada. Hoping to take my MacBook and connect to wi-fi services there. Do I need to set anything up on the computer before I go. It has built in AirPort Extreme (802.11n). Can I just go and click safari when there and up

  • Find Supply Demand Form Left Mouse Button Behavior

    Release 11.5.10.2, 10G database. A customer has a strange mouse behaviour issue In the ASCP -> Supply/Demand form that the began after installing Demantra. The mouse cursor is returning to the original location that it was just before the user attemp

  • MIRO planned delivery cost and document reference

    Hi I create  a purchase order with one position including the planned delivery  with flag  Indicator: GR-Based Invoice Verification. OK I create the good receive with reference to purchase order: in Migo I update field xblnr Number of External Delive