David Radovanovic
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Bluehost is RUDE! Please recommend other hosting.HostGator deserves mentioning. They have ALWAYS been great with support. I’ve had mediocre experience with Bluehost. Support has been rude several times with different folks.
Forum: Plugins
In reply to: [Plugin: wp-typogrify] Works beautifullyDitto to redsil’s comment. Just installed it onto two WordPress blogs today. This WordPress plugin makes typeset perfectionists very happy!
Now I’m getting the error:
[error] PHP Warning: ftp_pwd() [function.ftp-pwd]: CWD command successful. in /usr/home/mysite/www/wp-admin/includes/class-wp-filesystem-ftpext.php on line 122
PHP Warning: ftp_pwd() [function.ftp-pwd]: PORT command successful. in /usr/home/bigidea/www/wp-admin/includes/class-wp-filesystem-ftpext.php on line 122
I thought it might be a file permission issue, though it doesn’t appear to be that. More investigation to follow.
After some effort I found a solution for my case:
PHP Fatal error: Cannot unset string offsets update.php on line 29
referred to “ftp_credentials” which is stored in the “wp_options” table of the database. I deleted it via phpMyAdmin:
DELETE FROM
wp_options
WHEREoption_id
= 4613 ANDblog_id
= 0 AND CONVERT(option_name
USING utf8) = ‘ftp_credentials’ LIMIT 1You’ll need to change the “option_id” to your own number.
Hope that helps someone out there.
Please visit my site at https://www.whatsthebigidea.com and share your thoughts and comments. Thanks!
Forum: Plugins
In reply to: [Plugin: PingPressFM] Not working in WordPress 2.6.3Hey there!
I installed PingPressFM several days ago. How did you verify that the articles are being sent out? Thanks!
Forum: Plugins
In reply to: Regular expressions with redirection pluginHas anyone found some direction on using expressions? That would keep us from having to make a zillion redirections.
Thanks
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Upload image fails with server errorIt seems to upload the images though DOES NOT insert into post
Forum: Plugins
In reply to: [Plugin: SuperSlider-menu] new mootools 1.2 folding cat menuHello!,
Thanks for great plugin. Is there a way to avoid using “Widget” and embed the function code/s with options directly into the sidebar or page template?
Thanks!
Anyone?
Forum: Fixing WordPress
In reply to: How to list categories and description on page?Can you share? Thanks.
Forum: Fixing WordPress
In reply to: Remove trailing and leading spaces in .php filesfind ./ -name "*.php" -exec sed -i -e 's/^\s*//' {} \; this will remove left spaces tab etc find ./ -name "*.php" -exec sed -i -e 's/\s*$//' {} \; this will remove right spaces before new line find ./ -name "*.php" -exec sed -i -e '/^\n*$/d' {} \; delete blank empty lines
Forum: Plugins
In reply to: Pages with “more” tagThank you!
Forum: Installing WordPress
In reply to: Upgrade and New Install errorsI did a diff on wp-includes/cron.php (a another 2.3.1 install) and the one that was giving me errors (above) and they were different! I don’t know what the heck was going on though every time I’d remove the problematic (supposedly new 2.3.1) wp-includes/cron.php and overwrite (via ftp) it with the good 2.3.1 wp-includes/cron.php, the old one would reappear. I finally opened the file in vi and cut and pasted the good one and it worked.
I’m losing my brain.