Forum Replies Created

Viewing 15 replies - 511 through 525 (of 596 total)
  • Thread Starter Laughinglizard

    (@laughinglizard)

    Hacks and CVS downloads have never really worked well together. However, on your page, it looks as if the Waypath hack does not even show up on the source of the page. Make sure the hack has not been commented out by CVS in the upgrade process. The comment section of the new CVS has quite a few spam prevention and comment control improvements which changes the structure of the comments.

    Ok Shae, I see your problem now, much more clear. I can replicate the problem on my blog as well. I am swamped at this moment but as soon as I have some time, I will look at it. 🙂
    Peace

    Anonymous: Are you getting the Error: ‘document.form.comment’ even without using the hack we are discussing here? Even so, humor us and try disabling your Zonealarm to test the comments. Without knowing much about your situation or your problem makes us shoot in the blind. A link to your blog/comment area might help us get a better picture.

    Thread Starter Laughinglizard

    (@laughinglizard)

    Some changes made.
    Release version should work a little better. Please download the application again if you ran into some problems before.

    Forum: Fixing WordPress
    In reply to: Link problem

    I recently ran into this issue as well. The problem is that the comments go through a sanitising feature which takes out malicious content but also filters out some useful parts of URLs in comments. Here is the fix, though I suggest you leave it the way it is for security:
    Find this function inside b2template.functions.php which is inside the b2-include folder:
    function comment_text() {
    global $comment;
    $comment_text = stripslashes($comment->comment_content);
    $comment_text = str_replace(‘<trackback />’, ”, $comment_text);
    $comment_text = str_replace(‘<pingback />’, ”, $comment_text);
    $comment_text = convert_chars($comment_text);
    $comment_text = convert_bbcode($comment_text);
    $comment_text = convert_gmcode($comment_text);
    $comment_text = convert_smilies($comment_text);
    $comment_text = make_clickable($comment_text);
    $comment_text = balanceTags($comment_text,1);
    $comment_text = apply_filters(‘comment_text’, $comment_text);
    echo $comment_text;
    }
    Change it to:
    function comment_text() {
    global $comment;
    $comment_text = stripslashes($comment->comment_content);
    $comment_text = str_replace(‘<trackback />’, ”, $comment_text);
    $comment_text = str_replace(‘<pingback />’, ”, $comment_text);
    $comment_text = convert_chars($comment_text);
    $comment_text = convert_bbcode($comment_text);
    $comment_text = convert_gmcode($comment_text);
    $comment_text = convert_smilies($comment_text);
    $comment_text = make_clickable($comment_text);
    //Made change to comments to make some links work
    $comment_text = balanceTags($comment_text,0);
    $comment_text = apply_filters(‘comment_text’, $comment_text);
    echo $comment_text;
    }

    What is the time on your server? That would be a place to start.

    pingback_ping() function is only used when using the MoveableType API into xmlrpc.php in WordPress. The $debug=1 you are talking about, affects the pingback() functions inside of b2functions.php
    I would just like to say that if any other APIs were used with your wapblogger(if that were configurable), this problem would not occur.

    Forum: Fixing WordPress
    In reply to: Possible bugs?

    Note to community members using modified index.php or any other hacks in their WP: Please be careful of CVS upgrades/crawls. Make sure you backup EVERYTHING (including your database) before attempting an upgrade. Bleeding edge is exactly that. 🙂
    BTW: if you have run the upgrade scripts on your database, but want to back down from actually upgrading the WP folder, there are some ways of getting around to using the upgraded database with older php scripts. It is very messy, but still saves losing all your posts/data or worse. It is always a good idea to have 2 seperate blogs, a live and a test, with different databases.
    Peace.

    I abstained from this conversation because there could be a bunch of different answers to your question and I was waiting for one of the admins to jump in. Theoretically, it is very possible to have more than one blog inside a single wordpres installation. There is a variable embedded inside WP called blogID which, much like MT, can point to a bunch of very different blogs being generated from the same code. However, some of the code has been hardset to look at blogID = 1, thus limitings its power. Also, because WP generates pages on the fly (as requested by the visitor), your index file will will have to contain more input to differentiate between various blogs. (e.g. …/blog/index.php/blogID/2 or something) I would say that if you are (more than a beginner) php programmer and are willing to be adventerous, give it a shot.

    Thread Starter Laughinglizard

    (@laughinglizard)

    Here is a link to a compressed mfc42d.dll
    http://www.digitalfilter.com/Mfc42d.zip
    Please let me know if it did the trick.

    <input type=”text” name=”submit” size=”15″ />
    Should be:
    <input type=”text” name=”s” size=”15″ />

    Just something of note here (from a linux/UN*X system admin point of view). When creating links to provide source code, remember to not do that for the php files that might contain any kind of config information for your blog. That is a huge security risk. I try to stay away from providing source (by using random symbolic file links) without copying it to another directory, checking it through and renaming the file. Symbolic links can also be very evil when performing backups of your directories and/or comparing time stamps.

    That is not a very useful solution to comment spam. That method has been tried, tested and has somewhat failed due to the fact that a lot of spammers are manually entering their spam content. However, if there is a lot of interest in this method from the WP community, I could put some time into a hack.

    As promised, here is the quiet release of blogPost 1.0 Beta:
    Here is a small list of features and bugs.

    #Features include (for now), posting to multiple blogs, comment and ping control, category control,
    –more– and –excerpt– modification ability.
    #Bugs: There are quite a few for now. I have not been able to test this on too many blog applications
    I know that the comments do not get blocked on MT, their documentation sucks
    If someone could get me an LJ code, I could test it on there
    Any others, let me know.

    Here is the download link to blogPost 1.0 Beta. Have fun!

    Forum: Plugins
    In reply to: codergurl’s hacks

    Added your hacks to my list, including those of Jon, Mike and others. If anyone else has significant hacks for WP, please send me a link or simply logon and blog away at http://dinki.mine.nu/word/
    I figure when these hacks get put into their right place, my site will be a good starting point. 🙂

Viewing 15 replies - 511 through 525 (of 596 total)