Help with iWeb for reader comments.

How do I create a place for reader comment/blogs on my site? I use iWeb.

If you're hosting your iWeb blog on a non-MobileMe server you'll lose the following features:
Features Unavailable When Publishing to a 3rd Party Server:
◼ Password protection
◼ Blog and photo comments
◼ Blog search
◼ Hit counter
Currently if the site is published directly from iWeb to the 3rd party server the RSS feed and slideshow subscription features will work. However, if the site is first published to a folder on the hard drive and then uploaded to the sever with a 3rd party FTP client those two feature will be broken.
You can add 3rd party commenting to your iWeb blog with one of these; DISQUS,  IntenseDebate or  Echo. Or, if you're just starting out with a new blog use one of the established blogging sites and embed it into one of your iWeb pages as in this demo page: Embed a Site Within an iWeb Page
OT

Similar Messages

  • Help with method for reading coeffecients.

    I am fairly new to Java programming and I was asked by my instructor to wright a program that calculates the quadratic formula via a loop. So far i have the following code:
       // Constructor obtains the number of equations as a parameter
       Quadratic2(int limit) throws IOException {  // Constructor
          // All computations are performed in a loop
          for (int count=0; count<limit; count++) { // setting count to 0, if count is less than limit , then count is incremented by 1
             // Reading the coefficients
             System.out.print("Please enter coefficient a: ");
             double coeffA = Double.parseDouble(inp.readLine());
             System.out.print("Please enter coefficient b: ");
             double coeffB = Double.parseDouble(inp.readLine());
             System.out.print("Please enter coefficient c: ");
             double coeffC = Double.parseDouble(inp.readLine());
             System.out.println();
             double Disc = discr(coeffA, coeffB, coeffC);  // Compute discriminant
             if (Disc >= 0.0) {  // Solution exists
                // Solving the equation
                double root1 = roots(coeffA, coeffB, coeffC, true);
                double root2 = roots(coeffA, coeffB, coeffC, false);
                // Outputting results
                System.out.println("Quadratic equation with the following coefficients:");
                System.out.println("A: " + coeffA + "; B: " + coeffB + "; C: " + coeffC);
                System.out.println("has the following solution:");
                System.out.println("Root1: " + root1 + "; Root2: " + root2);
             else {  // Solution does not exist
                System.out.println("Quadratic equation with the following coefficients:");
                System.out.println("A: " + coeffA + "; B: " + coeffB + "; C: " + coeffC);
                System.out.println("has no solution in the real domain.");
             System.out.println("");
       // A method to compute the discriminant
       double discr(double a, double b, double c) {
          return b*b - 4*a*c;
       // A method to calculate roots
       double roots(double a, double b, double c, boolean which) {
          double Disc = discr(a, b, c);
          if (which) {
             return (-b - Math.sqrt(Disc))/(2*a);
          else {
             return (-b + Math.sqrt(Disc))/(2*a);
       public static void main(String args[]) throws IOException { //Must throw an IO execption
          int noEqs = 1;  // Number of equations
          noEqs = Integer.parseInt(args[0]);  // Passed from command line
          Quadratic2 obj = new Quadratic2(noEqs);
    }I was told to read the coefficients with a method named readCoeffs() but evey time I try to do that I get several errors and as mentioned previously I am new to Java and therefore not able to interpret these errors. As you can see in the above code i read the coeffecients as they are entered but not via a method. I tryed using using the following but to no avail:
      double coeffA = readCoeffs(in);
          double coeffB = readCoeffs(in);
          double coeffC = readCoeffs(in);I was wondering if any of you more experienced programmers are able to show me how or help me write a method to read the coefficients? Any help or advice would be greatly appreciated!

    Sorry I should have been more specific in my question and provided more detail. Anyways i have revised my code to the following:
    //Java Program that Calculates the Quadratic Formula using a loop written by Kris Andrews
    // 10/08/07
    // Intro to Programming/COP 2006
    import java.io.*;//import java library
    class Quadratic2 { //Naming Class
       Quadratic2(int limit) throws IOException {  // Constructor that takes variable as parameter and computes as many times as the value entered
          // All computations are performed in a loop
          for (int i=0; i<limit; i++) { // setting i to 0, if i is less than limit , then i is incremented by 1
       // Declarations necessary to use kbd input //Declaring variable locally
       InputStreamReader inStream = new InputStreamReader(System.in);
       BufferedReader inp = new BufferedReader(inStream);
    // Method to read coefficients
       double readCoeffs() throws IOException {
             System.out.print("Please enter coefficient a: ");
             A = Double.parseDouble(inp.readLine());
             System.out.print("Please enter coefficient b: ");
             B = Double.parseDouble(inp.readLine());
             System.out.print("Please enter coefficient c: ");
             C = Double.parseDouble(inp.readLine());
             System.out.println("");
             return true;
       double Disc = discr(A, B, C);  // Compute discriminant
             if (Disc >= 0.0) {  // Solution exists
                // Solving the equation
                double root1 = roots(A, B, C, true);
                double root2 = roots(A, B, C, false);
                // Outputting results
                System.out.println("Quadratic equation with the following coefficients:");
                System.out.println("A: " + A + "; B: " + B + "; C: " + C);
                System.out.println("has the following solution:");
                System.out.println("Root1: " + root1 + "; Root2: " + root2);
             else {  // Solution does not exist
                System.out.println("Quadratic equation with the following coefficients:");
                System.out.println("A: " + A + "; B: " + B + "; C: " + C);
                System.out.println("has no solution in the real domain.");
             System.out.println("");
       // A method to compute the discriminant
       double discr(double a, double b, double c) {
          return b*b - 4*a*c;
       // A method to calculate roots
       double roots(double a, double b, double c, boolean which) {
          double Disc = discr(a, b, c);
          if (which) {
             return (-b - Math.sqrt(Disc))/(2*a);
          else {
             return (-b + Math.sqrt(Disc))/(2*a);
       public static void main(String args[]) throws IOException { //Must throw an IO execption
          int Equations = 1;  // Number of equations
          Equations = Integer.parseInt(args[0]);  // Passed from command line
          Quadratic2 obj = new Quadratic2(Equations);
    }But I get the following error:
    Quadratic2.java:23: ';' expected
    double readCoeffs() throws IOException {
    ^
    Quadratic2.java:23: not a statement
    double readCoeffs() throws IOException {
    ^
    Quadratic2.java:23: ';' expected
    double readCoeffs() throws IOException {
    ^
    I did not receive this error prior to trying to read the coefficients via a method and what do i need to to correct these errors? Again any help would be appreciated!

  • Help with opening Adobe Reader and downloading updates

    I can not open Adobe .pdf files any longer (this started yesterday, prior to that I could open adobe files).
    When I double click a .pdf file I get this notice on my screen: Windows cannot access the specified device path or file. You may not have the appropriate permission to access file.
    So I went to the Adobe download site to download a new copy of Adobe.  When I start the download I get this on the screen:  The instruction at "0x0e3a0068" referenced memory at "0x0e3a0068."  The memory could not be written.  Then two options are listed: click OK to terminate or cancel to debug.  So I click on cancel and I get this on my screen: Internet Explorer has closed this webpage to help protect your computer.   A malfunctioning or malicious addon has caused I.E. to close this webpage.
    I don't have AVG running, I do have avast but I've disabled it.  I ran Registry Mechanic and an I.E. erasure program but nothing helps.
    I have gone into I.E. and reduced the security level to its lowest state but no joy.
    So, any ideas or suggestions on what's the problem and how to overcome it would be appreciated.  Thanks, in advance, for your reply.  Jim R.

    Hi Mike..tried that as well but no joy.  A friend of mine was looking at it all and noticed that it was an I.E. thing as far as not letting me redownload the reader so I went to Mozilla Firefox and I could download a new version but....whenever I attempt to open a .pdf file I get that message, "Windows can not open the specified device, path or file. You man not have the appropriate permissions to access the item." 
    Damn...this is irritating as I need to get to some of thos files as I need them for a Journal I'm working on as editor-in-chief. 
    It all worked just fine last Saturday but starting Monday when I was on my flight out to D.C.  no joy. 
    Sigh...Jim R.
    Jim R.
    Date: Tue, 1 Dec 2009 14:50:27 -0700
    From: [email protected]
    To: [email protected]
    Subject: Help with opening Adobe Reader and downloading updates
    Under the help menu, there is an option to repair the installation of reader. Did you try that?
    >

  • Help with updates for CS6

    I need help installing latest updates for CS6.  I have Win 7 and have tried updating from the Help - Updates menu.  The error is:  U43M1D207.

    Thanks for your response.  I am in the United States in So. Arizona.
    Date: Fri, 5 Oct 2012 12:21:45 -0600
    From: [email protected]
    To: [email protected]
    Subject: Help with updates for CS6
    Re: Help with updates for CS6 created by Jeff A Wright in Downloading, Installing, Setting Up - View the full discussion
    Crunkle1 you are welcome to work directly with our support team for guided assistance.  If you go to http://www.adobe.com/ and select Help and Contact Us you should be given the option to contact our support team via telephone.  Which country/region are you in?
    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 http://forums.adobe.com/message/4752605#4752605
    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: http://forums.adobe.com/message/4752605#4752605
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4752605#4752605. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Help with iWeb gallery

    Hi all - this is my first post on here but i've used it for help and pointers with iWeb for some time. I'm just creating a website for my design portfolio and would really like to incorporate a gallery like the one that appears at the following link:
    http://www.arizona-software.ch/photopresenter/screenshots.html
    Does anyone know of what this gallery might be called? My knowledge of web design is extremely limited so if someone could let me know their thoughts (phrased 'for dummies') that would be great.
    Many thanks in advance
    Sam

    Yes it does.
    By the way, do you plan to publish to .mac.
    Iphoto galleries do have that option as one of about three, but the user would have to select it.
    If you haven't tired one you might. I think they look quite nice.
    There are several different programs that will accomplish that, but if Iphoto will work for you it would be the easiest as it directly interfaces with Iweb.
    There is a little freebe called "flash album exporter" that is a plug-in for Iphoto that will do exactly what you want, but you would have to manually upload and link it, which is not really a big deal.
    [http://home.comcast.net/~flashalbumexporter/iphoto/iphoto.html]
    The simple viewer option is about the same as what you saw.
    good luck

  • I need help with adobe iv reader.

    iam trying to pin a website using ie.it says the reader cannot read the website,i am not computer saavy so i donot know how to fix this issue, pls help,tyvm.

    i am trying to pin a website in internet explorer to my task bar,i get a 
    message that adobe v1 could not decode the website, i am not computer saavy
    so i  don't know what that means,plus this is a new computer 4 me.plus it
    worked fine  a few days ago. tyvm 4 ur help.
    regards,
    ray nist
    In a message dated 6/11/2013 9:27:11 P.M. Eastern Daylight Time, 
    [email protected] writes:
    Re: i  need help with adobe iv reader.
    created by Pat Willener (http://forums.adobe.com/people/pwillener)  in 
    Adobe Reader - View the full  discussion
    (http://forums.adobe.com/message/5400013#5400013)

  • HOW DO YOU GUYS DEAL WITH APPLE.. SO CONFUSING...NEED HELP WITH SPECS FOR PURCHASE OF IMAC 21.5

    Hi guys, been reading your forums, blogposts, etc and am getting more confused.  I'm just a video girl trying to produce meaningful content through web videos for small to mid sized businesses and want to come over from the dark side. 
    Good news,, I dont need a super giant system,  I do simple editing for web videos, minimal graphics, no motion graphics, no animation etc. currently using CS4, will probably end up with 5.5.
    I want to get imac 21.5 or 27 if i have to..  So here's the question we all have,,, what do I really need besides an Apple fairy godmother to figure this crazy stuff out?????
    I want to be able to have firewire add on, but the rest is what I need help with.   So i've been looking at cs6 specs, even though im not there yet, eventually will be,, so just need to run cs4 now and build from there.  I also want to eventually move to final cut down the road so I want imac able to upgrade to final cut.
    WHAT DO I REALLY NEED MINIMALLY FOR NOW?  WHAT CAN I GET LATER IF i CHOOSE TO DO MORE AND NEED MORE POWER?
    cs6:
    Multicore Intel processor with 64-bit support
    Mac OS X v10.6.8, v10.7, or v10.8**
    4GB of RAM (8GB recommended)
    4GB of available hard-disk space for installation; additional free space required during installation (cannot install on a volume that uses a case-sensitive file system or on removable flash storage devices)
    Additional disk space required for preview files and other working files (10GB recommended)
    1280x900 display
    7200 RPM hard drive (multiple fast disk drives, preferably RAID 0 configured, recommended)
    OpenGL 2.0–capable system
    DVD-ROM drive compatible with dual-layer DVDs (SuperDrive for burning DVDs; Blu-ray burner for creating Blu-ray Disc media)
    QuickTime 7.6.6 software required for QuickTime features
    Optional: Adobe-certified GPU card for GPU-accelerated performance
    Any responses would be great.  I know you guys are busy answering the really high end tech questions

    All the current iMac models (both 21.5" and 27" with OS X Mt. Lion 10.8) will run CS4, 5.5 and 6 just fine.  They will also run Final Cut Pro X just fine.  Ditto for most any application you may want to use.
    Below are some notes (specific to your apparent requirements) that may help you with your purchase decision:
    Notes on purchasing a 21.5" iMac
    All 21.5" iMacs come with 8GB RAM but you cannot add more later.  I strongly suggest getting the maximum RAM (16GB) when you order the iMac.
    The basic hard drive is a 1TB 5400rpm drive.  It will work fine with Adobe CS but you will probably want the added speed of the optional 1TB Fusion drive for better performance. Some people will recommend/argue for one of the optional SSD drives instead, but they are very expensive and still only come in relatively small capacities - I don't recommend the SSD drives.  Get the Fusion drive and spend any extra money on a good external hard drive for backup and/or extra storage instead of an SSD.
    Notes on purchasing a 27" iMac
    All 27" iMacs come with 8GB RAM and you can add more later, up to 32GB
    The basic hard drive is a 1TB 7200rpm drive - it will be fine with Adobe CS.  There are upgrade options to a 3TB 7200rpm drive or a 1TB or 3TB fusion drive - these will be fine also.  There are also SSD drive options, but I do not recommend them. (Same comments as above.)
    Notes on all the current iMacs
    iMacs no longer come with built-in CD/DVD drives.  If you need one, you will need to purchase the Apple Superdrive accessory drive ($79)
    All of the iMac graphic processors (GPU's) are compatible with Adobe CS 4, 5.5, 6
    It is very difficult to impossible to change or upgrade the hard drive later on, so don't buy low-end thinking you can add a better internal hard drive later.
    Be aware that Macs always come with the latest (most recent) version of OS X.  And OS X Mavericks (10.9) is due to be released soon (in the next month or two).  There is no guarantee that the older Adobe CS 4 or 5.5 versions will run on OS X Mavericks.  If you cannot upgrade to CS 6 in the near future, you may want to purchase now rather than after OS X Mavericks is released.
    For what it's worth, I'd recommend the 27" iMac if your budget can afford it.  You will appreciate the larger screen size and added capabilities over the years you will use the computer.

  • Please help with snippet for form.

    I'm building my wedding photography site with iWeb and I want to place a form on there where customers can, via a series of pull down menus, choose various addons to their wedding package which I want to show a running total at the bottom for an instant quote. I would then need to get a copy of this data sent to me.
    What kind of HTML snippet would I need and where could I find one?
    Thanks in advance.

    Thanks Scott, that jot form looks great for a contact form etc. Due to being add free. But it doesn't look like it allows me to add a value to a selection on a drop down menu and a way of adding it up/displaying the total on my site.
    Example id need fields like this;
    "album required"
    The available selections could be:
    "12 x 8" value added to viable running total would be £100
    "14 x 10" value added to viable running total would be £150
    "16 x 12" value added to viable running total would be £200
    Then another field may be:
    "Hi Res CD required?"
    the available selections could be:
    "no thanks!" having a value of £0
    "50 images" having a value of £100
    "all images" having a value of £250
    So if the user chooses "16 x 12" and "all images" the running total on the page would show the user "£450"
    Any help would be greatly appreciated.
    Thanks!

  • Help with iWeb

    I just built my first website with iWeb and am looking for feedback. Can anyone help? Thanks in advance.
    http://www.educatedroofingsystems.com

    Hey there,
    You have some interesting elements, but the site could use a little work on focusing what reaction and response you are trying to get from your visitors. If the site is intended to be a basic, un-intimidating web based business card, then you could call it a success. If you want to engage your potential customers and clients, you might ask yourself how intriguing is the site to serving the questions in the mind of your clientele visitor. On that side of things, I would say the site needs a little something. I suggest you start by going to http://attentionwizard.com, do a free heat map and read through some of their materials about site attention and effectiveness. I am not affiliated with the people at attentionwizard.com, but I fully believe they know what they are talking about.
    If you want to see my work, you can check out:
    http://macroads.com - a simple Apple news site done in iWeb 09
    http://hubprimer.com - a certification quickstart site for HUBzone federal contractors done in Drupal
    http://www.jonesboroughantique.com - done in iWeb 09
    http://antiquesatduckcrossing.com - done in iWeb 09 and PhotoShop/Dreamweaver CS4
    Hope that helps! Just remember that every site is unique, its needs are unique, and the function is specific to the goals of the owner.

  • Help with Quicktime for Windows 7 64-bit

    I am having a problem with the latest version of Quicktime for Windows. When I launch Quicktime and then 'click' on any icon for download I can see the sentence, "Connecting to iTunes" and then I am redirected to download iTunes... Problem is that I already have iTunes.
    Windows 7 Ultimate 64-bit SP1 and up to date.
    iTunes version 11.1.3.8
    Quicktime version 7.74.80.86
    I Unibstalled both products, using the guide provided from Apple. I, then downloaded and installed iTunes first, then I downloaded Quicktime and installed it. I had the same issue. Next, I went to Control Panel/ "programs and Features, used the "change" option and clicked "repair". I did this for both iTunes and Quicktime. They ran fine. No error messages, nothing in event logs, no trace of an install log to try to diagnose this myself. Does anyone have this problem, or can anyone help me to start the diagnosis necessary to solve this?
    Second issue came to light after all of the steps I performed; Before, I would conect my iPhone to a USB port and iTunes would launch automatically. Now, it does not. I see my 4s in devices and I see a normal state using device manager. So, I went to "Default Programs" and selected my 4s and the dropdown window no longer has an option for iTunes. However, when I go to choose a default program for audeo, etc. the dropdown mwnu has an option for iTunes.
    Thanks for reading and I would like some help.
    Doug Shreve

    I found the problem and the solution. In Internet Explorer ver 11 / manage plugin's, make sure that the Apple plugin's are enabled. My setings were incorrect, the plugin ws siabled. Enabled it and all is well!

  • Need Help with Javascript for Acrobat Pro 9

    Hello,
    I am creating a PDF form in Adobe Acrobat Profession 9.  Not having a lot of experience with Javascript, I have found this forum very helpful and have used many of the script examples for other issues I have had.  I was hoping someone could help with the following script, I have tried many variations, cannot get it to work.
    var ratio = this.getField("ratio").value
    var concentration = this.getField("concentration").value
    var result = this.getField("result").value
    if(ratio.value>=50.00)
    {result.value ='PASS';}
    if(ratio.value".value>=40.00)
    {result.value ='PASS';}
    if((concentration.value ==61) && (ratio.value >= 49.25))
    {result.value ='PASS';}
    if((concentration.value ==61) && (ratio.value >= 39.25))
    {result.value ='PASS';}
    if((concentration.value ==62) && (ratio.value >= 48.50))
    {result.value ='PASS';}
    if((concentration.value ==62) && (ratio.value >= 38.50))
    {result.value ='PASS';}
    else
    {result.value = 'FAIL';}
    This is just a piece of the code  The concentration values run from 61 through 99 and the ratio value varies for each concentration value, there is a high ratio and a low ratio.  The result of this field with populate the results field with a PASS or FAIL.  This is not working......any help is greatly appreciated!

    Thanks George.  I updated the script to:
    // Get a reference to the result field
    var ratio = this.getField("ratio");
    // Get a reference to the result field
    var concentration = this.getField("concentration");
    // Get a reference to the result field
    var result = this.getField("result");
    if(ratio.value>=50.00)
    {result.value ='PASS';}
    if(ratio.value >=40.00)
    {result.value ='PASS';}
    if((concentration.value ==61) && (ratio.value >= 49.25))
    {result.value ='PASS';}
    if((concentration.value ==61) && (ratio.value >= 39.25))
    {result.value ='PASS';}
    if((concentration.value ==62) && (ratio.value >= 48.50))
    {result.value ='PASS';}
    if((concentration.value ==62) && (ratio.value >= 38.50))
    {result.value ='PASS';}
    else
    {result.value = 'FAIL';}
    However, I am still getting a FAIL result even when the ratio is 50.00 or equal to the passable ratio.

  • Need help with coding for HTML5 Video with Flash fallback

    Hello, need help with my coding in Dreamweaver CS5.5 for HTML5 video with Flash fallback. Not sure if the coding is correct. Do I need anything else Javascipt etc?

    The reason you see a blank page is because it's trying to load the file that is pretty humungous and there is no preloader. So, you see a white screen till it complets loading.
    Also, the reason why its loading a SWF file and not any of HTML5 type video is because your doctype declaration is XHTML1.0 and not HTML5.
    Change the 1st line in your .html file from:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    to:
    <!DOCTYPE html>
    Then see if your HTML5 video types load with <video> tag.

  • Need help with as3 for popup window

    I am nearing the end of the semester in my Flash Animation class. I have learned very simple AS3 things, code snippets etc. I am trying to find the actionscript for coding a very simple popup window, but have not found a clue.
    Here's what I want to do...I have a white box with some type on the stage. When a person clicks on the white box, I want a popup to open that is larger, that will contain the same type but larger. That box will have an x so it can be dismissed. I don't want to do this in html, only in Flash CS5. I don't want a browser window, I just want a bigger version of the smaller box. I know how to build both boxes, just don't know how to write the code. I know there will be an on-click mouse event listener, and then I am lost.
    Can anyone help with the code I might use? It would be most appreciated.

    It would be something along the lines of... (using instance names relative to your description)...
    popup.visible = false;
    whiteBox.addEventListener(MouseEvent.CLICK, showPopup);
    function showPopup(evt:MouseEvent):void {
         popup.visible = true;
    popup.popupX.addEventListener(MouseEvent.CLICK, hidePopup);
    function hidePopup(evt:MouseEvent):void {
         popup.visible = false;

  • I need help with searching for an image inside another image

    I need to write a program that checks for a specific image (a jpg) inside another, larger, image (a jpg). If so, it returns a value of true. Can anyone help me?
    Winner takes all. First person to solve this gets 10 dukes.
    Please help.

    Hi,
    I would use a full screen image Sequence made with png for transparency and put your article behind. no auto play, stop at first and last image. and information for swipe to display article.

  • Help with iWeb domain

    Hi like many I am suffering from the Iweb problem of being unable to open domain files with iweb.
    I'm using Lion latest version etc..
    Im currently on the road away from my main machine..where my original site is..
    I DO have my Time Machine external drive with me..
    was wondering can i locate the same domain file that i use on my home mac on my time machine external drive?
    any suggestions would be greatly appreciated..
    I did manage to try Domain cracker which opened an older version of my domain but would not save any changes..
    I hope someone can help..
    Its a shame iweb isnt being used by Apple anymore many of the design functions are similar to ibook author and other stuff etc..
    Its easy to use..i dont want to go to wordpress and other web editors are at this time cumbersome..
    anyhow any suggestions on omy question would be greatly appreciated..

    Read this topic :
    Can't Open domain files
    Then locate the domain file in Time Machine.
    Its a shame iweb isnt being used by Apple anymore many of the design functions are similar to ibook author and other stuff etc..
    Yes, a lot of functions are similar. Have been since 1984 with the introduction of Word processing and DTP applications. I consider myself lucky I was around at that time. Now I can apply most of the functions in current day applications.

Maybe you are looking for

  • Multi display options imac

    I take it from the configuration of the new imacs that the option to have a second display running on my imac has disappeared, is there a work around for this?

  • Reader in a new tab (ok), but ina new window...

    Hi,PS: in adobe bugbuse I dont find the correct fiedl to fie a bug. this issue happens with *ALL* pdf files in firefox 32.0.1 (and previous), via acrobat reader plugin (11.0.09 and previous). An example: open this file http://www.medioevogreco.it/pdf

  • Adding photos to n series widget

    is there a way to add photos to the n sereis widget that goes on facebook or other sites, that werent taken on a route, one that were taken and tagged with tthe nokia location tagger, but not using sports tracker Solved! Go to Solution.

  • News page on iweb..

    Hi, I have just recently started using iweb and i wish to use it to help a friend create a small website where he needs to have some sort of news feed on the front page. I have had a look around but i have yet to find any way or widgets that let you

  • Ksh: "read -p" fails with error "no query process"

    I have a korn shell script with the following lines: tail -f /tmp/myfile |& read -p BUFFER ...The second command fails with the following reason: read: no query processFrom the "read" manpage: "The -p option causes the input line to be taken from the