Forum

Please consider registering
guest

Log In Register

Register | Lost password?
Advanced Search:

— Forum Scope —



— Match —



— Forum Options —




Wildcard usage:
*  matches any number of characters    %  matches exactly one character

Minimum search word length is 3 characters - maximum search word length is 84 characters

Topic RSS
Podcast Problems
14 December, 2011
2:55 pm
scottcoers
New Member
Forum Posts: 2
Member Since:
14 December, 2011
Offline

I feel a little dumb, but the answer to my issue is not on this forum. My podcast feed appears blank when you click the rss subscribe. also itunes doesn't recognize my feed any longer, i'm sure the problems are connected, but i can't figure out why the feed is not broadcasting the sermons. any help would be appreciated.

14 December, 2011
5:52 pm
Ben Miller
Appleton, WI, USA
Moderator
Forum Posts: 387
Member Since:
18 June, 2009
Offline

Could you post a link to your site so we can take a look?

Ben Miller
Pathways Church, Appleton, WI, USA
16 December, 2011
9:31 pm
scottcoers
New Member
Forum Posts: 2
Member Since:
14 December, 2011
Offline

midtownbc.org

17 December, 2011
2:15 am
manusdorsey
Member
Forum Posts: 9
Member Since:
16 December, 2011
Offline

scottcoers said

midtownbc.org

My podcast is also not being picked up in itunes and is doing the same thing as yours. Did you find a fix yet?

17 December, 2011
4:17 am
Ben Miller
Appleton, WI, USA
Moderator
Forum Posts: 387
Member Since:
18 June, 2009
Offline

scottcoers,

It looks like you made some edits to podcast.php, and I think you may have introduced some errors to it.  Line 5 of your podcast feed shows this:

See this post: http://pastebin.com/MKrDaXX7

(The difference is the characters "&" after "id=40" instead of just "&".)

If you need help identifying what the changes you need to make to your podcast.php file are, you can post the contents of your podcast.php file to http://pastebin.com/.  After you post it, Pastebin will give you a link that you can post here so we can take a look at it.

Ben Miller
Pathways Church, Appleton, WI, USA
17 December, 2011
4:32 am
Ben Miller
Appleton, WI, USA
Moderator
Forum Posts: 387
Member Since:
18 June, 2009
Offline

manusdorsey,

You have a different problem with your feed.  On every page on your site, if you view the source code of the page, you'll see that your web server is sending 4 blank lines before the code begins.  This is not a problem for an HTML webpage, because the web browsers just ignore the whitespace.  However, it is a problem for an XML podcast feed; in XML, there can't be any whitespace before the code begins.  That is why your feed is failing.  I don't know why your webserver is returning blank lines before the code.  My first guess is that your WordPress theme is inserting these blank lines.  To test this, you could temporarily switch to a different theme, such as TwentyTen, the WordPress default theme.  After you switch themes, check to see if your pages' source codes still begin with four blank lines.  That will tell you if the problem lies with your theme or elsewhere.

Post back here and let us know what you find out.

Ben Miller
Pathways Church, Appleton, WI, USA
17 December, 2011
9:54 pm
manusdorsey
Member
Forum Posts: 9
Member Since:
16 December, 2011
Offline

Ben Miller said

manusdorsey,

You have a different problem with your feed.  On every page on your site, if you view the source code of the page, you'll see that your web server is sending 4 blank lines before the code begins.  This is not a problem for an HTML webpage, because the web browsers just ignore the whitespace.  However, it is a problem for an XML podcast feed; in XML, there can't be any whitespace before the code begins.  That is why your feed is failing.  I don't know why your webserver is returning blank lines before the code.  My first guess is that your WordPress theme is inserting these blank lines.  To test this, you could temporarily switch to a different theme, such as TwentyTen, the WordPress default theme.  After you switch themes, check to see if your pages' source codes still begin with four blank lines.  That will tell you if the problem lies with your theme or elsewhere.

Post back here and let us know what you find out.

I see the 4 blank lines in the source code. I switched to the default wordpress theme but that only makes 2 of the blank lines go away and the podcast still doesn't work.

17 December, 2011
10:33 pm
Ben Miller
Appleton, WI, USA
Moderator
Forum Posts: 387
Member Since:
18 June, 2009
Offline

I see that you are back to your old theme, and there are only 2 blank lines at the top of the code.  But you'll need to get rid of all the blank lines at the top for your podcast feed to work.

I found this page that talks about some of the troubleshooting that you can do:

http://feed2.w3.org/docs/error…..kLine.html

My guess is that one of your other plugins is causing the problem.  To find out which one:

1. Make a list of all the plugins that are currently activated on your site.

2. Deactivate all of your plugins.

3. Check to see if the blank lines are gone from the source code of your pages.

4. If the blank lines are gone, then you know a plugin did it.  Reactivate your plugins one at a time, and check the source code of your pages between each one, until you know which one is causing the problem.

Let us know what you find out.

Ben Miller
Pathways Church, Appleton, WI, USA
17 December, 2011
10:44 pm
manusdorsey
Member
Forum Posts: 9
Member Since:
16 December, 2011
Offline

Ben Miller said

I see that you are back to your old theme, and there are only 2 blank lines at the top of the code.  But you'll need to get rid of all the blank lines at the top for your podcast feed to work.

I found this page that talks about some of the troubleshooting that you can do:

http://feed2.w3.org/docs/error…..kLine.html

My guess is that one of your other plugins is causing the problem.  To find out which one:

1. Make a list of all the plugins that are currently activated on your site.

2. Deactivate all of your plugins.

3. Check to see if the blank lines are gone from the source code of your pages.

4. If the blank lines are gone, then you know a plugin did it.  Reactivate your plugins one at a time, and check the source code of your pages between each one, until you know which one is causing the problem.

Let us know what you find out.

Will do. Making a complete FTP backup of my site now. Found one of the blank lines in my functions.php file and one in my template.php. Gonna disable all plugins and then see if it's gone before I look at the rest of my .php files.

17 December, 2011
11:32 pm
manusdorsey
Member
Forum Posts: 9
Member Since:
16 December, 2011
Offline
10

manusdorsey said

Ben Miller said

I see that you are back to your old theme, and there are only 2 blank lines at the top of the code.  But you'll need to get rid of all the blank lines at the top for your podcast feed to work.

I found this page that talks about some of the troubleshooting that you can do:

http://feed2.w3.org/docs/error…..kLine.html

My guess is that one of your other plugins is causing the problem.  To find out which one:

1. Make a list of all the plugins that are currently activated on your site.

2. Deactivate all of your plugins.

3. Check to see if the blank lines are gone from the source code of your pages.

4. If the blank lines are gone, then you know a plugin did it.  Reactivate your plugins one at a time, and check the source code of your pages between each one, until you know which one is causing the problem.

Let us know what you find out.

Will do. Making a complete FTP backup of my site now. Found one of the blank lines in my functions.php file and one in my template.php. Gonna disable all plugins and then see if it's gone before I look at the rest of my .php files.

Update: You were right on point once again Ben. Appreciate it. Found the plugin that was causing it. Ironically it happened to be a plugin that I was planning on not using anyway!!!! God Bless you Ben I've learned a lot from you in my new foray into Wordpress. 

Forum Timezone: Europe/London

Most Users Ever Online: 40

Currently Online:
19 Guest(s)

Currently Browsing this Page:
1 Guest(s)

Top Posters:

malpan: 2453

jogen: 2440

VanWatterson: 652

GeraldSebring: 364

LucasWoltman: 362

RandellFeenstra: 362

Member Stats:

Guest Posters: 7

Members: 2066

Moderators: 1

Admins: 1

Forum Stats:

Groups: 1

Forums: 2

Topics: 1071

Posts: 4045

Newest Members: Nixon Designs, zolaperry, tanec69, lbakyl, richdorm, Aaron Velasquez

Moderators: Ben Miller (387)

Administrators: Mark Barnes (425)

Comments are closed.