Getting my blog posts from IWeb interfaced with Facebook

How do I get my blog posts, created on IWeb, and through Networked Blogs to sync with my Facebook page? I cant seem to get the individual posts available to post in my Facebook status bar. No posts from blog are visible...any ideas?

i have the same problem. and i also want to add a share button on every post so people can share it through their status on facebook. do you know how to do it? anyone?

Similar Messages

  • How do I move my blog posts from iWeb to Wordpress?

    I want to move all my blog posts from iWeb to Wordpress. Is that possible and how?

    Depending on how many posts you have, it may be best to copy and paste them into Wordpress. I don't know for sure, but I dought if there is any process that will do that automatically for you. I would have your iWeb blog (edit Mode) window open and then Create a new blog in Wordpress. Copy the iWeb title/paste into Wordpress - Copy the iWeb blog text/paste into Wordpress. It should go fast once you get the first one done because you'll do the same for all.  Hope that helps.

  • Automate iWeb Blog Posts from Mail

    Would it possible to use Automator to fetch text from an email with a keyword or from a certain sender that would then be put into a blog post in iWeb? I know that there is an "iWeb Action Pack" for Automator that gives it similar functionality when adding pictures or movies.
    I ask because I'm looking to be able to post blog entries from a Windows computer at on the go or elsewhere. Does that seem feasible? If not, why not? If so, would you please suggest a reference I could use?
    Thanks in advance!

    i have the same problem. and i also want to add a share button on every post so people can share it through their status on facebook. do you know how to do it? anyone?

  • How to post multiple images in one blog post using iweb

    Hi
    I would like to post multiple images in a single blog post. When ever I add a second or third image in the "entry" section of iweb, it does not show up in the blog post on the homepage of the blog. does anyone know if it is even possible to have multiple, separate images in one post, and if so, how.
    Here is a link to my blog: http://www.hoopography.com. You can see how there is only one image. I I want to talk about multiple items, I need to create an image in Pages and put them all together. I would really like to break out of the one box (placeholder) mold. I feel so constrained in iweb right now. I think I have done a lot with my blog, but I am always looking to learn more about iweb and improve my blog. Thanks for any help!!!

    what's the url of your blog? I'd like to check it out. I'm always interested in learning more about iWeb to improve my blogs. Mine are: http://www.hoopography.com and http://www.wnysportscards.com

  • Http post from an application with file attachment

    Hi ! I didn't know where else to post this message...
    I'm trying to make a HTTP POST from an application and upload a file with it. I have no problems with the posting, just that I haven't got any ideas how to get the file uploaded as well. I've been reading loads of examples regarding the topic, and searching older posts the forum here, without any help.
    Here's the method i'm using:
                   // open connections
                  URL url = new URL ("TheURL");
                   URLConnection urlConn = url.openConnection();
                              // We do input & output, without caching
                   urlConn.setDoInput (true);
                   urlConn.setDoOutput (true);
                   urlConn.setUseCaches (false);
                              // multipart/form-data because we want to upload a file
                     urlConn.setRequestProperty ("Content-Type", "multipart/form-data");
                  // Open output stream
                     DataOutputStream printout = new DataOutputStream (urlConn.getOutputStream ());
                  // Set the actual content
                     String content = "upfile=" + System.getProperty("user.dir") + "\\file.ext&";
                       content += "other_key-value_pairs";
                  // write the data to stream, and flush it.
                     printout.writeBytes (URLEncoder.encode(content));
                   printout.flush ();
                   printout.close ();
                   // Get the response.
                     DataInputStream input = new DataInputStream (urlConn.getInputStream());
                   FileOutputStream fos=new FileOutputStream("postto.txt");
                   String str;
                     BufferedReader bufr = new BufferedReader(new InputStreamReader(input));
                  // Write response to outputfile
                     while (null != ((str = bufr.readLine()))) {
                         if (str.length() >0) {
                         fos.write(str.getBytes());
                         fos.write(new String("\n").getBytes());
                   input.close ();Now, the response here I get from the url i'm posting to is "Failure, no data-file". I've tried many diff methods of writing the file to the stream, but always get the same result.
    I need to file attached like it would be when using a HTML form's <input type="file">.
    Please help ! This is getting really urgent !

    String content = "upfile=" + System.getProperty("user.dir") + "\\file.ext&";
    content += "other_key-value_pairs";
    printout.writeBytes (URLEncoder.encode(content));
    printout.flush ();
    printout.close ();Actually, what this does is create a request like:
    GET /path/to/file/script.language?upfile=/home/user/file.ext&other=params HTTP/1.1
    Content-Type: multipart/form-data
    -- And other HTTP params --
    The file is not actually appended to the request.
    I really don't know how Java handles the file upload, but you could do it by hand, like so:
    public static void doFileUpload(String url, String filename, Hashtable params) throws IOException {
        // Construct the request
        String boundary = "----------------------mUlTiPaRtBoUnDaRy";
        String request_head = "POST " + url + " HTTP/1.0\r\n" +
                                         "Content-type: multipart/form-data; boundary=" + boundary + "\r\n";
        String request_body = boundary + "\r\n\r\nContent-disposition: form-data; name=\"upload\"" +
                                         "\r\n\r\n";
        BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream(filename)));
        int b = -1;
        while((b = in.read()) != -1) {
             request_body += (char)b;
        in.close();
        Enumeration keys = params.keys();
        while(keys.hasMoreElements()) {
            String key = keys.nextElement();
            requst_body += "\r\n" + boundary + "\r\n\r\nContent-type: form-data; name=\"key\"\r\n" +
                                    (String)params.get(key);
        request_body += "\r\n" + boundary + "--\r\n";
        int length = request_head.length() + request_body.length() + "Content-length: \r\n";
        String req_length = "Content-length: " + (length + new String("" + length).length()) + "\r\n";
        Socket socket = new Socket(url,80);
        PrintStream stream = socket.getOutputStream();
        stream.print(request_head + req_length + req_body);
        // And now an option to read the response, I will omit that...   
    }Note: I have not tested this code, just wrote it up out of memory. If it does not work, it will propably need some small fixes.
    Tuomas Rinta

  • How to get the file name from downloads folder with the applescript??

    Hi All..
    I am downloading an application to downloads folder, I need to install the same application after downloading programatically.
    So how do I get the filename in runtime while downloading or after downloading from downloads folder with Applescript or Java?
    Also my download URL link doesnot contain full name of the download file.
    Pls suggest.

    Hi,
    The best method is to use curl.
    Other methods are not reliable, but can work, it depends on several factors (what the script does, what the user does).
    Here is an example with the curl command:
    set tUrl to "http://sourceforge.net/projects/vlc/files/2.0.4/macosx/vlc-2.0.4.dmg/download?ac cel_key=60%3A1350656196%3Ahttp%253A//www.videolan.org/vlc/download-macosx.html%3 A7233e4e9%245818d66f39b0576e1e9c4a0f3b46b1991180bfdd&click_id=976a88ee-19f7-11e2 -9a21-0200ac1d1d8e&source=accel"
    set dFolder to path to downloads folder
    tell application "Finder" to set newFolder to (make new folder at dFolder) as string
    set f to quoted form of POSIX path of newFolder
    do shell script "cd " & f & " && curl -L " & tUrl & " -o 'vlc.dmg'" -- download  to file "vlc.dmg"
    set downloadedFile to newFolder & "vlc.dmg" --<-- HFS path
    --do something with the downloadedFile

  • New Blog Post: Saving Current Values with Cascading LOVs

    All,
    Just blogged on Saving Current Values with Cascading LOVs: http://bit.ly/hQPUPi
    Enjoy!
    Regards,
    Dan

    Monty,
    Glad to hear it's working for you.
    Oh, you just had to go there ;) Popup LOVs are a bit more difficult because the values are not automatically brought back to the page for you. I've already worked out how this could be implemented in my head - but writing it up, of course, is more of an effort. I've added it to my list of blog articles to write on. Since it's not a requirement right now, I'll cover another topic first and come back to that one afterward.
    Regards,
    Dan
    Blog: http://DanielMcGhan.us/
    Work: http://SkillBuilders.com/apex/

  • How to get the SSO user from PL/SQL with Windows native authen

    I connect to a 10g daabase using SSO through Windows Native Authentication wher the OID user mapps to a single Database user.
    I need to get the SSO user from pl/sql
    My fornt end is Portal & Forms

    Hmm, I see.
    Well your problem boils down to being in the database and needing to have access to web environment variables. The SSO sets specific variables in the environment but your stored procedure is not privy to them.
    Now having said that, note that the mod_plsql Web Toolkit has a utility for accessing cgi variables. For instance,
    owa_util.get_cgi_env('Osso-User-Dn')
    If your web application cannot capture the SSO info and pass it to the stored proc in a parameter, OWA may be the only way.
    Check out the Single Sign-On Developers Guide, specifically the part about developing statically protected PLSQL applications.
    Hope this helps.
    regards,
    tt

  • When I click on my gmail to get a wall post from FB I get this message..SERVER NOT FOUND FIREFOX CAN'T FIND SERVER AT permalink.php . PLS help me fix this. Thanks Firefox can't find the server at permalink.php.

    ''''''When I click on my gmail to get a wall post I get this message ...Server not found Firefox can't find the server at permalink.php. PLEASE HELP ME FIX THIS! I just updated to firefox 6.0. THANK YOU

    Try resetting your proxy server. Go to Tools, Options, Advanced, Settings and select one. I must do this every time I restart Firefox -- but at least after that, I'm okay until the next restart.

  • Can't get the little post sheet for twitter and facebook in the notification center

    I used to post from my notification bar but now they down open when i click on them, both facebook and twitter post.
    Tried logging out and changing the share widget button in setting>notification.
    Working on MBP 2012 OS X 10.8.4

    I am facing the similar issues on my OSX 10.8.4, I have tried to delete and add the FB and twitter account back, but no luck. I also went to activity monitor and quit the notification, still no go. Looks like a bug issue. Any one aware of the fix, pls help. I really do not want to reinstall the OS.

  • Can you help me get this blog posted on ALL possible parts of the website? Please read.

    DUAL SIMM CARD CAPABILITY and WORLDFONE QUAD-BAND CAPABILITY.  This is the crux of the biscuit (as Frank Zappa once said).  Multiple SIMM-card quad-band world-phones (2 or more SIMM cards per phone AND cover the North American and Pan-Asian GSM bands) are what ALL the manufacturers (RIM, Apple, Nokia, Ericson, Motorola, etc.) PURPOSELY FAIL TO ADDRESS because they are under pressure from the service providers (AT&T, Verizon, etc, etc.) NOT TO OFFER THESE IN THE NORTH AMERICAN MARKET.  The reason is twofold.  First, for a phone to hold multiple SIMM chips simultaneously, it must inherently be UNLOCKED (where SIMM cards from any multiple providers can be inserted into the same phone simultaneously).  Second, the big service providers don't mind you having a quad-band worldphone, as long as they can bill you BIG $ for international roaming in foreign countries, they cannot milk you like this if you have a local SIMM card installed for that foreign country (ie: use the foreign SIMM card telephone number when making or receiving calls overseas in that particular country).  ALL THESE PHONE MANUFACTURERS ARE SOMEHOW IN THE POCKETS OF THE CELLULAR PROVIDERS NOT TO OFFER MULTIPLE SIMM-CARD CAPABLE WORLDBAND PHONES WITHIN THE NORTH AMERICAN MARKET.  There is a Chinese company called Jing Cheng that introduced the first integrated Dual SIMM chip worldband phone (model # JC 666s).  These were not internet or e-mail capable, but showed the western world what this is all about.  Thank our cellular providers AND our phone manufacturers for keeping the wool pulled over our eyes in North America.  Such dual SIMM card worldband phones have been available for YEARS in Germany, Australia, China, Japan, etc.  IT'S TIME ALL THE PHONE MANUFACTURERS UNDRESS AND SHOW WHOM THEY REALLY HAVE LOYALTY TO (the cellular providers OR their customers).
    Removed personal information to comply with Community Guidelines and Terms and Conditions of Use.

    I quite simply don't know where to begin.   I guess at the beginning would be best.  This Community Support Forum is as the name implies, a forum for user to user support.  It is not a blogging site.  I imagine you made an error and thought you were posting to such a site of which you belong and post your blogs to.
    As this is a forum I can only surmise that this is not a blog or a post to assist/support another member but rather a misguided rant.
    I am now on my second Blackberry, both of which had a worldwide capability.  My first was the Blackberry Storm 9530, the Storm 1.  My current Blackberry is the 9550, the Storm 2.  Both were locked to my carrier (Verizon).  In anticipation of a trip abroad I had the 9530 unlocked by Verizon in order to avail myself of local SIMM cards during my travels.  A hospitalization has delayed the trip but prior to departure, Verizon will unlock my 9550.  There are any number of sites that will, for a fee, provide an unlock code for you.  Pay your money and take your chances.  Make sure you choose wisely.
    Carriers are generally willing to do this for customers in good standing.  This, of course, begs the question of why a Blackberry (or any device) is locked to a specific carrier.  I do not know of anyone, who has paid full price for their phone Smart or otherwise.  Most device purchases are at steep discounts or rebates predicated on a contractual term of service with the retailer (carrier).  This how they recoup the cost of the discount.  Having the phone locked prevents someone from availing themselves of a heavily discounted device at a carrier's expense and immediately jumping ship to another carrier.  That lock combined with an Early Termination Fee "ETF" is what keeps the latest and greatest devices affordable for the vast majority of us.  It is not the best system but it works.
    A dual SIMM capability on a phone with neither email or Internet access is well, quaint.  It is for lack of a better term, a phone.  I am not surprised given the Peoples Republic of China's support of freedom of information, that they have such a restricted device.  I want every bell and whistle that RIM can put on their product and with the 9550, that is what I have.
    There is no grand conspiracy between the manufacturers and the carriers.  Perhaps, you might want to start a telecommunications industry conspiracy blog.  Perhaps you could use that wonderful Dual SIMM Chinese device to make posts to it.  Oh, that's right, no Internet access on it.
    Наглый пес! Вы должны быть благодарны мы даем Вам возможность проживать в нашем мире!
    BB 9550 Verizon OS 5.0.0.1015 My Storm My Blackberry My Lifeline
    If there is a Theme on my Blackberry, Hedone it!
    If someone successfully helped you with an issue, say thank you by clicking "kudos" in their post and clicking the star.
    Antiquis temporibus, nati tibi similes in rupibus ventosissimis exponebantur ad necem
    If your issue has been solved, please mark the post that solved it for you!

  • How do you import blog posts to iWeb?

    I have a blog hosted at another site--lots of posts and comments. Does anyone know how to import all that into iWeb? I can export an XML file from my old blog site, but can't find a way to import into iWeb.

    That's because you can't do it. iWeb is not an html editor, so cannot import anything.

  • I want to re-install my Pre-Installed Lion Macbook Pro, but I can't get the Lion OS from App Store with my Apple ID. Please help, thanks!

    Hi, I want to do a clean re-installation of my end 2011 Macbook Pro which comes with pre-installed Lion OS. I go through the installation steps and after App Store verified my Apple ID, it prompted me that I did not purchase the Lion OS. I am very surprise to see this message which my pre-installed Lion Macbook Pro should have it. Please help and advise how can I get the OS? All other bundle softwares were in the purchase record except the Lion OS.

    That was my mistake - sorry - it IS Command-R to boot to the Recovery disk, not Command-D: I either just hit the wrong key or am just now coming awake from my nap.
    Let me see if I can just explain it in a few steps - I don't know of any link (but it would make a good User Tip):
    Create an up-to-the minute back-up of your internal hard drive using an external hard drive and Time Machine.
    Boot to your recovery partion - holding down Command-R on boot.
    Use Disk Utility to erase Macintosh HD - use one GUID partition and format as "Mac OS Extended (Journaled)". Unless you're selling the machine, there's no need to do a secure erase (which can take hours).
    After you erase the disk, re-install Lion from the same Recovery partition.
    After installation is complete, reboot, again holding down the Command-R keys to boot into the Recovery Partition.
    Restore your Time Machine back-up. This could take several hours.
    Reboot after restore and you're back in business.
    That should take care of everything - all you need is an Internet connection.
    Call back if I didn't explain things too well - at least I got the Command-R right this time!
    Clinton

  • How: can i get a specificated item from a list with more than 100.000 items

    Hi,
    i have a very large list and i got always an exception that the list has more than 5000 items and cant query!! But in the default list view i can see, order and filter all items. So how can i do this by c#?

    Hi,
    According to your description, my understanding is that you want to get a specific list item form a list which with more than 100000 items using C#.
    I suggest you can use CAML Query with some condition and set Row Limit to specify the number of items to return.
    Here is a detailed code demo for your reference:
    Client Object Model Access Large Lists/Overcome ListView Threshold while accessing large list
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How do I get the correct sound from auxiliary speakers with ipad2

    I cannot seem to get the sound correct when connecting my ipad2 to auxiliary speakers. Everything else works fine with the same speakers. Any ideas?

    If you are looking for EQ settings for the iPod app, go into the Settings app and select iPod>EQ and this will provide some presets. There is not an overall sound control mechanism though.

Maybe you are looking for

  • Regarding new bank to be created for new office ...check printing issue...

    dear all.. i need to create bank for our new office say BARODA office for check printing purpose. our comp. has allready configured for mumbai and main office bank... but i dont know the full cycle.. can anybody tell me the process to implement the s

  • Lock user ID which are kept idle for more than 30 mints.

    Dear All, My requirement is as follows.I need one batch job to lock all user IDs in producrtion system if the user Id is kept idle for more than 30 mints. Can you pls let me know how I can do it and under which tables the user Ids are stored and is t

  • Question in regard to appleid security question

    Is there a link that goes directly to changing appleid security questions? Please post the URL that pertains to this questions

  • Why is pre-paid cheaper then being on a contract

    So I have been with Verizon for over 10 years(but they say i have only been with them for 6 years), when I got my first phone it was under the name Airtouch..... now fast forward to now I am still with Verizon but i have tell the end of the month to

  • Copy pasting rows in isync-d files goes wrong

    I think I have hit an ugly bug... Here is the scenario: - I take/create a sheet on numbers on my Mac (running Mountain Lion with Numbers '09, version 2.3 (554)) - I save this in iCloud, syncing with numbers on my iPad (iPad mini, running the latest v