brianfidler
Forum Replies Created
-
Forum: Plugins
In reply to: [Post Thumbnail Editor] 3.6 Seems To Break This PluginI’m having the same problem but in v3.5.1 with v.2.1.0 of Post Thumbnail Editor. I’ve enabled debugging as well and am getting the same errors as psbook.
any ideas?
I had this problem with tags. I edited the code in the file Ad.php in the folder advertising-manager/lib/OX/Ad.php.
If tags weren’t defined, and if I had unclicked ‘tags’ for a particular ad, it would throw an error. I just added an if statement to test that it had a tag before it processes the foreach statement.
//add the if statement because if $tags wasn't defined it was throwing an error if ($tags) { foreach ($tags as $tag) { if (in_array($tag->term_id, $tagFilter)) { $found = true; break; } } }This solved a similar issue for me.
Forum: Plugins
In reply to: [Advertising Manager] [Plugin: Advertising Manager] doesn't workI’m using it right now. I had to tweak some of the underlying code to get it to work for me. What problems are you having?
I’m having the same errors in ExpressionEngine. Rackspace Cloud memory_limit is set to 32mb, I think we need to find out if we can up it to 64mb.
UPDATE:
I solved the problem by adding the following lines to my .htaccess file:# Increase php memory_limit php_value memory_limit 64Mgood luck.
brian