Podcast on external URL, Please help!

Hi All
I have developed a website in iWeb'08, published it to a folder and uploaded it to my own URL. Now what I want to do is add a podcast, but I suspect that this is only possible with .mac! My own hosting company does have php support, so how can integrated the RSS stuff into the site. I imagine I have to get out text edit and do some surgery on the html file, not an issue if I knew what to do or be looking for.
Thanks

Sorry but here is another update. I now have the subscribe button working so that the rss feed functions. This required some editing of html and xml files. The good news a site created with iWeb'08, with a podcast, and rss feeds, hosted on a URL other than .mac can function! All that is missing is the media file, ie the m4v or mp3 file. when I browse to it in I get the QT logo and question mark.
If any one has a work around for this, then please let me know.

Similar Messages

  • Ipod not recognized when using an external hardrive, please help me!

    I have a 4 gig ipod mini, I have been using it for over a year with no problems. recently, my computer will not recognize my ipod when it is plugged in with my external hardrive. I have chosen to keep all of my music on a 100 gig external hardrive, because I have a lot of it. when I plug my ipod into my computer and run Itunes my computer will recognize my ipod, open itunes and then the program will freeze. i can also plug in my external hardrive and when i do my ipod is not recognized by the computer at all. I have tried, numerous scans of both hardrives, multiple updates, new USB cords, I have the most current version of itunes and yet I come to see no results, if you know anything please help me, I don't know what else to do.

    http://docs.info.apple.com/article.html?artnum=93499

  • How to Load External Images - Please Help!

    I have created a simple portfolio site. The buttons I created
    trigger separate frames. Could I not create a MC (Movie Clip) on
    each frame where the images now reside and then when the button is
    clicked (On "Click' Goto frame 1) for e.g. then the image would be
    loaded from an external folder named "Images" in my website?
    I am stumped as to how to set this up. Could someone please
    help me?
    Thanks

    Yes, you can do that. Which version of Flash and which
    version of Actionscript are you using?

  • Creating an Array of external JPGs, please help.

    So what I want to do is load up external JPGs into an Array of MovieClips, and then go to the main onEnterFrame function. My code is below:
    var imageLoader:Loader = new Loader();
    var imageArray:Array = new Array();
    function loadImage():void {
        for (i = 0; i < 9; i++) {
            imageLoader.load(new URLRequest("image" + String(i) + ".jpg"));   
            imageArray[i] = new MovieClip();
            imageArray[i].addChild(imageLoader);
        addEventListener(Event.ENTER_FRAME,onEnterFrame);
    I tried adding an Event.COMPLETE function I found:
    imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
    function imageLoaded(e:Event):void {
         var image:Bitmap = (Bitmap)(e.target.content);
         imageArray[i] = new MovieClip();
         imageArray[i].addChild(image);
    Unfortunately, I usually only ended up with 1 or 0 images, and errors. I can't seem to properly pass the i
    value, so that's a big problem because the order the images go is key to my program.
    Please help me get this working so my image gallery can work, thanks!

    So the problem is that you want them in the array in the same sequence am I right on this?
    See the updated code:
    var imageArray:Array = new Array();
    var imageLoader:Array = new Array();
    function loadImage():void {
        for (i = 0; i < 9; i++) {
            var imageLoader[i] = new Loader();
            imageArray[i] = new MovieClip();
            imageLoader.load(new URLRequest("image" + String(i) + ".jpg"));   
            imageArray[i].addChild(imageLoader[i]);
            //imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
        addEventListener(Event.ENTER_FRAME,onEnterFrame);
    /* function imageLoaded(e:Event):void {
         var image:Bitmap = (Bitmap)(e.target.content);
         imageArray[index].addChild(image);
    In this case you can not track whether an image is loaded or not. It is the most simplest way of doing this. If your images are not coming from dynamic sources and are fixed in number and position you can use this method also.

  • Multi Select Item to be passed in URL ( Please help urgent)

    Hi ,
    I have an item P1_PRODUCT('SOAP','PASTE','BRUSH')  in page 1.
    User selects multiple products and submits and a report is displayed .
    I have an hyper link on one of the column and when user clicks this > target is URL
    and i have passed P1_PRODUCT to page2 using the link
    P2_PRODUCT is hidden item.
    javascript:popUp2('f?p=&APP_ID.:2:&APP_SESSION.:P2_PRODUCT:&P1_PRODUCT.',500,500);
    My problem here is no matter what i do P2_PRODUCT is always set to only one value. not able to pass all three at once.
    Please help...

    It is possible to include commas in item values
    2.5 Understanding URL Syntax
    List of item values used to set session state within a URL. Item values cannot include colons, but can contain commas if enclosed with backslashes. To pass a comma in an item value, enclose the characters with backslashes. For example:
    \123,45\
    But it may be that your item value contains colons.
    There could be workarounds for you, depends on what your issue actually is - I'm not convinced is a delimiter issue, rather timing on session state values. Are you able to produce a demo on apex.oracle.com?

  • Everytime I want to update the latest iTunes or iPhone software I get the following error message "Cannot open the URL" please help?

    I need to update my iTunes and my iPhone 3GS to the latest version and evertimes I click on "update" I get the following error message displayed - "cannot open URL".  I have checked the permissions on my windows firewall and iTunes is not blocked.  PLease can anyone give me some other suggestions as its really frustrating and I want to download ringtones etc but can't do so without the latest software versions of iOS etc.  Please help?  Thank you

    Try temporarily disabling your firewall and antivirus software and try again...
    See here for Connection Issues
    http://support.apple.com/kb/TS1379
    From Here
    http://www.apple.com/support/itunes/troubleshooting/

  • Sending url please help

    Hi. How can I sent responce to server using URL class?
    I do like this:
    URL url = new URL("http://test.com:5430/");
    URLConnection urlConnection = url.openConnection();
    urlConnection.setDoInput(true);
    urlConnection.setUseCaches(false);
    urlConnection.setDoOutput(true);
    urlConnection.setRequestProperty("content-type", "application/x-www-form-urlencoded");
    urlConnection.setRequestProperty("Accept-Language", "th,en-us;q=0.5");
    // send data if it has
    OutputStreamWriter out = new OutputStreamWriter(urlConnection.getOutputStream());
    out.write("?username=xxx&password=xxx");
    but it doesn't work. Please help. Thanks.

    Thanks everybody! I solved this problem. It was more easy than I thought:
    URL url = new URL("http://test.com:5430/?username=xxx");
    URLConnection uc = url.openConnection();
    uc.setDoOutput(true);
    uc.setDoInput(true);
    // Read from Connection
    InputStream in = new BufferedInputStream(uc.getInputStream());
    Reader r = new InputStreamReader(in);
    int c;
    while((c = r.read())!=-1)
         System.out.print((char)c);
    }

  • Disk Images and External Drives - PLEASE HELP

    Hi all,
    I've got to a point where i can't afford to keep buying expensive drives to work form with Final Cut Pro X so decided to just work from several high spec drives and then back them up on other cheaper drives, reformat the high spec ones and start again.
    Not really understanding how disk imaging works I hoped I could carbon copy mountable and read and writeable drives (in this case a thunderbolt lace SSD)  on to a cheaper mass storage, wipe it and start again. I hoped it would then appear on the drives top level just as the drive appears on my desktop, and that I could access it if needed or port it back to a single drive at a later date? Is this possible? Can anyone help? So far everything I've tried has failed.
    One thought I did have was to create several partitions on the cheaper mass drive and duplicate it on to there? But I can't find any help or instruction for this online and need to make sure its write before I go deleting old projects.
    Attached are a picture of what I have (the disk image file) and what I was hoping to create (a mountable replica of a working drive on an external HD)
    Any help greatly appreciated.
    Robin

    You can research the terms disk image and back up for several hours. That might not help.
    None of the back up routines I am aware for for video and large media files use any compression or bundling systems like .dmg. I think your best bet is to make one-to-one copies of your files to your cheap drives. If you need the older projects, you copy them back to your working drives. That's pretty much how it's always been unless you are have a nice NAS RAID with mirroring to another rack of drives.
    The problem with cheap mass storage is no that it's unreliable. It's just not QUITE as reliable as more expensive systems. Having a copy of your work on a disk that might or is likely to fail is almost the same as not having a backup at all. but there is a point of diminishing returns for all of us in this business. This trend toward 4k and 8k, and FCPX's inability to manage media efficiently, means we all must add TB of storage for every project. A friend of mine includes a couple of TB drives in his fees. The client pays for and gets the drives.

  • Hello i have a problem my mac butoos up but cant get to move de curser with the trackpad or external mouse please help

    Hello i have a problem my mac butoos up but cant get to move de curser with the trackpad or external mouse please help

    Try a PRAM reset.
    Instructions here > Resetting the PRAM

  • Problem loading external urls [please..]

    hello guys,
    i am usin this code to run some file and make queries:
    ActionScript Code:
    var req:URLRequest = new URLRequest("http://site.com/z.php?id=" + user_id + "&mana=" + (Round - 1));
    var loader:URLLoader = new URLLoader();
    loader.load(req);
    when i am running the swf file fas ctrl + enter in the flash cs5  it works great!
    but, when i uploading this to my server its not working, or even when i run it from desktop still not working
    (not loading the url so my DB not updating)
    i dont understand why,
    please waiting for your help.

    round is just simple number,
    i am noobie at AS so id did simple game,
    when the user looses his score sends to my server,
    in flash when i am testing it usin ctrl + enter it works great,
    but if i run the swf file from the desktop or web so the game works but its not sending the score..
    here is the full code (little mess):
    stage.addEventListener(KeyboardEvent.KEY_DOWN, boatMove);
    stage.addEventListener(KeyboardEvent.KEY_DOWN, boatMove); 
    playAgain.addEventListener(MouseEvent.CLICK, playmeAgain); 
    var theScore:int = 0; 
    var Round:uint = 1; 
    score_txt.text = String(Round - 1); 
    loseScreen.visible = false; 
    theFinalScore.visible = false; 
    playAgain.visible = false; 
    copyrights.visible = false; 
    var user_id:uint = 0; 
    function loaderComplete(myEvent:Event)
        this.myParams=this.loaderInfo.parameters;
        this.myParamsLoaded=true;
        this.useParams();
    function useParams()
        userid_txt.text=String(this.myParams.userid);
        user_id = Number(this.myParams.userid);
    var myLoaderInfo=new Object();
    myLoaderInfo.myParamsLoaded=false;
    myLoaderInfo.loaderComplete=loaderComplete;
    myLoaderInfo.useParams=useParams; 
    this.loaderInfo.addEventListener(Event.COMPLETE, myLoaderInfo.loaderComplete);
    function playmeAgain(event:MouseEvent):void
    loseScreen.visible = false;
    theFinalScore.visible = false;
    playAgain.visible = false;
    copyrights.visible = false;
    Round = 1;
    theScore = 0;
    addEventListener(Event.ENTER_FRAME, trowEnemy);
            enemy.x = rand(0,stage.stageWidth - enemy.width);
            enemy.y = 0;
    function boatMove(event:KeyboardEvent):void
        if(event.keyCode == Keyboard.RIGHT){
                        boat.x += 10;
                        if(boat.x > stage.stageWidth - boat.width)
                            boat.x = stage.stageWidth - boat.width;
        if(event.keyCode == Keyboard.LEFT){
                        boat.x -= 10;
                        if(boat.x < 0)
                            boat.x = 0;
    addEventListener(Event.ENTER_FRAME, trowEnemy); 
    function trowEnemy(event:Event):void
    enemy.y += Round + 10;; 
        if(boat.hitTestObject(enemy)){
        // IF THE GAME ENDED
        loseScreen.visible = true;
        theFinalScore.text = String(Round - 1);
        theFinalScore.visible = true;
        playAgain.visible = true;
        copyrights.visible = true;
        removeEventListener(Event.ENTER_FRAME, trowEnemy);
        user_id = 71811;
    var req:URLRequest = new URLRequest("z.php?id=" + user_id + "&mana=" + (Round - 1));
    //var req:URLRequest = new URLRequest("http://izra.co.il/z.php");
    var loader:URLLoader = new URLLoader();
    loader.load(req);
        else
            if(enemy.y > stage.stageHeight){
            theScore += 1;
            enemy.x = rand(0,stage.stageWidth - enemy.width);
            enemy.y = 0;
            Round++;
    score_txt.text = String(Round - 1);
    theFinalScore.text = String(Round - 1);
    // RANDOM NUMBERS 
    function rand(min:uint, max:uint):uint
        var randomNumber:uint = Math.round(Math.random() * (max - min) + min);
        return randomNumber;

  • Mountain Lion 10.8.2 not showing big folders from External HDD, please help ?

    Hello guys,
    The problem appeared after I did a clean install of Mountain Lion 10.8.2. The OS works nicely except it does not show my big Movie (around 200 GB) folder from my External HDD. This Movie folder is not related to any Apple software such as iTunes etc.. What's funny is that my LG TV shows the folder, and I can access it to open any movie. But when I mount the HDD to my MacBook Pro with Mountain Lion now, all folders are shown except this one. The HDD is NTFS and had no problems with Snow Leopard (my previous OS).
    I tried defaults write com.apple.finder AppleShowAllFiles TRUE and I see hidden folders in External HDD, but the Movie folder is still not shown.
    Is this issue related to the size of this folder ? any help & ideas are greatly appreciated, thanks!

    Hi all,
    I see its been 2 months since the last post. Did someone find the solution? I have the same problem with 10.8.2 update. Macbook pro mid 2010 with Crucial 256 m4 ssd (latest firmware 010G). Since yesterday my mac refuses to start.
    What I did so far:
    1. Impossible to start os x 10.8.2, stuck at spinning circle below the apple logo at startup. Disk check ok, permissions ok. Startup in "safe mode" stucks on spinning  wheel as well.
    2. Impossible to format the drive for a new clean install. What I find strange is that I cannot format the ssd with any utility. So far I tried with windows, linux and with disk utility on os x. I put the ssd in a usb casing and I am able to read it as an external drive, can copy some smaller files from it but cannot change anything on it (no permissions).
    3. Did a clean install on original hd of my mac. Data transfer (1 user)  from time machine or the ssd goes through 85-95% then stops. And now impossible to format the original drive with the 10.8.2 installed to downgrade to 10.7.
    4. Pram reset
    Does anyone have any idea what to do now?
    Thanks!

  • Recording audio from an external synth - please help!

    Hi
    I have an Alesis audio/midi firewire interface and a korg triton and in logic i have recorded the midi data and now need to record the audio into an audio track.
    I solo the midi track and arm the audio track for recording, i have set the audio track for input 1 and when the midi notes are played the audio track responds so i know there is a signal but when i hit record, the midi track plays and the metronome sounds as it goes along but nothing is recorded!
    Please could someone tell me what i am doing wrong??
    Thanks in advance
    Nick

    So let me clarify what I think you are wanting to do. Are you wanting to control the External Synth with the MIDI data coming out of Logic and then running the audio from the Synth back into Logic as an audio track?

  • Huge Issues opening projects from eSATA External RAID-Please Help!

    Hi peeps.  I'm hoping you guys have some insight into my issue here.  I thought I get further talking with you rather than trying Dell again.  Here's my system specs in brief....
    Dell Studio XPS 9100
    Intel i7-960 3.2Ghz
    18Gb DDR3 SDRAM 1333Mhz
    Radeon HD 5870 1GB (until I can afford Quadro, but has no bearing on issue)
    Windows 7 Pro 64bit - all updated
    Venus DS3R Pro External RAID enclosure w/ 2x500Gb WD 7200rpm Drives in RAID 0 Config (forget exact models and am writing this not from edit system but from my internet-connected system)
    Running CS5 Master Collection - all updates installed as of writing.
    Ok, so here's my issue.  Shortly after getting new system (above) and installing newly-purchased CS5 I had to work on one new project and make client-requested changes to an old project.  Issue has been the same for both.  When my external RAID was connected via eSATA, Premiere would take forever (and I mean forever) to load assets, would often (6 times out of 10) crash or hang-up system so badly as to require hard reset.  Those times when I finally got the timeline up, playback was horribly choppy on both HD 720p (new project) and SD (old project).  If any files needed conforming, Premiere would take (literally) hours and hours to perform task, and trying to export anything to DVD, blu-ray or encodes to files I would get multiple render issues or complete failures.
    I was tearing my hair out until I finally remembered that Venus enclosure also has USB (2.0) out.  Hooked this up and all problems went away.  Projects loading correctly and quickly and playback is what I would expect from USB and software-only playback (as I mentioned above, am running Radeon card that came with system until I can afford NVidia option)
    One strange thing is that After Effects was performing fine when drive was connected via eSATA (although the projects were very simple - I will test on complex project from archive).
    My question is - do you guys agree with me that it's some kind of SATA driver issue?  Or is there something going on in Premiere of which I'm unaware?  I called Dell support and they helpfully informed me that "all my BIOS and chipware drivers are up to date but that I should rest assured that my complete satisfaction is their primary concern".  Thanks Dell...you want to come finish my edit for me then?
    Anyway...what do we think?  Thinking of installing an eSATA card into a free slot - good idea?
    Any help would be much appreciated - would like to get back onto eSATA thruput ASAP, esp. after I get Quadro card - prob next month.
    Thanks in advance for your time!

    Did this external enclosure ever work well with its eSATA connection? I doubt highly that this is a Premiere issue--as far as the program is concerned, it's blind to the nature of the storage medium you're using. Rather, I'd suspect a faulty or low-quality RAID or SATA controller in the enclosure. I've had issues before with "bargain" enclosures that either wouldn't connect over a certain interface, or were so sporadic and slipshod that I just pulled the drive out of the enclosure and used it bare.
    If the enclosure worked well before, I would look at the eSATA connection on your computer as the issue. You might circumvent the Dell drivers site/advice and go hunting for your own from the OEMs.

  • X201 vs X201s and external monitor, please help

    Hello
    I am about to order my first thinkpad and have 2 questions and would greatly appreciate your thoughts
    I need a machine that is fast enough to handle huge data files quickly.
    1. Not sure whether to go for:
    X201 with i7-620M processor 2.66GHz, 8Gb RAM and 128Gb SSD
    or the slower but lighter
    X201s with i7-640LM processor 2.13GHz again with 8Gb RAM and 128Gb SSD
    2. When working at home and work i hope to connect to a ~24" monitor (1920 x 1080)
    I have been informed by lenovo sales people today 
    "the x201 will only support a maximum resolutionof 1280 x 800"
    Is this the case, how will it effect my use of a large external monitor?
     I do note that the x201s seems to support 1440 x 900 and would be happy to buy an ultra base for work and home if that helps?
    Look forward to hearing from you
    cheers
    Dan

    I had  the same concerns when trying to decide between the two models.  
    In the end I went with the X201  -with the i7-620M proc. 
    My reasoning is that, sure the performance difference between the two processors may not be that big, but I'm future-proofing the machine just a little bit more at only a marginal additional cost.  
    As for battery-life - my laptop spends most of the day plugged in, so the benefits of the lower voltage processor and lower power consumption wouldn't be that great.  
    I bike in to work every day with the laptop on my back, so weight and size were important issues for me.  The laptops are the same size.  With the 6 cell battery they're both 1.1" thick.  Only if you slap on the 4cell does the x201s become thinner.  The x201 does weigh about a quarter pound more when configured with the 6 cell. (3.1 lbs as opposed to 2.8 or so)  I was willing to make that tradeoff for better performance. 
    As for the video output - I haven't plugged the x201 into my home monitor: 24" , but its performing beautifully on my 20" office monitor @ 1680x1050.  

  • Exporting definition of the external file  - please help.

    Hello to all of you wonderful people.
    either me or my machine are just about to jump out of the window here..
    I have imported external file into OWB - no problem at all - everything singing and dancing.
    I now need to export this file and 'tweak' it a bit, rename and reimport - to save typing gazillion column names for other files i have to import.
    It was possible to do so in OWB 9i, however, everytime i am trying to do it i get this error message:
    Warning: MDL1427: Cannot export selected PROJECT <ADMIN> because it does not exist in target repository.
    Firstly,Of cause it is not in target repository - it is an external file! once i load my target table with it,it will be in target repository.
    secondly, I DO NOT HAVE A PROJECT CALLED <ADMIN>...
    Googled it and searched oracle, technet etc - to no avail. found only one entry for it on this amazing forum... but no solution :(
    Dearest Tom OWB it was your post about a month ago - did you manage to find out what that mean and how to go about it?
    Any help/hints would be greatly appreciated.
    Thank you very much for all your help and support regarding this issue.
    Kind Regards
    Vix

    Now I remember!
    There are two different ways to export the metadata. Clicking a project or object name less options and for me the error above.
    However if I click on the project and go to the top menu and to Design > Export > Warehouse Builder Metadata I am able to export the metadata fine. You also get access to the advanced tab this way.
    Bit strange but awell.
    Cheers,
    James

Maybe you are looking for

  • Getting error while assigning ABAP Query to Tr.Code

    Hi Guys, There is a problem iam facing with ABAP query while transporting which need to solved asap. It will very greatfull if u guys can resolve this problem. My problem is, I created one ABAP Query with Name ASSETOVERVIEW. I had transported this ev

  • Unable to Create a Simple LOV

    I am trying to create a simple LOV, but I keep getting the 'LOV query is invalid, a display and a return value are needed, the column names need to be different' error. This is my query: SELECT evaluation d, evaluation r FROM GRT_PRJ_EVALUATIONS WHER

  • Set the value to ' * ' to grant administrative privileges to all users.

    Everytime I run autoconfig, this set up is done automatically in workflow adminsitrator. A * comes in the Workflow Configuration --> Workflow System Administrator How to change this in xml file so that * doesn't come up and only sysadmin is given thi

  • Remote connection to  'OWM Database Control'

    Hi, on a WinXP PC I installed Oracle and created a new DB (10gR2) by DBCA. Is it possible to connect to its 'OWM Database Control' from another PC IE browser? Thank you.

  • HELP: No Custom Column Views in On My Mac Mailboxes?

    Hello. I'm in the process of changing over from Entourage to Apple's Mail and have set up a couple "On My Mac" Mailboxes to hold archived e-mails from my Inbox and Sent folders. Ideally I would like my Inbox archive to list From information, and my S