Forum Replies Created

Viewing 15 replies - 61 through 75 (of 100 total)
  • Forum: Fixing WordPress
    In reply to: Dialup Problem
    Thread Starter ptvguy

    (@ptvguy)

    For me, it’s just a matter of getting in too much of a hurry for a minor edit. It only happens on long posts. If I give it a couple seconds more until I’m sure the whole thing is loaded in the edit window, then there’s no problem at all.

    By all means. As far as I’m concerned, it ought to be stamped into the top of the README file that comes with the WordPress install.

    BTW, I’ve always wanted to use the word “cogent” in a sentence. ;>

    It’s also a good practice to leave the attribution of the theme designer unless you create your own or buy one. People put a lot of work into those things and often release them for free distribution. It will never hurt your business or the public’s perception of your worth to acknowledge the fact that other people have contributed their time, energy, and imagination to make you look good.

    Nope, sorry. I commented about my switchover in another thread.

    Nextwave: I don’t see how that would affect it, but I don’t have a Mac, so I don’t know. If you’ve got it working, then you might want to mark this “resolved.”

    HandySolo: I didn’t mean for that to come across like that. I was just typing an answer in a hurry. Sorry. : /

    The tuneup is very important, but it’s a plugin. You can’t activate it until after you have WordPress running initially.

    It says it’s trying to find a missing closing bracket “]” on line 1826 of the admin-functions.php file. Have you modded the code at all? That’s part of the wp_import_handle_upload function. My code on that line looks like this:

    $file = wp_handle_upload($_FILES['import'], $overrides);

    Try pulling a fresh copy of that specific file out of the ZIP file and uploading it over the current one.

    ptvguy

    (@ptvguy)

    Check out the recently launched Plainville Community Schools site which uses four WordPress blogs to teach different subjects. It’s not college, but it’s still pretty awesome. You can also try Crowe’s Class and Nanobyte Education.

    For some BLOGGER examples, consider Speaking of History…….. and Novel Discussions.

    Class Blogmeister is another blogging platform providing educational blogging services. Check out Room Twelve.

    ptvguy

    (@ptvguy)

    The code you posted above:

    <div id="teste"></div>
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="660" height="106">
    <param name="movie" value="banners/header.swf">
    <param name=quality value=high>
    <embed src="banners/header.swf" quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="660" height="106"></embed>
    <div>

    has some errors in it that would probably mess up the rest of the page display. You have an opening and closing DIV tag at the beginning and another opening DIV tag at the end that isn’t closed. You also have an opening OBJECT tag that should be closed right after the closing EMBED tag but isn’t closed at all.

    ptvguy

    (@ptvguy)

    I know what you’re talking about, pandask. My blog started out on WP.com and was then migrated to its own site.

    For any of you that have never been WP-hosted, there is a great sense of community there and “inside” support. As someone who posted regularly in their support forums, I gained literally hundreds of individual visitors each month coming to my site from the forum links. Also, they have “best of” and “top performing” lists of blogs linked from the main dashboard admin panel. You can get some idea of this on the wordpress.com home page.

    When others have asked me whether they should move from WP hosting to paid hosting, I always ask them what it is they’re trying to gain that WP doesn’t offer. In my case, I needed advertising and the ability to directly control my theme, overall CSS, and even core functionality. If you can’t name something very specific that you need to do with your site that can’t be done there, then there’s probably not a good reason to move.

    DISADVANTAGES

    • You’ll confuse your existing readers and probably lose some of them.
    • You’ll lose any existing standings or PageRank you may have already built up.
    • You’ll lose any existing outside links to your site.
    • When something breaks or gets messed up, there’s only you to fix it or pay someone else to.
    • You’ll no longer be included in any of the wordpress.com listings of “best of” or “best performing” blogs or other categories specific to that community.
    • You will definitely miss the natural sense of community and interconnectedness that exists on the WP-hosted blogs.

    ADVANTAGES

    • Direct control over any and every aspect of your site.
    • You can put as much or as little advertising as you want.
    • You can use any JavaScript or piece of code that happens to catch your fancy.
    • You can use ANY theme or plugin out there.
    • You can tweak any piece of code or formatting till it’s just the way you want it.

    That’s just a short list, but you get the idea. Self-hosting is not right for everyone any more than WP-hosting is. The decision comes down to weighing the advantages against the disadvantages.

    Again, let me repeat, if you can’t name something very specific that you need to do with your site that can’t be done there, then there’s probably not a good reason to move.

    Thread Starter ptvguy

    (@ptvguy)

    You’re right. I just posted the same question over there. I was just hoping someone here had figured it out. If it gets worked out, I’ll definitely post the answer here.

    ptvguy

    (@ptvguy)

    WordPress IS a CMS. Attempting to mesh the two (as they’re most likely using different databases) would probably be a pretty major piece of work. However, as Moshu indicated, we need a heck of a lot more information to even make an educated guess at this one.

    ptvguy

    (@ptvguy)

    Tom, I just reread my previous post and realized how pretentious I sounded. I don’t usually get into other people’s business like that. I must have been in a strange mood, perhaps a momentary lapse into self-importance. I apologize for that. : /

    I haven’t ready any policy against using public sites for student work…

    It’s not so much the posting of their work publically as it is the email addresses posted along with it. The fact that they give it to you, their teacher, doesn’t mean that they want me or anyone else to have it–possibly not even each other. You might want to consider having that feature removed.

    Will installing the admin menu plugin (that creates a menu on the top bar for logged in users) really risk my admin’s functionality?

    It shouldn’t, but backing everything up is always a good idea prior to any change. There’s a WordPress database backup plugin if you haven’t already gotten that. Just make a quick backup of your database, FTP down a full local copy of your site, and the worst thing that could happen is that you’ll spend an hour putting everything back where it was.

    I get the feeling that I’m not inspiring confidence here.

    The admin plugin for the menu on the top bar is pretty basic. It shouldn’t be any problem at all.

    ptvguy

    (@ptvguy)

    Oops, sorry everyone, a slight edit is necessary on the syntax of that last posting. Here’s what mine looks like now:

    function get_comment_author_link() {
    global $comment;
    $url = get_comment_author_url();
    $author = get_comment_author();

    if ( empty( $url ) || 'http://' == $url || 'ptvGuy' == $author || 'ptvguy' == $author )
    $return = $author;
    else
    $return = "<a href=\"$url\" class=\"externalLink\" rel=\"external\" title=\"$author\">$author</a>";
    return apply_filters('get_comment_author_link', $return);
    }

    If you don’t want your own username to open new windows as well, then replace the parts where I put “ptvGuy” with case-sensitive variations on the spelling of your username. If you don’t care about that, then don’t edit that part of the original function.

    Also, if you don’t want to set up a JavaScript to handle opening external document windows and you’d rather just stick with the old target="_blank", then just replace the part where I put class=\"externalLink\" with target=\"_blank\".

    ptvguy

    (@ptvguy)

    Oops, almost forgot, if you don’t want to set up a JavaScript to handle opening new windows–and I really recommend the one I use from Paul Boag over at boagworld–then it would probably work better as follows:

    Change this line as sited above by podz:

    $return = "<a href='$url' rel='external nofollow'>$author</a>";

    to this:

    $return = "<a href=\"$url\" rel=\"external nofollow\"
    target=\"_blank\">$author</a>";

Viewing 15 replies - 61 through 75 (of 100 total)