<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
<channel>
<title>LoudBlog - Podcasting-Software for PHP - Forum</title>
<link>http://www.loudblog.com/forum</link>
<language>en</language>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<item>
<title>Plugin Exhibition / Video Podcasts with Shadowbox (doorwish)</title>
<link>http://www.loudblog.com/forum/viewtopic.php?pid=4352#4352</link>
<description> Hi Everyone!  I am using Loudblog for a while now and I love it! It is the easiest way to publish your podcasts without hassle.  Well since I have gained a lot from loudblog I thought I could give a little bit back to the community.  I am not sure if someone already has done this but I could not find any solution to my problem in the forum today, so I gave it a try myslef and VOILA! it worked out! ;) Although I am just a rookie php coder!    Now what does the plugin do?   Well first of all if you have a lot of video Podcasts on your site you have certainly realized that the site is very slow in loading pages. And playing the videos can even get a bigger pain.&#160; Second of all if you or another user of the admin tool accidently uploads a bigger video your whole template design will mess up.  What I did is I implemented shadowbox to it so that everytime a mp4 video is postet instead of putting the QT player a small image (whatever you wish) is loaded as a placeholder and if you click on that image the shadowbox is activated and your video will play.  On ther other hand all MP3 Podcasts will stay playing with the standard flash player.        Here is how it works.   1. Get  Shadowbox  and upload it to  loudblog/custom/template/default  folder on your server.  2. Include the piece of code  described on the shadowbox homepage  into your header. Make sure you have the right root to the shadowbox css and js files. If you upload it to the folder I said it should look something like this:  
   Code:   &#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;shadowbox/shadowbox.css&#34;&#62;
&#60;script type=&#34;text/javascript&#34; src=&#34;shadowbox/shadowbox.js&#34;&#62;&#60;/script&#62;
&#60;script type=&#34;text/javascript&#34;&#62;
Shadowbox.init({
         language: 'de',
             players:  ['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv', 'mp3']
});
&#60;/script&#62;
    3. Now copy paste the following code into an empty file (you can do this with any TextEdit Software on your computer) name it  niiceeplayer.php  and save it.  
   Code:   &#60;?php

#################################################
#################################################

function niiceeplayer($content) {
//puts emff-flash-app OR quicktime player on screen (works within postings-loop)
global $postings;
global $currentid;
global $settings;
$att = getattributes($content);
$audioexamine = &#34;&#34;;
$return = &#34;&#34;;

//decide: flash or quicktime
$thetype = $postings[$currentid]['audio_type'];

//redirect or direct link? Only Flash can be redirected for counting
if (($thetype == &#34;1&#34;) AND ($settings['countfla'] == &#34;1&#34;)) {
    $before = &#34;get.php?fla=&#34;;
} else {
    if ($postings[$currentid]['filelocal'] == &#34;1&#34;) {
        $before = &#34;audio/&#34;;
        $audioexamine = $GLOBALS['audiopath'].$postings[$currentid]['audio_file'];
    } else {
        $before = &#34;&#34;;
    }
}

if (!veryempty($postings[$currentid]['audio_file'])) {

//possible attributes and default-values
if (isset($att['width']))  { $width  = $att['width']; }  else { $width  = 200; }
if (isset($att['height'])) { $height = $att['height']; } else { $height = 62; }
if ($postings[$currentid]['filelocal'] == 1) {
    $audio = $before.$postings[$currentid]['audio_file'];
} else {
    $audio = $postings[$currentid]['audio_file'];
    if ($settings['countfla'] == &#34;1&#34;) {
        $audio = $before.$audio;
    }
}

//if mp3, show flash!
if ($thetype == &#34;1&#34;) {
    $return .= showflash(
    &#34;loudblog/custom/templates/&#34;.$settings['template'].&#34;/emff.swf?src=&#34;.$audio,
    $width, $height);
}

//if quicktime video
if (($thetype == &#34;10&#34;)) {

    //making an absolute link
    if ($postings[$currentid]['filelocal'] == &#34;1&#34;) {
        $audio = $settings['url'] . &#34;/&#34; . $audio;
        $target = &#34;myself&#34;;
    } else {
        $target = &#34;quicktimeplayer&#34;;
    }

    //getting width and height from getid3()
    $fileinfo = getid3data($audioexamine,&#34;front&#34;);

    //build html-code for quicktime plugin (video)
    
    $return = &#34;&#60;a class=\&#34;preview\&#34; href=\&#34;&#34;. $audio . &#34;\&#34; rel=\&#34;shadowbox\&#34;&#62;&#34;;
    $return .= &#34;&#60;img src=\&#34;loudblog/backend/clicktoplayvideo.jpg\&#34; &#60;/&#62;&#34;;
    $return .= &#34;&#60;/a&#62;\n&#34;;   
}

return $return;

} else { return &#34;&#34;; }

}

?&#62;
    4. Upload this file to  loudblog/custom/plugins   5. Now open the  index.html  file in your template folder on the server and replace everything from  &#60;lb:if_audio&#62;  to  &#60;/lb:if_audio&#62;  with the following code.  
   Code:   &#60;lb:if_audio&#62;
                &#60;p&#62;
                &#60;class=&#34;flash&#34;&#62;&#60;lb:niiceeplayer width=&#34;355&#34; height=&#34;28&#34; /&#62;
                &#60;/p&#62;
                &#60;p&#62;
                &#60;lb:link_audio&#62;
                    Download &#60;lb:audiotype /&#62;
                &#60;/lb:link_audio&#62; (&#60;lb:audiolength /&#62;min, &#60;lb:audiosize /&#62;MB)
                &#60;/p&#62;                                
&#60;/lb:if_audio&#62;
    6. Last but not least upload the image you want to be shown instead of the video on the post to  loudblog/backend/  and name it  clicktoplayvideo.jpg   7. Try it out!!!! It should work. If not I might have forgotten to write down something since it is late and I am sleepy!&#160; ;) Post and I will try help.    I am sure there are other cracks out there who can programm this little piece of code much more elegently. But I am pretty proud of what I have managed to accomplish and felt like sharing with you guys.  But if anyone has a better and more efficiant way to solve this problem please let me know!!!  Keep up the good work and share your ideas!   Peace!
</description>
<category>Plugin Exhibition / Video Podcasts with Shadowbox</category>
<pubDate>Wed, 26 May 2010 14:10:53 -0700</pubDate>
</item>
<item>
<title>News / Future of LoudBlog (petercarter)</title>
<link>http://www.loudblog.com/forum/viewtopic.php?pid=4351#4351</link>
<description> PodHawk 1.6 is now available - see  the PodHawk website . It requires php5. If you have php4, install PodHawk 1.53.
</description>
<category>News / Future of LoudBlog</category>
<pubDate>Sun, 21 Mar 2010 01:19:43 -0700</pubDate>
</item>
<item>
<title>News / Future of LoudBlog (petercarter)</title>
<link>http://www.loudblog.com/forum/viewtopic.php?pid=4350#4350</link>
<description> PodHawk 1.52 is now available from  the PodHawk website 
</description>
<category>News / Future of LoudBlog</category>
<pubDate>Wed, 30 Dec 2009 00:18:37 -0800</pubDate>
</item>
<item>
<title>Loudblog around the world! / French translation / Traduction Française (Teenage)</title>
<link>http://www.loudblog.com/forum/viewtopic.php?pid=4349#4349</link>
<description> Here's the french translate for this version (0.8.0a) :  http://dl.dropbox.com/u/6658/Loudblog_0_8_0a/french.php 
</description>
<category>Loudblog around the world! / French translation / Traduction Française</category>
<pubDate>Sat, 21 Nov 2009 05:56:58 -0800</pubDate>
</item>
<item>
<title>News / LoudBlog 0.8.0 released (Teenage)</title>
<link>http://www.loudblog.com/forum/viewtopic.php?pid=4348#4348</link>
<description> Here's the french translate for this version (0.8.0a) :  http://dl.dropbox.com/u/6658/Loudblog_0_8_0a/french.php 
</description>
<category>News / LoudBlog 0.8.0 released</category>
<pubDate>Sat, 21 Nov 2009 05:55:38 -0800</pubDate>
</item>
<item>
<title>News / Future of LoudBlog (petercarter)</title>
<link>http://www.loudblog.com/forum/viewtopic.php?pid=4346#4346</link>
<description> PodHawk 1.5 is now available from  the PodHawk website .
</description>
<category>News / Future of LoudBlog</category>
<pubDate>Fri, 20 Nov 2009 03:24:15 -0800</pubDate>
</item>
<item>
<title>Questions &#38; Problems / iTunes not downloading episodes (petercarter)</title>
<link>http://www.loudblog.com/forum/viewtopic.php?pid=4345#4345</link>
<description> This surprises me, as I have never found a problem with links added to the podcast. Has anyone else experienced the problem?
</description>
<category>Questions & Problems / iTunes not downloading episodes</category>
<pubDate>Tue, 27 Oct 2009 01:33:55 -0700</pubDate>
</item>
<item>
<title>Questions &#38; Problems / iTunes not downloading episodes (m00gy)</title>
<link>http://www.loudblog.com/forum/viewtopic.php?pid=4344#4344</link>
<description> Well, in fact I figured the problem out - it had to do with the possibility top add &#34;links&#34; in to the podcasts within the backend. Whenever I added &#34;links&#34; to a posting, iTunes would not accept the feed as valid. Without the links it did.
</description>
<category>Questions & Problems / iTunes not downloading episodes</category>
<pubDate>Mon, 26 Oct 2009 07:19:17 -0700</pubDate>
</item>
<item>
<title>Questions &#38; Problems / iTunes not downloading episodes (petercarter)</title>
<link>http://www.loudblog.com/forum/viewtopic.php?pid=4343#4343</link>
<description> I can't be sure about this until I can find a Windows or Mac computer (no iTunes on Linux, I am afraid!). But the problem may be the &#34;com=1&#34; bit at the end of the podcast url. Try using &#60;lb:link_podcast /&#62; instead of &#60;lb:link_podcast comments=&#34;true&#34; /&#62;
</description>
<category>Questions & Problems / iTunes not downloading episodes</category>
<pubDate>Tue, 06 Oct 2009 14:25:45 -0700</pubDate>
</item>
<item>
<title>Questions &#38; Problems / iTunes not downloading episodes (m00gy)</title>
<link>http://www.loudblog.com/forum/viewtopic.php?pid=4342#4342</link>
<description> Hi there,  I've a strange problem with my Loudblog-podcast and iTunes. This is the URL of the podcast:   http://www.antonianum.de/podcast/   As you can see, everything is fine with it, so I submitted it to iTunes. Now strange things happen:  If you click on the iTunes link, you'll see that the podcast is listed and looks good:   http://itunes.apple.com/WebObjects/MZSt &#8230; =333894619   You can even listen to the episodes and download them episode by episode. But if you click on &#34;subscribe&#34; iTunes will give you an error saying that this might not be a correct podcast-URL.  Strange, huh?  I've set up several podcasts using Loudblog (e.g.  http://schule.schulpodcasting.info ) - those podcasts works fine with iTunes and you can easily subscribe to them (even without submitting them to the Store).  What went wrong with this podcast?  I can't find where something went wrong, can you give me a clue?  Thanks, Sebastian
</description>
<category>Questions & Problems / iTunes not downloading episodes</category>
<pubDate>Mon, 05 Oct 2009 10:29:29 -0700</pubDate>
</item>
<item>
<title>Questions &#38; Problems / Warning: include(custom/config.php) [function.include]: failed to open (petercarter)</title>
<link>http://www.loudblog.com/forum/viewtopic.php?pid=4341#4341</link>
<description> There is something strange about the path to the accesscheck.php script in the error messages. The root of your site appears to be /home/deepsession/public_html/old&#34;. Now, if that is the root of your LoudBlog site, the path to the accesscheck file should be &#34;/home/deepsession/public_html/old/loudblog/inc/accesscheck.php&#34;. But in the error messages, the &#34;/loudblog/&#34; bit is missing. Which suggests that you have not in fact got your files in the right place.
</description>
<category>Questions & Problems / Warning: include(custom/config.php) [function.include]: failed to open</category>
<pubDate>Fri, 04 Sep 2009 09:12:55 -0700</pubDate>
</item>
<item>
<title>Questions &#38; Problems / Warning: include(custom/config.php) [function.include]: failed to open (dibbellas)</title>
<link>http://www.loudblog.com/forum/viewtopic.php?pid=4340#4340</link>
<description> Hello , i have transferred my loudblog to another server but when i try to reach it , tell me this error:  Warning: include(custom/config.php) [function.include]: failed to open stream: No such file or directory in /home/deepsession/public_html/old/inc/accesscheck.php on line 10  Warning: include() [function.include]: Failed opening 'custom/config.php' for inclusion (include_path='.:/usr/share/php:/usr/share/pear') in /home/deepsession/public_html/old/inc/accesscheck.php on line 10   Cannot find a valid configuration file. Install Loudblog now!  Permission are OK! Paths are OK! my config:  &#60;?php // YOUR DATABASE INFORMATION -------------------- $db = array( &#34;type&#34; =&#62; &#34;mysql&#34;, &#34;host&#34; =&#62; &#34;localhost&#34;, &#34;data&#34; =&#62; &#34;deepsession&#34;, &#34;user&#34; =&#62; &#34;**********&#34;, &#34;pass&#34; =&#62; &#34;**********&#34;, &#34;pref&#34; =&#62; &#34;&#34; );  // DOCUMENT ROOT --------------------- $lb_path = &#34;/home/deepsession/public_html/old&#34;; ?&#62;  any solutions?
</description>
<category>Questions & Problems / Warning: include(custom/config.php) [function.include]: failed to open</category>
<pubDate>Fri, 04 Sep 2009 08:14:25 -0700</pubDate>
</item>
<item>
<title>News / Future of LoudBlog (Kilian)</title>
<link>http://www.loudblog.com/forum/viewtopic.php?pid=4339#4339</link>
<description> Thanks a lot for the info. Now that sounds quite good, so I might just take the plunge and see how far I get.  I'll try to move my loudblog site in the next week(s) over to podhawk, I'll give you some feedback on how it went, once I'm done.
</description>
<category>News / Future of LoudBlog</category>
<pubDate>Sun, 09 Aug 2009 22:53:57 -0700</pubDate>
</item>
<item>
<title>News / Future of LoudBlog (petercarter)</title>
<link>http://www.loudblog.com/forum/viewtopic.php?pid=4338#4338</link>
<description> When you convert from LoudBlog to PodHawk, all the information in your database is preserved. The convert.php programme adds a number of new tables/columns to the database, but leaves everything which is already there untouched. (Best to back up your database and your audio folder before you start, though, in case of accidents!)  You can keep your existing rss/xml feed. Strictly, static feeds are not needed in PodHawk, because Smarty caches web pages and the rss feed, but the static feed facility is retained in PodHawk for backwards compatibility with LoudBlog. The static rss/xml feed will have the same address ( www.mysite.com/audio/rss.xml ) as in LoudBlog. I have not implemented separate static feeds for individual categories in PodHawk, but if you need these, let me know and I will tell you how to do it.  Basically, if you convert from LoudBlog to PodHawk, your listeners/viewers will not notice any difference - your web address will be the same, as will the address of your rss feed. The content of the feed will be the same (except that it will say &#34;generated by PodHawk&#34; instead of &#34;generated by LoudBlog&#34;!). The web page may look different - it depends on how closely you want to match your old web page in PodHawk.  PS There is a very annoying error on the SourceForge page for downloading PodHawk. The &#34;download&#34; button will download PodHawk 1.1, not 1.4. To get the latest PodHawk version, click &#34;View all files&#34; to find the PodHawk1.4 zip and tar packages. SourceForge are aware of the problem, but have not yet fixed it.  PPS I think this has now been resolved!
</description>
<category>News / Future of LoudBlog</category>
<pubDate>Tue, 21 Jul 2009 04:33:27 -0700</pubDate>
</item>
<item>
<title>News / Future of LoudBlog (Kilian)</title>
<link>http://www.loudblog.com/forum/viewtopic.php?pid=4337#4337</link>
<description> Here are my questions for switching from loudblog to podhawk:  I can live with having to recode my own templates, but how about the database? Any chance I can convert that or export via xml and reimport that into podhawk? I have tons of comments on my past episodes which I just don't want to loose.  What about the rss/xml feed? Where does it reside in podhawk? Do I have to set up a redirect to the new location? Is there a way to import the old loublog xml feed into podhawk so that I don't have to recreate all the past episodes (54 of them)?  And just as importantly, once I switched to podhawk, will the xml feed be different thusly having all the users losing the backlog, resp. will they have to re-download all of them?  These are my main concerns for switching.
</description>
<category>News / Future of LoudBlog</category>
<pubDate>Mon, 20 Jul 2009 22:58:36 -0700</pubDate>
</item>
</channel>
</rss>
