daveabrahams
Forum Replies Created
-
Forum: Plugins
In reply to: [Tools for Twitter] [Plugin: Twitter Tools] new v2.4 broken/problems?Apparently twitter tools needs http://wordpress.org/extend/plugins/xrds-simple/ to be installed!! At least, that fixed it for me. Do they document this dependency anywhere?
Forum: Plugins
In reply to: [Tools for Twitter] [Plugin: Twitter Tools] new v2.4 broken/problems?Re: Fatal error: Call to undefined function curl_init() in …/wp-content/plugins/twitter-tools/twitteroauth.php on line 201
Installing php-curl didn’t work for me, sadly. The odd thing is, it is getting picked up by php even when I run it from the command-line. Just to prove it to myself, I deinstalled php5-curl and started over: [I’m using lighttpd, so the php.ini file that gets used is in /etc/php5/cgi]
~# php --php-ini /etc/php5/cgi -r 'curl_init(); print "ok\n";' Fatal error: Call to undefined function curl_init() in Command line code on line 1 root@boostpro:~# aptitude install php5-curl ... The following NEW packages will be installed: php5-curl 0 packages upgraded, 1 newly installed, 0 to remove and 27 not upgraded. ... Building tag database... Done root@boostpro:~# php --php-ini /etc/php5/cgi -r 'curl_init(); print "ok\n";' Fatal error: Call to undefined function curl_init() in Command line code on line 1 root@boostpro:~# ls /etc/php5/conf.d/ gd.ini imagick.ini mysqli.ini mysql.ini pdo.ini pdo_mysql.ini pdo_pgsql.ini pgsql.ini root@boostpro:~# mv /tmp/curl.ini /etc/php5/conf.d/ root@boostpro:~# php --php-ini /etc/php5/cgi -r 'curl_init(); print "ok\n";' ok root@boostpro:~# php --php-ini /etc/php5/cgi -i | grep -i curl additional .ini files parsed => /etc/php5/cli/conf.d/curl.ini, curl cURL support => enabled cURL Information => libcurl/7.18.0 OpenSSL/0.9.8g zlib/1.2.3.3 libidn/1.1 root@boostpro:~#Forum: Plugins
In reply to: [Plugin: WP-SpamFree Anti-Spam] plugin dir hardcoded. why?Maybe this accounts for why nobody can post comments unless they’re logged in when I “network activate” that plugin?
I’d be happy to, if you tell me where to send it. Note also that I have quite a few plugins in effect (markdown w/syntax highlighting, latex, …)
Fantastic; thanks so much for that. However, I’ve got a new issue: with “edit by paragraph” enabled, none of the code samples or headings at http://cpp-next.com/archive/2010/09/expressive-c-playing-with-syntax/#more-1679 seem to be editable.
The “hackadelic sliding notes” problem is fixed in the latest dev version.
Is that something I can get ahold of?
Forum: Fixing WordPress
In reply to: Override “automatically close comments?”Bump! This looks like a bug!
Forum: Fixing WordPress
In reply to: Featured Image buriedBump! This is a design bug!
I’m using PHP Markdown Extra with the patch shown at the bottom of http://cpp-next.com/posting/
Sorry for doubling down on that feature request 😉
How about this interface: when you hover over a paragraph, instead of highlighting the whole thing, optionally show a small “edit” (pencil) button at the top-right of the paragraph (or of the visible text area, whichever comes last)?
P.S. Did you note the reported “hackadelic sliding notes” interaction?
Oops, one more “bug:” an interaction with the hackadelic sliding notes plugin. When I click a sliding note to expand it, it slides open, then closes immediately. Had to disable FEE to make it work again 🙁
Forum: Fixing WordPress
In reply to: Plugins and blank admin pagesProblem solved; it was a memory limit thing. Incidentally, the memory bump plugin mentioned in http://wordpress.org/support/topic/253495#post-1017842 didn’t do anything for me; I had to edit PhP.ini and restart the webserver.
Forum: Fixing WordPress
In reply to: Plugins and blank admin pagesHi esmi,
Yes, I deactivated all the plugins. Indeed yes, it appears to make the problem go away. Yes, I tried reactivating them systematically. However, once I found a combination of plugins that restored most site functionality and seemed to work for one author, a different author’s stuff started breaking.
I didn’t try any of those other tricks; the memory limit thing seems like a plausible cause, but as I mentioned, I can’t find a log on the server that is at all revealing. I wish I had a systematic way to attack this problem, but it looks like I’ll be taking stabs in the dark for a while unless you have specific suggestions for diagnosis.
Thanks for your attention,
DaveForum: Networking WordPress
In reply to: Post preview just looks like the Blog’s main pageTurns out I had this rewrite rule in my lighttpd.conf, which was dropping the CGI vars:
“.” => “index.php”
Actually I found several other rewrite problems upon careful inspection. My original rules came from http://blog.nifelheim.info/tech/2008/04/10/lighttpd-rewrite-rules-for-wordpress-mu/ (seems to be dead ATM).
Forum: Networking WordPress
In reply to: Post preview just looks like the Blog’s main pageHuge clue: if I change the permalink structure to using CGI variables (e.g. http://daveabrahams.com/?p=123), I can’t actually view any published posts individually. So somehow, CGI variables aren’t getting picked up.
Forum: Networking WordPress
In reply to: Post preview just looks like the Blog’s main pageFWIW this site was upgraded from WPMU 2.x to WP 3.0 recently.