Forum Replies Created

Viewing 15 replies - 331 through 345 (of 350 total)
  • Once upon a time (WP 1.5?) I tried posting an image via e-mail, and, as I recall it worked like a charm.

    Now, when I read the codex page and saw “images and attachments will be posted inline,” I understood “inline” to mean the images would appear in the message (and I guess I was hoping for a link to attachments).

    But nope. It seems, as reported above, that the encoded data is dumped into the message.

    So I’d suggest a minor tweak to clarify the codex page for those like me for whom “inline” isn’t immediately (or even now, completely) understood.

    Am I hallucinating that this used to work? Is there any movement towards a plugin on this? Or *should* I be able to get pictures pulled from the e-mail to appear in the blog post?

    It doesn’t look like anyone’s asked for this feature in the Ideas section.

    [My problem isn’t offline blogging but how to get info from an e-mail list into the blog easily. Preserving formatting would be nice. But this is probably a separate thread.]

    Forum: Plugins
    In reply to: Event Calendar3 issue

    THANKS! Works like a charm on TBS-blue.

    Thread Starter converting2wp

    (@converting2wp)

    Turning off WP-cache one more time seems to have done the trick. It’s possible that I had disabled the plugin when what I should have done was disable the caching from its options screen.

    I’ll mark this resolved.

    Thread Starter converting2wp

    (@converting2wp)

    Nevermind. The plus/minus signs are back on the clean installs.

    I’ll monitor it for awhile before marking this “resolved” …

    Apologies if this is too step-by-step, but it wasn’t that long ago that I needed this level of detail.

    When logged in as an admin, your main menu will be # Dashboard Write Manage Links Presentation …
    Click Presentation

    In the Presentation submenu, you’ll see an item “Theme Editor”. Click that.

    Now you can click the file names down the left hand side and edit those files in the text area.

    The one you want is probably called Sidebar, sidebar.php or something similar.

    Somewhere in that file, there is a call to list_cats (or wp_list_cats). Both are PHP functions. list_cats takes positional parameters. wp_list_cats allows you to specify the parameters with a name/value notation.

    You’ll find wp_list_cats documented at
    http://codex.ww.wp.xz.cn/Template_Tags/wp_list_cats

    Now if you understand the notion of a function with parameters, you can go from the documentation to create a function call tailored to your specific needs.

    Make the change and click “update file” and you’re done.

    You don’t need to know much, if anything, about the PHP language to use the WordPress template tags as a very powerful site configuration tool. It may seem odd to get this nitty gritty to do what seems like a simple configuration, but once you’re comfortable with the system, I hope you’ll find the power worth the complexity.

    Thread Starter converting2wp

    (@converting2wp)

    No, actually. I’ve downloaded the theme files to my machine, make the changes locally and ftp them back up.

    lhk – have you moved on? or do you have time to let us know whether you’ve found anything closer to an acceptable WYSIWYG editor for WordPress?

    I, too, have a strong need for WYSIWYG editing in my support for a *very* non-technical community.

    Weird. You’re right, the site looks fine in IE, but Firefox seems to be ignoring the CSS.

    I found this one link
    http://www.cameraontheroad.com/?p=712
    that talks about Firefox CSS bugs, but, frankly, I didn’t see anything immediately applicable.

    On the other hand, I took a “work in progress” site where I’m generally using a theme based on Ocadia (http://beccary.com/goodies/wordpress-themes/), and flipped it over to the default theme (Kubrick), and all looks fine in both Firefox and IE. See http://rwc.aauw-nc.org for a day or two. [I have added a couple of plugins, but since I knew I’d be working with another theme, I haven’t touched any of the theme/default files at all.]

    What version of WordPress?

    If 2.0+, check your profile and make sure that “Use the visual rich editor when writing” is checked.

    Dreamhost said they don’t plan to update the mod_security rules, but they may update
    http://wiki.dreamhost.com/index.php/KB_/_Web_Programming_/_CGI%2C_PHP_%26_Databases#Extra_Web_Security
    to give info about this issue.

    Thanks. That was the pointer I needed.

    Yes, indeed, on Dreamhost, for example, turning off the “extra web security” allows me to publish the file just fine.

    I’ve a request in to Dreamhost support to see if the specific code I need could be added to some sort of “whitelist”.

    And in the meantime, I’ve found that munging the line with some extra white space is enough to allow the publish to go through even with mod_security turned on. [Which makes me wonder how much “security” is actually being provided …]

    Okay, I’m still getting the error mentioned in the original post, but the problematic string isn’t quite the same as reported above. Steps to reproduce:

    1. Create an empty file in the theme directory (e.g. bugtest.php)
    2. Edit the file with the theme editor and insert the string
    exec();
    3. Click the update button

    Again, WordPress 2.0.2.

    If there’s no response, I’ll try to figure out the bug submission process.

    Forum: Fixing WordPress
    In reply to: RSS

    If I understand you correctly, you want the list of articles from some other site to appear on a page in your blog. The other site has an RSS feed that “syndicates” its content.

    There are probably many ways to do this. The one I’m using is as follows:

    1. Install the feedlist plugin, see
    http://rawlinson.us/blog/?p=212 and download from
    http://dev.wp-plugins.org/file/rss-linked-list/feedlist.zip

    [Put the files on your server in the wp-content/plugins directory and then from the Plugins screen “activate” feedlist.]

    2. See the plugin’s readme.txt
    http://dev.wp-plugins.org/file/rss-linked-list/trunk/feedlist/readme.txt
    for lots of examples on how to use it. You’ve got two choices –
    a) Use the feedlist() function (action) in one of your templates. Go to Presentation > Theme Editor, and then add a call to feedlist() in the PHP code in one or more of those files. The URL of the RSS feed is one of the parameters to feedlist().

    b) Use “filter” syntax in a post or a page — just drop a comment into the HTML. See the examples for how to pass the URL to the filter.

    Hope that helps. Again, I’m sure there are other suggestions, but I’ll take this opportunity to thank the Feedlist author for the solution I’m using.

    Okay, I’ve worked tech support and know how bizarre this looks, but I can reproduce this reliably.

    I was trying to update a short template with a few lines of code, and got the above error. I narrowed it down to a problem when I tried to insert the following line:

    $feed_contents = curl_exec($ch);

    In that case I get the error message noted above.

    What’s even weirder is that if I change the “exec” to, say, “exce”, the update works fine.

    Changing other parts of the line — say curl to clur — doesn’t have any effect. It just appears that if “exec(” appears in the file the error above will appear.

    I’ve checked this on a completely different file — 404.php — and confirmed that the error appears when I try to add the string “exec(” to that file. Transposing characters (i.e. “exce(“) and the update goes through fine.

    I’m on WP 2.0.2. I’ve got other ways to edit the file without using the WP Admin module — but it might be a problem someone could look into.

    And what I don’t know could fill several boxcars – so if there’s a reason I shouldn’t be using the above code (copied from the Dreamhost wiki), I’m glad to be instructed.

    While I appreciate the information on the Moving_Wordpress page, is there any plugin (or other option I’ve missed) that would allow “importing from WordPress to WordPress”?

    For instance, when moving a site to a completely new server, I’d like to just point at the old server and suck in all the old data. This also might simplify the process of upgrades —

    1) Install clean installation/database (often automated by hosting provider)
    2) copy in themes, plugins and ???
    3) Then just “import” all the content stored in the old database.

    This is essentially the process described in the Codex for “Moving to a New Server with Fantastico” but with some automation in the database backup and restore and the changes necessary – so I’m wondering if anyone has done that automation.

    Thanks much!

Viewing 15 replies - 331 through 345 (of 350 total)