crashnet
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to post by enable post by email for self-hosted wordpress sites?but i don’t think the shortcodes work. you still need Postie to mimic wp.com post by email functionality.
Forum: Fixing WordPress
In reply to: post-by-email: shortcodes not workingForum: Fixing WordPress
In reply to: WP-Cron out of controlmake sure to substitute “Prefix_” for your WP table Prefix, if you use one. Collation and DB Engine should be pretty similar to the ones below across the board.
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; CREATE TABLE IF NOT EXISTS <code>Prefix_commentmeta</code> ( <code>meta_id</code> bigint(20) unsigned NOT NULL auto_increment, <code>comment_id</code> bigint(20) unsigned NOT NULL default '0', <code>meta_key</code> varchar(255) default NULL, <code>meta_value</code> longtext, PRIMARY KEY (<code>meta_id</code>), KEY <code>comment_id</code> (<code>comment_id</code>), KEY <code>meta_key</code> (<code>meta_key</code>) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;Forum: Fixing WordPress
In reply to: WP-Cron out of controli guess the next step is find out the sql script to manually add the commentmeta table and see if the problem goes away. anyone can help with this?
hello!?
thanks in advance.
Forum: Fixing WordPress
In reply to: WP-Cron out of controlfound the following in the error log
[Thu Apr 22 22:08:34 2010] [warn] mod_fcgid: stderr: WordPress database error Table 'iwKFRD4UBiNwordp.rpzf_commentmeta' doesn't exist for query SELECT comment_id FROM rpzf_commentmeta WHERE meta_key = '_wp_trash_meta_time' AND meta_value < '1269392914' made by do_action_ref_array, call_user_func_array, wp_scheduled_deletethis could be causing wp-cron to loop over and over.
running /wp-admin/upgrade.php says the DB is already up to date
sorry but I didnt mention I am running WP 2.9.2
any advice?
Forum: Plugins
In reply to: [Plugin: Google Analytics for WordPress] wp-admin > Internal Server ErrorI get the same error when using Version 3.4.3 of the SMART YOUTUBE plugin.
running WP 2.9.2 with php as mod_fcgi on plesk 9.3.0
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Multiple Contact Forms For Multiple AuthorsForum: Fixing WordPress
In reply to: encoding problemsbut the visible text in the theme's files (which i translated to portuguese, thus it contains accents) shows funny chars where the accents are unless i change it to iso-8859-1we were talking about the same thing. i had two problems that occurred mutually exclusively. one of them was the problem above.
even after thinking i had fixed it, the “the visible text in the theme’s files” was still being displayed as messed up. FYI this is what finally nailed down every the last problem i had: saving it as “UTF-8 NO BOM” instead of plain “UTF-8”
reference: http://unicode.org/faq/utf_bom.html#BOM
Forum: Fixing WordPress
In reply to: encoding problemsthey were saved as UTF-8, because if i put UTF-8 in “Encoding for pages e feeds” the theme AND the admin display accents correctly. the good news: now NEW comments also appear correctly. problem was that after changed DB_COLLATE to empty and left UTF-8 for “Encoding for pages e feeds” i didnt submit a NEW comment to test. i just saw that the older comment, submitted prior to changing DB_COLLATE, was messed up and assumed that combination wasnt working.
in a few words, DB_COLLATE = ” fixed it.
thanks moshu!
Forum: Fixing WordPress
In reply to: encoding problemsthanks moshu.
hmmm, i’m using ultra-edit, and it defaults to UTF-8… maybe i need to save them as UNICODE?
when i re-open the files (after the editing) they show up fine in ultraedit. (and as mentioned, they actually show up fine in the admin section IF i set the encoding on pages to ISO-8859-1)