• I tried visting their site but i do not seem to find any support on this issue so i thought i would bring it here because you guys know best.

    I tried to install tube press and it said:

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /home/jamlux/public_html/wp-content/plugins/tubepress/classes/org/tubepress/video/feed/provider/ProviderImpl.class.php on line 76

    Now i dont know whether thats my host or whether its wordpress, can you guide me as to what i have to do to get around this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator James Huff

    (@macmanx)

    It’s not necessarily your host or WordPress, but it does happen sometimes. Here are four ways to increase PHP’s memory allocation:

    1. If you have access to your PHP.ini file, change the line in PHP.ini
    If your line shows 32M try 64M:
    memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)
    
    2. If you don't have access to PHP.ini try adding this to an .htaccess file:
    php_value memory_limit 64M
    
    3. Try adding this line to your wp-config.php file:
    Increasing memory allocated to PHP
    define('WP_MEMORY_LIMIT', '64M');
    
    4. Talk to your host.
    Thread Starter jambab13

    (@jambab13)

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress

    Thats my .htaccess file, i tried putting the

    php_value memory_limit 64M

    just inside the </ifmodule> but it just gave a 500 internal error, did i put it in the right place?

    Also i have found out that its not my host because i host other blogs and it worked on them.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Tubepress problem’ is closed to new replies.