Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 19,776 through 19,800 (of 32,505 total)
  • Author
    Search Results
  • #96808

    In reply to: more stupid questions

    zaerl
    Participant

    Open the header template and modify the HTML code. Put on an href.

    #101908

    In reply to: more stupid questions

    zaerl
    Participant

    Open the header template and modify the HTML code. Put on an href.

    #96772

    Thanks quicoto.

    It would be great if there were video tutorial so I could watch it. Do you know any which shows how to install bbPress to blog on HostGator and integrate it to the WordPress?

    Thanks for your help.

    Ps. How do I stick picture on my profile on this forum? ;-)

    #101872

    Thanks quicoto.

    It would be great if there were video tutorial so I could watch it. Do you know any which shows how to install bbPress to blog on HostGator and integrate it to the WordPress?

    Thanks for your help.

    Ps. How do I stick picture on my profile on this forum? ;-)

    #96770

    I think you should just create a folder called “/ask-an-expert-forum/”

    and upload the hole bbPress inthere :)

    Regards.

    #101870

    I think you should just create a folder called “/ask-an-expert-forum/”

    and upload the hole bbPress inthere :)

    Regards.

    #35870
    papakons
    Member

    I want to use for my class BBPRESS. I installed the forum here:

    http://ftp.itcs.tsinghua.edu.cn/papakons/teaching/gradcomplexity10/bbpress/

    However, I’m getting the following message:

    Deprecated: Assigning the return value of new by reference is deprecated in /home/apache/www/ftp/papakons/teaching/gradcomplexity10/bbpress/bb-settings.php on line 186

    I sent an email to the sys-admin and he replied that this is a problem with bbpress, since he has installed php 5.3.3 and the bbpress code is not compatible. In fact, what he says makes sense to me, since the use of an instruction becomes deprecated later in time and bbpress 1.0 was developed before php 533.

    any suggestions of how to correct this?

    thanks!

    Periklis

    #96034

    In reply to: bb Mystique Theme v1.0

    Supp3rMario
    Member

    Resolved that problem :)

    #101134

    In reply to: bb Mystique Theme v1.0

    Supp3rMario
    Member

    Resolved that problem :)

    forumadmin1
    Member

    Hi everyone. Can anyone advise what code or command may be required here? The BBpress Forum has a nice slim width which would allow us to place it inside a WP site but there are nop instructions on how to do this.

    Thanks very much in advance.

    #96521

    Check your usermeta table for correct capabilities.

    wp_usermeta if you are sharing user tables, otherwise bb_usermeta

    Check this http://img101.imageshack.us/img101/8122/killl.png

    The entry for your user ID (most probably 1) should be a:1:{s:9:"keymaster";b:1;}

    #101621

    Check your usermeta table for correct capabilities.

    wp_usermeta if you are sharing user tables, otherwise bb_usermeta

    Check this http://img101.imageshack.us/img101/8122/killl.png

    The entry for your user ID (most probably 1) should be a:1:{s:9:"keymaster";b:1;}

    #96681
    KentonMr
    Member

    The solution will be to dig into the code, add an extra field to the table, and set this field with the real password (encrypted with a workable encryption routine) the next time a forum user logs on.

    After a reasonable length of time all users should have logged back on and an accessible copy of the password obtained.

    As said I still don’t understand why the md5(‘mypass’) does not match the one in the table – there must be a comparison made at some stage or no one would ever get logged in.

    #101781
    KentonMr
    Member

    The solution will be to dig into the code, add an extra field to the table, and set this field with the real password (encrypted with a workable encryption routine) the next time a forum user logs on.

    After a reasonable length of time all users should have logged back on and an accessible copy of the password obtained.

    As said I still don’t understand why the md5(‘mypass’) does not match the one in the table – there must be a comparison made at some stage or no one would ever get logged in.

    #66754

    In reply to: Sitemap generator

    I made a blog post on how I did the sitemap using the existing plugin:

    How to create a Google XML Sitemap bbPress

    It works for me :)

    Regards

    #94518

    @Gautam: right. So weird… If you have the default Permalinks and you change them it doesn’t work. But if you save again it does :P

    I guess the plugin will flush it itself in the future, right?

    #96357
    master5o1
    Participant

    Just registered a project on LaunchPad. Browser the source for index.php and tell me what you think :D

    https://launchpad.net/bbpress-mobile

    #101457
    master5o1
    Participant

    Just registered a project on LaunchPad. Browser the source for index.php and tell me what you think :D

    https://launchpad.net/bbpress-mobile

    #94516

    @alexvorn2 No but like @Gautam said I thought was not necesary :)

    #94515

    @quicoto did you add the code

    add_filter(‘init’,’flushRules’);

    function flushRules(){

    global $wp_rewrite;

    $wp_rewrite->flush_rules();

    }

    in the bbp-functions.php ?

    #94513

    @Gautam yeap, I like to see a Month and name permalink instead of the Default, by Default it’s ok but if I choose other, without the code I mentioned in the previous message it doesn’t work.

    #94511

    hi everybody!

    I downloaded the pre-alpha bbPress plugin and it doesn’t work :/

    I added some codes to bbpres-functions to make it work:

    add_filter(‘init’,’flushRules’);

    function flushRules(){

    global $wp_rewrite;

    $wp_rewrite->flush_rules();

    }

    and then I realized that the plugin is useless at this stage :))))

    3sixty
    Member

    OK… Here is my workaround for this problem:

    1. In functions.bp-pluggable.php, under:

    if ( !bb_get_option( 'email_login' ) || false === strpos( $user, '@' ) ) { // user_login

    Add:

    $user = strtolower($user);

    2. In class.wp-user.php, under:

    $display_name = $user_login;

    Add:

    $user_login = strtolower($user_login);

    Voila – CaSe InseNSitIvity! Note that the placement of the strtolower() functions is important and allows the user to retain Case Sensitivity in their display_name (while changing their user_login to lowercase). I haven’t seen any untoward side effects yet, but will let you know.

    Nice talking to me!

    3sixty
    Member

    OK… Here is my workaround for this problem:

    1. In functions.bp-pluggable.php, under:

    if ( !bb_get_option( 'email_login' ) || false === strpos( $user, '@' ) ) { // user_login

    Add:

    $user = strtolower($user);

    2. In class.wp-user.php, under:

    $display_name = $user_login;

    Add:

    $user_login = strtolower($user_login);

    Voila – CaSe InseNSitIvity! Note that the placement of the strtolower() functions is important and allows the user to retain Case Sensitivity in their display_name (while changing their user_login to lowercase). I haven’t seen any untoward side effects yet, but will let you know.

    Nice talking to me!

    #96679
    KentonMr
    Member

    Perhaps the only solution to this is to replace all the hashing code and store a retrievable passford in the field.

    It is going to really upset the users having to go through registration again but it is far better getting one hit of all the frustrated users while I can blame it on the dumb software rather than being hit by the same problem time and time again as new users forget their passwords, we integrate other systems, etc.

    I still don’t get why md5(mypass) doesn’t give the same as in the database and I really cannot be bothered unraveling all the code to find out what is not obvious.

Viewing 25 results - 19,776 through 19,800 (of 32,505 total)
Skip to toolbar