Closed Thread
Page 1 of 3 123 LastLast
Results 1 to 10 of 22
Like Tree3Likes

Thread: Wordpress ProPlayer (most popular media plugin for WP) support in x10hosting

  1. #1
    woayumi71 is offline x10Hosting Member woayumi71 is an unknown quantity at this point
    Join Date
    Sep 2011
    Posts
    26

    Wordpress ProPlayer (most popular media plugin for WP) support in x10hosting

    Wordpress offers ProPlayer media plugin for it's users. It is one most popular media plugin for wordpress, but since wordpress has been updated to 3.2.1, this plugin shows error, because it was made for previous engine: "This Playlist is not a valid XML file".

    Plugin creator gone south, but people say, that this error can be fixed easily by entering
    Code:
    error_reporting = E_ALL & ~E_DEPRECATED
    into php.ini file.

    I tried to enter it through "PHP Variables Manager", but it shows error: "Variable error_reporting = E_ALL & ~E_DEPRECATED unknown!
    After I tried this few more times, it gave nothing, but people say, it helps them.

    I need to enter this into php.ini somehow, to make ProPlayer plugin work.

    Help Wordpress users to make stuff work, my friends.

    http://www.pressessentials.com/2009/...alid-xml-file/
    Last edited by woayumi71; 09-15-2011 at 05:35 AM.
    dinomirt96 likes this.

  2. #2
    calistoy's Avatar
    calistoy is offline Free Support Volunteer calistoy is just really nice
    Join Date
    Aug 2008
    Location
    USA
    Posts
    5,598

    Re: Wordpress ProPlayer (most popular media plugin for WP) support in x10hosting

    error_reporting = E_ALL & ~E_DEPRECATED
    Try this instead in the php variables manager:

    error_reporting(0)

    php.ini is not accessible to any free hosting users. It's set server wide and can not be changed on an individual account basis.
    Last edited by Livewire; 09-15-2011 at 06:06 AM. Reason: Code fix, no equals in error_reporting(0) per php.net
    karimirt47 likes this.

  3. #3
    woayumi71 is offline x10Hosting Member woayumi71 is an unknown quantity at this point
    Join Date
    Sep 2011
    Posts
    26

    Re: Wordpress ProPlayer (most popular media plugin for WP) support in x10hosting

    It says:
    Variable error_reporting(0) unknown!

  4. #4
    descalzo's Avatar
    descalzo is offline Grim Squeaker descalzo has a brilliant futuredescalzo has a brilliant futuredescalzo has a brilliant future
    Join Date
    Jul 2009
    Location
    Ankh-Morpork
    Posts
    7,635

    Re: Wordpress ProPlayer (most popular media plugin for WP) support in x10hosting

    Add:

    error_reporting(E_ALL & ~E_DEPRECATED);

    at the top of the PHP section of your home page (for wordpress it should be index.php).
    verlmirt17 likes this.
    Nothing is always absolutely so.

  5. #5
    woayumi71 is offline x10Hosting Member woayumi71 is an unknown quantity at this point
    Join Date
    Sep 2011
    Posts
    26

    Re: Wordpress ProPlayer (most popular media plugin for WP) support in x10hosting

    Oh, it didn't worked, my friend.

    There's should be some way, right?

  6. #6
    descalzo's Avatar
    descalzo is offline Grim Squeaker descalzo has a brilliant futuredescalzo has a brilliant futuredescalzo has a brilliant future
    Join Date
    Jul 2009
    Location
    Ankh-Morpork
    Posts
    7,635

    Re: Wordpress ProPlayer (most popular media plugin for WP) support in x10hosting

    It works if you do it right.
    Nothing is always absolutely so.

  7. #7
    woayumi71 is offline x10Hosting Member woayumi71 is an unknown quantity at this point
    Join Date
    Sep 2011
    Posts
    26

    Re: Wordpress ProPlayer (most popular media plugin for WP) support in x10hosting

    Here's how I did it:

    PHP Code:
    error_reporting(E_ALL & ~E_DEPRECATED);
    <?php get_header(); ?>
    <?php get_sidebar
    (); ?>

    <div id="wrapper" class="clearfix" > 
    <div id="maincol" >


    <?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>

    <h2 class="contentheader"><?php the_title(); ?></h2>
    <div class="content">
    <div class="permalink"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">Permanent Link</a></div>
    <?php the_content('Read more &raquo;'); ?>


    <?php link_pages('<p><strong>Pages:</strong> ''</p>''number'); ?>
    <div id="postinfotext">
    Posted: <?php the_time('F jS, Y'?><br/>
    Categories: <?php the_category(', '?><br/>
    Tags: <?php the_tags(''); ?><br/>
    Comments: <a href="<?php comments_link(); ?>"><?php comments_number('No Comments','1 Comment','% Comments'); ?></a>.
    </div>

    </div>    
    <?php endwhile; ?>

    <div class="navigation">
    <span class="prevlink"><?php next_posts_link('Previous entries'?></span>
    <span class="nextlink"><?php previous_posts_link('Next entries'?></span>
    </div>
            
    <?php else : ?>
    <h2 class="contentheader">Not found!</h2>
    <p>Could not find the requested page. Use the navigation menu to find your target, or use the search box below:</p>
    <?php include (TEMPLATEPATH "/searchform.php"); ?>
    <?php 
    endif; ?>



    </div>
    </div>

    <?php get_footer(); ?>
    Last edited by woayumi71; 09-16-2011 at 02:42 AM.

  8. #8
    essellar's Avatar
    essellar is offline Community Advocate essellar has a spectacular aura about
    Join Date
    Feb 2010
    Location
    Toronto, Ontario, CA
    Posts
    1,152

    Re: Wordpress ProPlayer (most popular media plugin for WP) support in x10hosting

    The statement error_reporting(E_ALL & ~E_DEPRECATED); is a PHP statement -- it needs to go between <?php and ?> tags.
    “Beware of bugs in the above code; I have only proved it correct, not tried it.” --Donald Knuth
    "It was as if its architects were given a perfectly good hammer and gleefully replied, 'neat! With this hammer, we can build a tool that can pound in nails.'" -- Alex Papadimoulis (on TheDailyWTF.com)

  9. #9
    woayumi71 is offline x10Hosting Member woayumi71 is an unknown quantity at this point
    Join Date
    Sep 2011
    Posts
    26

    Re: Wordpress ProPlayer (most popular media plugin for WP) support in x10hosting

    I tried then to take it into <?php and ?> tags, but it does not work anyway.
    What should I do?
    Last edited by woayumi71; 09-16-2011 at 04:35 AM.

  10. #10
    calistoy's Avatar
    calistoy is offline Free Support Volunteer calistoy is just really nice
    Join Date
    Aug 2008
    Location
    USA
    Posts
    5,598

    Re: Wordpress ProPlayer (most popular media plugin for WP) support in x10hosting

    Could you copy and paste what you did to put it in between <?php and ?> tags again after the last instruction?

Closed Thread
Page 1 of 3 123 LastLast

Similar Threads

  1. diggclone plugin for wordpress?
    By galaxyAbstractor in forum Scripts & 3rd Party Apps
    Replies: 1
    Last Post: 09-19-2009, 10:52 AM
  2. Wordpress Akismet Plugin
    By techairlines in forum Free Hosting
    Replies: 1
    Last Post: 07-30-2009, 06:24 PM
  3. Media support
    By gamemusta in forum Scripts & 3rd Party Apps
    Replies: 2
    Last Post: 08-15-2008, 07:31 AM
  4. wordpress plugin
    By animewatch in forum Scripts & 3rd Party Apps
    Replies: 3
    Last Post: 06-21-2008, 09:58 AM
  5. Social Media WordPress Theme (wicketpixie)
    By Derek in forum Off Topic
    Replies: 0
    Last Post: 06-08-2008, 12:40 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers