• Hello,

    Can someone tell me what’s been going on my post’s?
    Well, everything works fine but until this happens.

    Ok I have a post that have links to go to another posts, it’s kind of an episode links. An example of the code is like this:

    <table style="margin-bottom: 10px; padding: 0px; border-color: #fff; border-top-color: #70c0ff; border-bottom-color: #70c0ff; border-style: solid;" width="618" border="1">
    <tbody>
    <tr>
    <td style="padding: 5px;"><a href="LINK TO ANOTHER POST">THE LINK'S NAME</a></td>
    <td><a href="LINK TO ANOTHER POST">EPISODE 1</a></td>
    </tr>
    <tr>
    <td style="padding: 5px;"><a href="LINK TO ANOTHER POST">THE LINK'S NAME</a></td>
    <td><a href="LINK TO ANOTHER POST">EPISODE 2</a></td>
    </tr>
    <tr>
    <td style="padding: 5px;"><a href="LINK TO ANOTHER POST">THE LINK'S NAME</a></td>
    <td><a href="LINK TO ANOTHER POST">EPISODE 3</a></td>
    </tr>
    </tbody>
    </table>

    It’s kind of a page where episode links are present to go to the episode posts. (its kind of a video site)

    Anyway, so everything works fine. But there is this post that I have that has about 300+ episodes, so I made about 300 episode links in that page. And it works perfect, however, when I have came down to adding episode, let’s say, 314 link. The post became blank and the only visible thing is the title.

    So my question is why is this happening?
    When I remove an episode link, (when I say episode link, it means another <tr> group in the table), it works fine again. But when I add another episode, like for example 314. Its becoming a blank page.

    I’m thinking its kind of a limit on the post that is doing this? Because on other posts, they seem to work just fine. it’s just whenever I add too many links on that post, the content doesn’t show but the title is there.

    Whenever I go back to the admin panel and edit the post, all the links are in there. So only on the site itself is doing a blank page.

    Any ideas?

Viewing 10 replies - 1 through 10 (of 10 total)
  • From what you have described, I would suspect that you’re receiving some kind of php error, such as a memory_limit error. For example, adding that one extra link may be causing the script to reach its max memory limit.

    If you’re getting a blank page on a php script, most likely the php script is having a problem and generating an error. Your current setup is not showing any error messages. This is good so that your users don’t see any errors, but is bad when you want to troubleshoot the issue. Seeing the error message is your next step in debugging this issue. To see the error, you can either review the error_log file in the php script’s directory, or, enable display_errors in your php.ini file.

    For more help with the above two options, you can see the following page:
    Why is my website showing a blank page?

    Thread Starter kaspr

    (@kaspr)

    thanks for your response. But the link you gave me is not exactly what’s happening to me.

    See, it doesn’t really becoming BLANK page. Its sort of the contents only are gone. But the title is still in there. It’s kind of weird though because I actually limit the memory limit high and still this is occuring.

    And as you can see in my sample code above, its not really php i’m putting in. Its just table, and i’m putting it on a POST. Not page and not on php files.

    Anymore ideas about this?

    Hi kaspr. To confirm, you checked your error_logs and are not seeing anything in there?

    If that is the case, then it may be something within the logic of the code. This is more difficult to troubleshoot. You may need to examine the code and do some testing. For example, at certain points in the script, echo variables to the screen and ensure they are what you’re expecting them to be.

    Thread Starter kaspr

    (@kaspr)

    Hmmm..I didn’t have any errors on the site, as far as I know, so I don’t have that error_logs. And like I said, everything seems to work fine, except that when I went into that kind of more links adding, the post become blank. And ONLY that post is blank, not the whole site or other posts.

    kaspr, you have me stumped… On the blank page, if you view the page source, are you able to see anything after the title?

    Thread Starter kaspr

    (@kaspr)

    well, i just checked it now. And I can see everything on my page source, except those contents that has to be there. Is there anyway that I can contact you so that I can show you the site faster that having this issue? An email perhaps or MSN and Skype? It may be more easier to understand than explaining things here.

    But anyway yeah, the source is there except the content. But on the other posts that i have with less episode links, the table codes are in the page source.

    Thread Starter kaspr

    (@kaspr)

    So, is there any ideas left for this issue? Any help would be appreciated thanks.

    Thread Starter kaspr

    (@kaspr)

    Anyway, I tried removing all my plugins and see if its conflicting any. And i think what is causing this, its the WP-POSTRATINGS thats conflicting it. When I deactivate that plugin, the post comes back to normal even if I have about 500 links episodes on it. But when I re-activate it again, that’s when the post that has a lot of episode links becomes blank.

    Well, WP-POSTRATINGS is really a MUST plugin for me to use especially in the kind of site that I have. I tried looking for alternative plugin but I just cant find one that does the same effect as WP-POSTRATINGS, is there any other way to fix this issue?

    Hi kaspr,

    Glad to see that you’ve been able to narrow it down to WP-POSTRATINGS. At this point, you would need to find out what exactly in WP-POSTRATINGS is causing the problem. That is going to be a lot easier said than done. Contacting the developer of the plugin may help, but I assume it is going to require getting knee deep into the code and analyzing what exactly it is doing and finding which function is causing the problem.

    The plugin does have a forum, but it does not look to be too active any longer:
    https://forums.lesterchan.net/index.php?board=17.0

    Thread Starter kaspr

    (@kaspr)

    well, i just reorganize my tables..i put off the tables on different post and ratings shortcode on different post..and now its working ok, hopefully it will stay like that..but anyway thanks for your time, i appreciate the help ??

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Post content not showing but title is showing’ is closed to new replies.