redwallhp
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: tweetable] Error MessageCan you successfully post to Twitter from the dashboard widget…?
Forum: Plugins
In reply to: [Plugin: tweetable] Error Message1. What version of Tweetable do you have installed?
2. What version of WordPress?
3. Are you running PHP 5?
Also, have you tried deleting he plugin files and re-uploading them?
Forum: Plugins
In reply to: css code help: centeringTry this:
/* Styles for one-column display */ #wp125adwrap_1c { width:100%; text-align:center; } #wp125adwrap_1c .wp125ad { margin-bottom:10px; }
Forum: Plugins
In reply to: [Plugin: tweetable] Error MessageIt looks as if Tweetable isn’t getting any data from Twitter. Did it continue to do that after waiting a bit, maybe 5-30 minutes? Twitter could have had a brief API outage or something.
Forum: Plugins
In reply to: [Plugin: Tweetable] Unable to post manuallyWell that’s good. I was afraid I’d have to go and do some more debugging. ??
Forum: Plugins
In reply to: [Plugin: Tweetable] Unable to post manuallyThis has something to do with a new security feature I built into the AJAX system for updating your status.
Have you tried clearing your cache?
Forum: Plugins
In reply to: [Plugin: Tweetable] Unable to post manuallyThis has something to do with a new security feature I built into the AJAX system for updating your status.
Have you tried clearing your cache?
I have just tagged and released version 1.0.4. (Should be available for download within 15 minutes.) Hopefully it will fix the issue.
Forum: Plugins
In reply to: [Plugin: Tweetable] Error with manual URL-shorteningThere’s another setting,
open_basedir
(that I just heard of recently) that triggers the same error as when Safe Mode is on. Since the change helped, I’ll be adding it to the next release.Forum: Plugins
In reply to: [Plugin: Tweetable] Error with manual URL-shorteningI don’t have a server running PHP in Safe Mode handy, so do you want to try this yourself?
Open tweetable/mh_twitter_class.php and replace the line
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
with
if (ini_get('open_basedir') == '' && ini_get('safe_mode' == 'Off')){ curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); }
Forum: Plugins
In reply to: [Plugin: WP125] Can we have a text ads version?I don’t really have the time to manage *another* plugin at this point. However, it shouldn’t be *too* hard for you to hack it. The write_ads function in wp125.php is the one that writes all of the ads out. (Sorry it’s not indented properly!) Just remove the bits that put the image tags in and you should be good.
Forum: Plugins
In reply to: [Plugin: Tweetable] v1.01 Fatal ErrorJust released a patch, should be available for download within 15 minutes!
I just released 1.3.3. I think I may have fixed it this time. Try it out. ??
Forum: Fixing WordPress
In reply to: need rotating 125×125 image for sponsorsWhat you’re looking for is a little out of the ordinary…
You could try animated GIFs? That way you assign an animated image to a slot, and the image will cycle through it’s animation, displaying the information built into it…
Just a thought.
Forum: Fixing WordPress
In reply to: need rotating 125×125 image for sponsorsWhat exactly are you trying to do? Something like the ads on https://nettuts.com? A block of several ads that change order? WP125 can do that without any problem? Can you explain what it is you want a little clearer?