Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 31,951 through 31,975 (of 32,503 total)
  • Author
    Search Results
  • #52103
    Null
    Member

    Yeah, thats why I ask that here :) I have no clue how to do that!

    #52094
    ardentfrost
    Member

    Why wouldn’t you want to use it as a plugin? There’s a filter applied to the reply count call specifically so you can do something like what you’re asking for.

    If you want to hardcode it, you have to go to template-functions.php and find the “get_topic_posts” function and do the -1 there.

    #52143
    Null
    Member

    About the placing, where ever i placed it in the header it never turned out right. Sec I dont know how to build sugh a menu like this, i am a compleet retar…. noob :)

    #52093
    Null
    Member

    If I don’t wanna use it as a plugin, but hardcode it? Then I put it in index.php? and where in the index.php?

    Thx for the help

    #52092
    ardentfrost
    Member

    this is untested…

    make a file in your my-plugin directory and call it whatever you want. Insert the following:

    global $topic;

    add_filter ( 'get_topic_posts', ($topic->topic_posts)-1, $topic->topic_id );

    That should work

    #52100
    ardentfrost
    Member

    just find where it is and add this:

    <a href="<?php topic_link(); ?>">First Post</a>

    #1067
    Null
    Member

    Wel when posting etc you see that AJAX thingy fading. It’s YELLOW though and I think it should be green, just like the rest of the template. Plz fix :)

    #51738

    In reply to: Guest user

    steven19
    Member

    *bump* :(

    #51171

    In reply to: Private Forum script

    topiq
    Member

    i installed the site_opitons plugin. but i get some kinds of errors.

    in the “private forum management” i get this errors:

    Warning: array_key_exists() [function.array-key-exists]: The second argument should be either an array or an object in /srv/www/httpd/phost/c/com/pytalhost/cessi/web/bbpress/my-plugins/private-forums.php on line 29

    value="2" > News

    and if i want to change the message a user gets if he is not allowed to access a private forum:

    Fatal error: Call to undefined function is_serialized() in /srv/www/httpd/phost/c/com/pytalhost/cessi/web/bbpress/my-plugins/site-options.php on line 190

    thanks for your help!

    PS: in the SITE OPTIONS tab i get nothing but a submit button…

    #50962
    anotherbrick
    Member

    Alright :) I’d like to follow the progress, and contribute if possible. I have a need for such a thing in an ongoing project, so I have time to give for this(I’m new-ish to PHP, but not to programming in general – C/C#/Ruby). Lemme know if you make a start!

    #50961

    Ah … this isn’t implemented yet. But would be a nice idea for a plugin, I think I’ll give it a try =)

    #50950
    spencerp
    Member

    @talkaboutdesign, wow, that’s nice! Thanks for doing that! Can’t wait until ya release it. ;) :)

    spencerp

    #51169

    In reply to: Private Forum script

    topiq
    Member

    it does not work for me. when i want to access the private forum plugin in the admin panel i get this error:

    Fatal error: Call to undefined function get_option() in /srv/www/httpd/phost/c/com/pytalhost/cessi/web/bbpress/my-plugins/private-forums.php on line 22

    #50643

    In reply to: rawurlencode() Error

    plognark
    Member

    Ok, I lied, that actually doesn’t fix the problem.

    However, what does seem to work is error supression:

    $this->query_string .= $wpvar . ‘=’ . @rawurlencode($this->query_vars[$wpvar]);

    Just throw an @ sign in front of the offending rawurlencode function and it seems to clean things up.

    #51846
    spencerp
    Member

    In your forum’s root directory.. you have to make a folder called: my-plugins and then upload the file there.. Call a blank file: my_resolve_ title.php and add the above codes into it.. make sure there isn’t white space before the: <?php and after the last: ?>

    Save it, and upload it to your my-plugins folder.. Good luck!

    spencerp

    #51845
    suleiman
    Member

    where does this plugin code get dropped exactly?

    #50840

    In reply to: Error for tags.php

    chrishajer
    Participant

    @richardjeananders: this addition to the .htaccess absolutely fixed this exact problem for me. I was seeing the same error in Firefox when I clicked on the Tag link in the breadcrumb navigation. PHP scripts were being interpreted by PHP 4.4.4 on the server until I created an .htaccess file with this one line. Now, PHP scripts are being interpreted by PHP 5.1.6. I can’t believe that fixed it. Thank you very much.

    .htaccess

    AddType x-mapp-php5 .php

    #52117

    In reply to: Private Forums Plugin

    Trent Adams
    Member

    Thanks! The plugins work now with the latest code!

    Cheers,

    Trent

    #52114

    In reply to: Private Forums Plugin

    so1o
    Participant

    sorry about the mis communication..

    the latest code for bbpress.. :) coz the is_serialized function is in the latest code but not in blix i think…

    #52113

    In reply to: Private Forums Plugin

    Trent Adams
    Member

    I just redownloaded both site options and private forum plugins and reinstalled them.

    Still get the error:

    Fatal error: Call to undefined function: is_serialized() in /var/www/html/blog/forum/my-plugins/site-options.php on line 179

    Should I just give up and get lastest code?

    Trent

    #52112

    In reply to: Private Forums Plugin

    so1o
    Participant

    The plugin currently works on the latest code.. let me check if i can fix the code to work with blix..

    Trent:

    can you check with the latest code and let know..

    #52111

    In reply to: Private Forums Plugin

    ardentfrost
    Member

    Way to keep the bar raised for developing plugins s101 ;)

    Thanks for the plugin, one less thing I gotta make

    #52110

    In reply to: Private Forums Plugin

    Trent Adams
    Member

    If I submit anything in that page, it gives me the following error:

    Fatal error: Call to undefined function: is_serialized() in /var/www/html/blog/forum/my-plugins/site-options.php on line 179

    Trent

    #52109

    In reply to: Private Forums Plugin

    Trent Adams
    Member

    I am getting this beside each item in the private forum list in the admin:

    Warning: array_key_exists(): The second argument should be either an array or an object in /var/www/html/blog/forum/my-plugins/private-forums.php on line 29

    value="1" > Terms of Service

    Any ideas?

    #50642

    In reply to: rawurlencode() Error

    plognark
    Member

    Well, I came up with an ugly fix, especially since I don’t actually know what I’m doing.

    I’ve been trying to integrate the BBpress forum right inside my WP theme, which is what I imagine you were trying to do.

    To fix it I added this switch right at the top of my bbpress template header:

    $bbpressswitch = 1;

    unset($_SERVER);

    Then I went into classes.php for wordpress and put an if/else ‘switch’, basically:

    The first line there is 1645 in my file

    function build_query_string() {

    $this->query_string = ”;

    foreach ($this->public_query_vars as $wpvar) {

    if (isset($this->query_vars[$wpvar]) && ” != $this->query_vars[$wpvar]) {

    $this->query_string .= (strlen($this->query_string) < 1) ? ” : ‘&’;

    // bug fix for BBpress integration

    if ($bbpressswitch == 1) {

    // $this->query_string .= $wpvar . ‘=’ . rawurlencode($this->query_vars[$wpvar]);

    // if the url is being accessed from a page outside of WP that is using the header

    // or other data, turn off this URL encoding.

    } else {

    $this->query_string .= $wpvar . ‘=’ . rawurlencode($this->query_vars[$wpvar]);

    }

    // end of bug fix

    }

    }

    It’s ugly, and I’m a n00b at this stuff, but it does seem to have cleaned up my error. I guess the bbpress URL’s don’t work so good when sent through the WP URLencode setup, so turning them off when going into a BBpress page seemed like it might work.

    I don’t know if there are any other repurcussions from this change, but again, it turned off the error, and I haven’t seen any fallout…yet.

    There are other sites online that seem to offer a fix for the same issue, like this:

    http://forum.j-prosolution.com/openwp-bugreport/2637-warning-rawurlencode-expects-parameter-1-string.html

    But the fix they suggest kills all of your static pages or category links and always sends you to the main blog page.

Viewing 25 results - 31,951 through 31,975 (of 32,503 total)
Skip to toolbar