staze
Forum Replies Created
-
Forum: Plugins
In reply to: [Simply Exclude] [Plugin: Simply Exclude] WordPress iOS App (XML-RPC) excludeHa! Answered in the iOS wordpress forum.
http://ios.forums.wordpress.org/topic/how-does-ios-app-find-posts?replies=2#post-6059
Should be easy enough…
Forum: Plugins
In reply to: [Simply Exclude] [Plugin: Simply Exclude] WordPress iOS App (XML-RPC) excludecool, thanks! let me know if there’s anything I can do to help. =)
Forum: Plugins
In reply to: [Wordpress Wiki] [Plugin: WordPress Wiki] TablesI don’t know, building tables maybe? =P
If it don’t work, it don’t work. I actually moved to using just normal post/page format. I just find building tables with wiki markup easier than WYSIWYG or html. *shrugs*
No worries.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] [Plugin: WordPress HTTPS (SSL)] Not sure why it brokeMike,
That seems to have worked. In fact, I don’t need the htaccess hack anymore it seems, as “force ssl admin” option in seems to work. Without that, I was just getting weird results.
Cool, thanks!
Spoke to Fredrick over the ticket email, and he said it’s necessary for certain functionality. Disabling (unchecking) “Prevent caching of objects after settings change” from the JS/CSS section of Browser caching disabled the query string, and all is well.
Thanks!
Forum: Plugins
In reply to: [WP Resume] Only load CSS/JS when necessarySeems to work. Thanks Ben!
Forum: Plugins
In reply to: [Tools for Twitter] [Plugin: Twitter Tools] Hashtags not Being AddedI’ve had this issue too. =/ It seems to work if you add one hashtag to the plugin through the twitter tools settings, but if you set them in the post, or have multiples, it doesn’t work.
I’m not sure if this plugin is even being actively developed anymore… SVN doesn’t show any recent activity that I can see.
This isn’t an issue, it’s just mysql throwing the error.
Used to be, Twitter Tools would grab duplicate tweets in the DB, and you’d end up with crap in there several times. To fix it, Alex just turned on the unique value for the tweet ID, so it throws this error whenever it tries to put in the same tweet again.
While not the cleanest want to do it, it was the easiest. =/ You can safely ignore the error… as annoying as it is.
Forum: Plugins
In reply to: [Link Library] [Plugin: Link Library] Can't set Ajax-loader to valid pathI don’t seem to have the issue anymore… so either something I did, or something you did since I reported it seems to have fixed it. =)
Thanks!
Forum: Plugins
In reply to: [External Links - nofollow, noopener & new window] Template Conflictseeing the same thing. Theme is thematic (or rather a child of), but this line is being written out previous to anything else, so it’s breaking all header settings, etc.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Login subdomainemailed. Will make sure to post back to this thread once we have some results.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Login subdomainHmm… it the fixed the css, but the submit button still has www, and the redirect in the url still has www. =/
the loginform is accurate though.
So it’s kind of odd. If you remove the bad “redirect_to” in the url, you get the wp-login.php page at https://admin.example.com, you try to login, and you get bounced to http://www.example.com/wp-admin, which then bounces you to admin.example.com/wp-login.php again, with the bad redirect_to. rinse, repeat.
As another side note, the “back to sitename” at the bottom of the login page shows the subdomain (admin.example.com) rather than the real site (www.example.com).
Let me know if you need more info.
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Login subdomainNot that easy, I’m afraid. It logs in, but I get a page not found, because the submit button code looks like:
<p class="submit"> <input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="Log In" tabindex="100" /> <input type="hidden" name="redirect_to" value="https://www.example.com/wp-admin/" /> <input type="hidden" name="testcookie" value="1" /> </p>So we’d need to rewrite that with the plugin, I’m assuming, to be:
<p class="submit"> <input type="submit" name="wp-submit" id="wp-submit" class="button-primary" value="Log In" tabindex="100" /> <input type="hidden" name="redirect_to" value="https://admin.example.com/wp-admin/" /> <input type="hidden" name="testcookie" value="1" /> </p>Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Login subdomainSo, “while(@ob_end_clean());” allowed the admin page to load, though not really completely (missing CSS, etc). After logging in, I get a cannot connect because it seems the redirect_to isn’t being set correctly.
The CSS not loading seems to be because looking at the code at least, it’s trying to load them from https://www.example.com rather than https://admin.example.com.
Thanks for helping out on this… we’ll get it!
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Login subdomainMike,
Here’s one culprit….
[Tue Jul 19 10:02:34 2011] [error] [client 67.171.240.215] PHP Warning: Cannot modify header information – headers already sent by (output started at /Library/WebServer/Documents/example.com/wp-content/plugins/wordpress-https/wordpress-https.php:453) in /Library/WebServer/Documents/example.com/wp-content/plugins/wordpress-https/wordpress-https.php on line 454
Wonder if it’s stepping on w3tc’s toes…