fyse
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem whit character encodingMy problem was solved when I found my phone was sending emails encoded in base64, and I suspect that is where things are going wrong for you too. I found I just had to edit the script to use the function ‘base64_decode’ on ‘body’, and on a substring of ‘subject’.
Forum: Fixing WordPress
In reply to: wp-mail.php doesn’t workI dunno how much help I can be, but I understand there can be problems with scripts detecting emails that have been already processed in any way by another program. For example, I understand the wp_gmail script (allowing use of Gmail) sometimes doesn’t pick up emails, even if they are marked as unread. I dunno whether this has any bearing on your situation, though. Sorry I can’t be of more help.
Forum: Fixing WordPress
In reply to: Problem whit character encodingI’m suffering a similar problem. I can post without problem from a normal email account, but get gibberish when posting from my phone. My phone sends email encoded in UTF-8, while my email client sends in ISO-8859-1, so it would seem this is the problem. I think the solution would be to convert the string format inside the wp_mail script, which is what I’m gonna try and do. I’ll obviously post the solution, should I find one, but any help from someone more expert would be appreciated. (I’m a novice with PHP.)
I suggest you send test emails from an account that works for posting, as well as your phone, and use you email client to view the message source. You should find a line like…
Content-Type: text/plain; charset=ISO-8859-1;
… in both. Posting the type of encoding from your phone should make it easier for people to help.
Forum: Fixing WordPress
In reply to: Sidebar Links ListYou should be able to find everything you need here…
http://codex.wordpress.org/Template_Tags
…in the ‘Links Manager Tags’ section.
For example, you can pass arguments to the ‘get_links’ tag to show only links from a certain category. The number of links to show from each category is set within WordPress, under ‘Links > Link Categories’.
You can use the ‘get_links_list’ function for the static page, as you said, but it wont display any links you have chosen to be invisible. Your best bet is probably to keep them all visible, and use the other tags elsewhere on the site to only display the ones you want.
Hope this helps. (This is my first attempt at support!)
Forum: Fixing WordPress
In reply to: wp-mail.php doesn’t workWhen you say ‘wp-mail never sees it’, do you mean that when you execute the script (by viewing example.com/wp-mail.php in you web browser) that it produces output saying ‘no messages found’ (or something like that)?
Or does it produce other error messages?
Forum: Plugins
In reply to: Post content not appearing on emailed postsI found the solution. Ditch the bad script that doesn’t work, and use the perfectly functioning one at…
http://www.stealthangel.net/archives/05172005/65
Sorry for the needless hassle, but I hope if anyone finds their way to this thread with the same problem it’ll point them in the right direction.
Cheers!
Forum: Plugins
In reply to: Post content not appearing on emailed postsAh, I’ve just realised something else I should have mentioned. I was messing around with the script, with the original version the last set of error messagese actually reads…
Notice: Undefined index: metakeyselect in /home/nrcf2/public_html/fyse-floatingface-com/wp-admin/admin-functions.php on line 378
Notice: Undefined index: metakeyinput in /home/nrcf2/public_html/fyse-floatingface-com/wp-admin/admin-functions.php on line 379
Notice: Undefined index: metavalue in /home/nrcf2/public_html/fyse-floatingface-com/wp-admin/admin-functions.php on line 380
Forum: Plugins
In reply to: Post content not appearing on emailed postsThanks for the help. That gets rid of the following line…
Notice: Use of undefined constant moblog – assumed ‘moblog’ in /**********************/wp-gmail.php on line 139
…but unfortunately the other error messages remain, along with the lack of a content for my posts. Any other ideas? I’m at a loss, and my PHP knowledge is minimal…
Forum: Plugins
In reply to: Post content not appearing on emailed postsSorry, that should work now.