Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 23,051 through 23,075 (of 32,481 total)
  • Author
    Search Results
  • #55972

    In reply to: Show off your Forum !!

    http://tempestchasing.com/forum/

    Plugins:

    Akismet

    Bavatars

    bbPM

    bbPress-WordPress syncronization

    bbPress Favicon

    bbPress Moderation Suite

    bbPress Polls

    bbPress signatures

    bbPress Smilies

    C*nsor

    Members Online

    Reputation (Karma) for bbPress

    Subscribe to Topic

    Topic Icons

    Theme: Simples

    This forum is integrated with my WP blog, which is a weather/severe weather blog. The site is finished, its just picking up some users that is a but tough :) feel free to check it out. If you at all feel like you want to register, do it through WP, not bbPress. I haven’t altered the login system on bbPress yet

    #80292
    bb-gian
    Member

    @apam

    What I did to make images work with Allow Images plugin is to go in the plugin’s php file and comment out this chunk of code (at the bottom of the file):

    remove_filter( ‘pre_post’, ‘encode_bad’ );

    add_filter( ‘pre_post’, ‘allow_images_encode_bad’, 9 );

    add_filter( ‘pre_post’, ‘allow_images’, 52 );

    Like this:

    // remove_filter( ‘pre_post’, ‘encode_bad’ );

    // add_filter( ‘pre_post’, ‘allow_images_encode_bad’, 9 );

    // add_filter( ‘pre_post’, ‘allow_images’, 52 );

    That worked for me. Hope it does work for you as well.

    Bonus tip: with TinyMCE installed, if you try to “Edit” a post, you get <p>tags all over the text. To fix that go to this file:

    bb-includes/functions.bb-formatting.php

    Find this chunk of code:

    function bb_code_trick_reverse( $text ) {

    $text = preg_replace_callback(“!(

    |)(.*?)(
    |)!s”, ‘bb_decodeit’, $text);
    $text = str_replace(array(‘<p>’, ‘’), ‘’, $text);
    $text = str_replace(‘</p>’, “n”, $text);
    $text = str_replace(‘<coded_br />’, ‘’, $text);
    $text = str_replace(‘<coded_p>’, ‘<p>’, $text);
    $text = str_replace(‘</coded_p>’, ‘</p>’, $text);
    return $text;
    }

    And comment out this two lines:

    // $text = str_replace(array(‘<p>’, ‘
    ’), ‘’, $text);

    // $text = str_replace(‘</p>’, “n”, $text);

    You may now have a proper Editor.

    #80457
    chrishajer
    Participant

    If the theme author coded it in to the theme, just find it in the theme and remove it.

    You can also change it by creating a functions.php file in your theme folder, and put this in it:

    <?php
    remove_filter('bb_topic_labels', 'bb_closed_label');
    add_filter('bb_topic_labels', 'my_closed_label');
    function my_closed_label( $label ) {
    global $topic;
    if ( '0' === $topic->topic_open )
    return sprintf(__('[Read Only] %s'), $label);
    return $label;
    }
    ?>

    That changes [Sticky] to [Read Only]. You can change the [Read Only] to whatever text you want instead of sticky.

    #80609
    chrishajer
    Participant

    This makes the block quotes on your test thread look different in my browser:

    #thread .entry blockquote {
    color:red;
    padding:0 25px;
    font-weight: bold;
    font-style:italic;
    }

    Just add that after #thread .entry in your style.css and change the styling rules to whatever you want.

    #32099
    meursault2
    Member

    Homepage – http://www.sublimeoblivion.com/forum/

    Using a heavily-customized theme of Options 0.1 Alpha (Dark) by Justin Tadlock (http://bbshowcase.org/themes/bbpress-options.zip)

    [blockquote]Quite simply, the problem is that BBquotes don’t work.[/blockquote]

    It doesn’t matter whether I use

    Quote:
    , [blockquote] or the HTML code for blockquotes.

    I’ve noticed that removing the { margin: 0; padding: 0; } at the very start of the style.css does enable it, but it jumbles up the paddings and alignments for the header menus and topic posts. My attempts to import code enabling normal quoting from other themes were unsuccessful. PS. Justin’s “Structure” theme also doesn’t support quotes.

    Any help or advice will be much appreciated, thank you.

    #55970

    In reply to: Show off your Forum !!

    ioni
    Member

    Hi there,

    my turn, I suppose!

    Well, the ioni2 theme is deeply integrated with WordPress (it relies on WP to build menu and parts of footer, for instance), but in any other aspect it is purely bbPress:

    forum.sunshine.by

    Uses:

    • Akismet
    • Allow Images (allthough truth to tell it is not working as well as it is supposed to.. but alas!)
    • bbPress Sitemap Generator
    • bbPress Web Compression (A must have!)
    • Related Topics
    • Simple Online List
    • Topic Icons (almost useless with my theme)

    There are not much people of the forum so you may freely check it out and try post anything to see how it is working! The theme is translated into Russian (although written in English), and shall you desire to get it – just let me know :) The same goes for the translation.

    The major point here is that the theme is HTML5 (I keep developing it, just keep that in mind) – and it looks exacly the same in IE, FF, Chrome, Opera and Safari

    Wanna check it outforum.sunshine.by?

    #80595
    Jiyong
    Member
    #32096
    KillerSneak
    Member

    So i need some help. I have integrated BBPress with WordPress but the template I’m running only loads the Jquery SuperFish menu when it finds WP 2.8 – i need to alter the code so it also loads when it find BB press 1.0 / 1.0.2

    here’s the code

    <?php

    if ( $wp_version != '2.8')

    {

    wp_deregister_script('jquery');

    wp_enqueue_script('jquery', get_template_directory_uri() . '/js/jquery-1.3.2.min.js', null, '1.3.2', false);

    wp_enqueue_script('jquery-ui', get_template_directory_uri() . '/js/jquery-ui-1.7.1.min.js', 'jquery', '1.7.1', false);

    } else {

    wp_enqueue_script('jquery-ui-tabs', null, array('jquery', 'jquery-ui-core'), null, false);

    }

    if ( $bb_version != ‘1.0’)

    {

    wp_deregister_script(‘jquery’);

    wp_enqueue_script(‘jquery’, get_template_directory_uri() . ‘/js/jquery-1.3.2.min.js’, null, ‘1.3.2’, false);

    wp_enqueue_script(‘jquery-ui’, get_template_directory_uri() . ‘/js/jquery-ui-1.7.1.min.js’, ‘jquery’, ‘1.7.1’, false);

    } else {

    wp_enqueue_script(‘jquery-ui-tabs’, null, array(‘jquery’, ‘jquery-ui-core’), null, false);

    }

    wp_enqueue_script(‘jquery-cycle’, get_template_directory_uri() . ‘/js/jquery.cycle.all.min.js’, ‘jquery’, null, false);

    wp_enqueue_script(‘jquery-validate’, get_template_directory_uri() . ‘/js/jquery.validate.min.js’, ‘jquery’, null, false);

    if ( !function_exists(‘pixopoint_menu’) ) {

    wp_enqueue_script(‘hoverintent’, get_template_directory_uri() . ‘/js/superfish/hoverIntent.js’, ‘jquery’, null, false);

    wp_enqueue_script(‘superfish’, get_template_directory_uri() . ‘/js/superfish/superfish.js’, ‘jquery’, null, false);

    }

    if ( is_singular() ) {

    wp_enqueue_script(‘comment-reply’);

    }

    wp_enqueue_script(‘arras-base’, get_template_directory_uri() . ‘/js/base.js’, ‘jquery’, null, false);

    wp_head();

    arras_head();

    if ( !function_exists(‘pixopoint_menu’) ) :

    ?>

    <script type=”text/javascript”>

    $(document).ready(function() {

    $(‘.sf-menu’).superfish({

    delay: 1000, // one second delay on mouseout

    animation: {opacity:’show’,height:’show’}, // fade-in and slide-down animation

    speed: ‘fast’, // faster animation speed

    autoArrows: false, // disable generation of arrow mark-up

    dropShadows: false // disable drop shadows

    });

    });

    </script>

    <?php endif ?>

    #80502
    weildish
    Member

    Luckily my system administrator makes automatic backups of the databases, so he just dropped all of the tables and then restored my database from about a day before. After a lot of research, I found it was basically impossible to restore the affected tables without a backup because not only did it change a lot of stuff I didn’t understand with some of the columns and the index of the posts table, but it changed every single “post_status” entry to “0” instead of what they should be– “publish,” “draft,” and etcetera. Anyway, things were really messed up.

    My advice to anyone who has a similar problem and comes across this post is:

    A.) Look before you leap! Go over your settings many times before installing!

    B.) Backup the databases regularly and especially when installing or upgrading!

    Thank you, crishajer, for your help. I greatly appreciate the time you took. Again, thank heaven for sysadmins with more sense than site administrators! :)

    #32097
    ZoiX
    Member

    Hi all!

    I have a problem with BBPress:Syntax Hiliter plugin and simple quotes (‘) or normal quotes (“).

    When in my code I have a quote, the plugin (or bbpress?) change it by the hexadecimal code.

    For example, if in my code I have a simple quote (‘), appear in the code &#39.

    .

    I was reading an issue about it and maybe the functions.bb-formatting.php file have an answer, anyway, I don’t have what I need to edit.

    Anyone have any idea?

    Thank you :)

    #56797

    In reply to: Plugin: Avatar Upload

    dangerousape
    Member

    @wilcosky and everyone else who’s asked here and on the other thread, having cracked it this afternoon with the aid of a couple of online code snippets and my limited PHP skills, here’s how to display your avatars from this plugin in WP if you have WP and bbPress integrated and sharing the same user table.

    In your sidebar, or wherever you want to have them (or a “welcome, guest” message or whatever) appear, put this code snippet…

    <?php global $user_login;
    get_currentuserinfo();

    if ($user_login == '') {
    echo('Welcome Guest');
    } else {

    $directory = '/your/DOCUMENT_ROOT/path/to/forum/avatars/';
    $flag = false;
    $ext = array( '.jpg' , '.gif' , '.png' );

    for( $i = 0; count( $ext ) > $i; $i++ )
    {
    if( file_exists( $directory . $user_login . $ext[$i] ) )
    {

    $flag = true;
    $name = $user_login . $ext[$i];
    }
    }
    if( $flag == true )
    {
    echo "<img src="http://www.yoursite.com/forum/avatars/".$name."" />";
    }
    }
    ?>

    Note that the path for $directory is your DOCUMENT_ROOT one (you can use an ‘echo’ or ‘print’ PHP command to find it if you don’t know it, google for instructions; it’s usually something like ‘/home/user/public_html/’), while the later image source path is the standard http one. If your avatar directory is somewhere other than /yoursite.com/forum/avatars/ then, obviously, you’ll need to edit accordingly.

    If you use a different set of possible image file extensions than the usual .jpg, .gif and .png trio you’ll also need to edit the $ext array (so if you don’t allow .gifs, it’d be $ext = array( '.jpg' , '.png' ) for instance).

    #80501
    chrishajer
    Participant

    Hopefully you have a database backup since that will be the easiest way to fix this. If you used the same database prefix for WordPress and your bbPress installation, bbPress tried to install into some existing WordPress tables.

    Here is a list of the tables created by both packages:

    bbPress tables:

    forums
    meta
    posts
    terms
    term_relationships
    term_taxonomy
    topics
    users
    usermeta

    WordPress tables:
    terms
    term_taxonomy
    term_relationships
    comments
    links
    options
    postmeta
    posts
    users
    usermeta

    From that list, it looks like the following tables have the same names in bbPress and WordPress:

    posts
    terms
    term_relationships
    term_taxonomy
    users
    usermeta

    So, if you used the same prefix, I think bbPress would just happily write into those tables. I’ve never done it, so I’m not certain, but I think that’s what would happen.

    I guess it’s possible also that it just leaves the existing WordPress tables alone, but the tables are not usable in bbPress, so there could be weirdness. It’s also possible that bbPress tries to alter the tables and fails in some places, making the table unusable for bbPress and probably WordPress.

    It’s easiest to just replace the database with a recent backup. If you don’t have that, then you will have to look at the database directly with a tool like phpMyAdmin and see exactly what happened.

    #32063
    weildish
    Member

    (As an afterthought, this ought to be in troubleshooting, but I can’t change it… sorry!)

    Hello. Let me introduce myself. I am an idiot.

    I installed bbPress to my server. I wanted to have user integration with my WordPress installation. Great. I ran the installation, but I knew I’d have to do a lot of things manually because of my server set up. I entered the appropriate information for the config file, and it prompted me to create the config file with certain information in it because it didn’t have permissions to do so. Exactly what I expected. I ran the rest of the setup as it should go, and when I had it commence with the installation, it said that it had installed but with some minor errors. I looked at the config file, and the keys hadn’t been saved. So I entered in the keys as they should have gone, but then I stupidly changed the blasted database prefix to the same prefix as my WordPress installation thinking for some stupid reason that I was changing the setting for WordPress integration! IDIOT! It installs again with some “minor errors,” but this time going to the address of the forum actually brought up the forum instead of the installation prompt. I mozy on over to my WordPress installation (http://ipfcubed.com&#8211; which I’ve currently set to be inaccessable to the public– you’ll see why). Now every single draft and scheduled post (as well as unapproved submissions from contributors in the community) is now visible on the main page. When I make a new post, it says the year is 1999 (EDIT: Sorry– the date is still correct, but the post’s address says that it’s 1999: http://ipfcubed.com/1999/11//. The published posts count is also off– it says I have zero published posts in the dashboard. I can see that I’ve majorly messed up the posts table. Can someone PLEASE help me fix it? Any and all suggestions are welcome! Below I’ve provided both the error message and the installation log that it gave me:

    THE LOG (errors below this):

    Referrer is OK, beginning installation…<br />
    >>> Setting up custom user table constants</p>
    <p>Step 1 - Creating database tables<br />
    >>> Modifying database: jordan_wp (localhost)<br />
    >>>>>> Table: ipf3_forums<br />
    >>>>>>>>> Creating table<br />
    >>>>>>>>>>>> Done<br />
    >>>>>> Table: ipf3_meta<br />
    >>>>>>>>> Creating table<br />
    >>>>>>>>>>>> Done<br />
    >>>>>> Table: ipf3_posts<br />
    >>>>>>>>> Adding column: post_id<br />
    >>>>>>>>>>>> SQL ERROR! See the error log for more detail<br />
    >>>>>>>>> Adding column: forum_id<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Adding column: topic_id<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Adding column: poster_id<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Adding column: post_text<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Adding column: post_time<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Adding column: poster_ip<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Setting default on column: post_status<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Changing column: post_status<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Adding column: post_position<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Dropping index: PRIMARY<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Adding index: PRIMARY<br />
    >>>>>>>>>>>> SQL ERROR! See the error log for more detail<br />
    >>>>>>>>> Adding index: topic_time<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Adding index: poster_time<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Adding index: post_time<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Adding index: post_text<br />
    >>>>>>>>>>>> Done<br />
    >>>>>> Table: ipf3_terms<br />
    >>>>>>>>> Changing column: term_id<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Changing column: name<br />
    >>>>>>>>>>>> Done<br />
    >>>>>> Table: ipf3_term_relationships<br />
    >>>>>>>>> Changing column: object_id<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Changing column: term_taxonomy_id<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Adding column: user_id<br />
    >>>>>>>>>>>> Done<br />
    >>>>>> Table: ipf3_term_taxonomy<br />
    >>>>>>>>> Changing column: term_taxonomy_id<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Changing column: term_id<br />
    >>>>>>>>>>>> Done<br />
    >>>>>>>>> Changing column: parent<br />
    >>>>>>>>>>>> Done<br />
    >>>>>> Table: ipf3_topics<br />
    >>>>>>>>> Creating table<br />
    >>>>>>>>>>>> Done</p>
    <p>Step 2 - WordPress integration (optional)<br />
    >>> WordPress address (URL): http://ipfcubed.com/<br />
    >>> Blog address (URL): http://ipfcubed.com/<br />
    >>> WordPress cookie keys set.<br />
    >>> WordPress "auth" cookie salt set from input.<br />
    >>> WordPress "logged in" cookie salt set from input.<br />
    >>> Fetching missing WordPress cookie salts.<br />
    >>>>>> WordPress "secure auth" cookie salt not set.<br />
    >>> User database table prefix: ipf3_</p>
    <p>Step 3 - Site settings<br />
    >>> Site name: IPF³ Forum<br />
    >>> Site address (URL): http://forum.ipfcubed.com/<br />
    >>> From email address: jordanspencer@ipfcubed.com<br />
    >>> Key master role assigned to existing user<br />
    >>>>>> Username: admin<br />
    >>>>>> Email address: jordanspencer@ipfcubed.com<br />
    >>>>>> Password: Your existing password<br />
    >>> Description: Just another bbPress community<br />
    >>> Forum name: The General of Electric<br />
    >>>>>> Topic: Your first topic<br />
    >>>>>>>>> Post: First Post! w00t.<br />
    >>> Key master email sent

    There were some errors encountered during installation!

    ERRORS:

    SQL ERROR!<br />
    >>> Database: jordan_wp (localhost)<br />
    >>>>>> ALTER TABLE <code></code>ipf3_posts<code>ADD COLUMN</code>post_id

    bigint(20) NOT NULL auto_increment;

    >>>>>> Incorrect table definition; there can be only one auto column and it must be defined as a key

    SQL ERROR!

    >>> Database: jordan_wp (localhost)

    >>>>>> ALTER TABLE ipf3_posts ADD PRIMARY KEY (post_id);

    >>>>>> Key column ‘post_id’ doesn’t exist in table

    Thank you!

    #80463
    chrishajer
    Participant

    If login works normally, what do you see next to your name after you log in?

    Welcome, ChrisHajer! View your profile (Admin | Log Out)

    or

    Welcome, ChrisHajer! | Log Out

    In the first case, I am keymaster and have admin access. In the second case, I am just a member and have no admin access. I you have the first, click on Admin and you will have access to the bbPress back end.

    If you have the second, the account you’re logging in with might not have keymaster access. There was a plugin to restore keymaster access, but it was good only for up to 0.9. Not sure if it works with 1.0.

    https://bbpress.org/plugins/topic/fix-admin-access/

    If it doesn’t work, then you will need to edit the permissions directly in the database.

    #80291
    apam
    Member

    Should the HTML purifier be used alongside the tinyMCE plugin? How can you set up the advanced mode?

    I thought it should be a parameter of the tinyMCE.init funtion..

    Have you guys found a solution?

    I really hope I find a way of making linking images from an external source that didn’t involve having to inserting the code by hand..

    Thanks in advanced for any help or advice!

    #80593
    chrishajer
    Participant

    Did you create a my-plugins folder or is there one there already? If it’s there, check the permissions on the folder. Should be 0755 drwxr-xr-x.

    #80530
    adamcap
    Member

    yeah it doesn’t work. :( oh well

    all I want to do is prevent all users from starting topics on all forums, but still allow all new posts to from my blog to be imported via bb-sync and allow people to reply to them.

    #80529
    adamcap
    Member

    looks promising but says it’s only compatible up to version 0.9 and I have 1.0. :/

    Maybe I’ll try it out anyway

    #80524
    johnhiler
    Member

    Ah great idea… glad it’s working! (or at least, seems to be working)… :-)

    hankjin
    Member

    when I use $bbdb->get_results($sql, ARRAY_K); it reports warning when there is no records in database.

    then I checked the code bb-includes/backpress/class.bpdb.php:

    936 $key = $this->col_info[0]->name;

    937 foreach ( $this->last_result as $row ) {

    938 if ( !isset( $new_array[ $row->$key ] ) ) {

    939 $new_array[ $row->$key ] = $row;

    940 }

    941 }

    942 if ( $output == ARRAY_K ) {

    943 return array_map( ‘get_object_vars’, $new_array );

    944 }

    945 return $new_array;

    It seems when the query result is empty, $new_array is not initialized, so warning happens in Line 943

    so I add a line $new_array=array(); before the foreach statement of Line 937, then everything goes well.

    The code now looks like this:

    936 $key = $this->col_info[0]->name;

    937 $new_array=array();

    938 foreach ( $this->last_result as $row ) {

    939 if ( !isset( $new_array[ $row->$key ] ) ) {

    940 $new_array[ $row->$key ] = $row;

    941 }

    942 }

    943 if ( $output == ARRAY_K ) {

    944 return array_map( ‘get_object_vars’, $new_array );

    945 }

    946 return $new_array;

    so I think maybe this is a bug.

    #80526
    thekmen
    Member

    I copied all the required styles from WP to the bbPress theme.

    If you look at the source of the WP end, you will see I placed 2 <–COPY–> here markers for the Page & Cat nav, then in the bbPress backend theme options you just paste that code.

    #80547
    nickaster
    Member

    Unbelievable. So… basically what happened was that I HAD commented out the drop down code… didn’t remove it, just commented out. I put it back, and bam! it works!

    #32087
    kirkpatrick
    Member

    I have a deep integration of bbPress 1.0.2 and WordPress 2.8.4 at riogallinasschool.org, using a heavily modified Kakumei template.

    Integration works well. I only register users from WP. Logins work from either BBP or WP. WP users appear correctly to BBP (every user can log in from both WP and BBP)..

    Logout from WP is fine regardless of where the login occurred (so, no cookie problems).

    However, when logging out from BBP (using the Kakumei “Log out” link), the logout occurs (so cookies are working), but I am redirected to a 404. The logout link is bb-login.php?logout=1. I have found that, on the other hand, the link bb-login.php?logout=0 (as typed in) works just fine — logs out, redirects back to page.

    I have hacked a solution. I don’t understand it (I haven’t yet been able to follow the use of the GET variable logout to find where it’s value is used anywhere). But in case anyone else has this problem, here’s the hack.

    The logout link is produced by the function call bb_logout_link(); in the template’s logged-in.php file.

    bb_logout_link is defined in bb-includesfunctions.bb-template.php, and effectively calls bb_get_logout_link with the same arguments. In the latter function, around line 2737, the value logout=1 is hard-coded.

    I have changed the code for bb_get_logout_link so (a) it defaults to logout=1 if logout is not specified in the call to bb_logout_link (thus the hack is non-destructive), but (b) the call bb_logout_link(‘logout=0’); overrides the default.

    This produces the working link, so the “Log out” link works.

    Here’s the code

    Old line 2737 of bb-includesfunctions.bb-template.php was

    $query = array( 'logout' => 1 );

    I changed that to the following (which works because the args were “extract”ed, so $logout has a value from the call to bb_logout_link):

    if ( $logout==NULL ) $logout = 1;  // Defaults to 'logout=1'
    $query = array( 'logout' => $logout ); // Changed '1' to '$logout'

    Then in the template’s logged-in.php, I added the argument to the call to bb_logout_link:

    bb_logout_link('logout=0');

    It works for me.

    Has anyone else has had this problem? If not, I must have broken something somewhere else — so I’d like to know.

    Can anyone explain the bug, or explain where the value of logout is used? (I’ll keep looking, and will post a followup if I find it, but I’m not expert at the subtleties of apply_filters, which appears to be the only possibility.)

    Thanks.

    #32086

    I am new to the forum, so I hope I posted it in the right place.

    I am wanting to add a simple button-link to my WordPress Blog Post template saying something like “Discuss In Forum”. I am using WordPress-bbPress-synchronization to post Blog items to my Forum. This plugin generates a link in the most recent comment that allows you to visit the correct topic for that blog post.

    I would also like to add that I do not know code, so a simplified question is this: How can I add a button to my forum for the correct topic without changing the link every time I use it? Is this something relatively easy to accomplish?

    Thanks in advance for help

    #80503

    In reply to: What is "topicmeta"?

    chrishajer
    Participant

    I might be wrong, but I thought topicmeta was deprecated in the 1.0 versions.

    $bbdb->tables = array(
    'forums' => false,
    'meta' => false,
    'posts' => false,
    'tagged' => false, // Deprecated
    'tags' => false, // Deprecated
    'terms' => false,
    'term_relationships' => false,
    'term_taxonomy' => false,
    'topics' => false,
    'topicmeta' => false, // Deprecated
    'users' => false,
    'usermeta' => false
    );

Viewing 25 results - 23,051 through 23,075 (of 32,481 total)
Skip to toolbar