• Resolved georgeg007

    (@georgeg007)


    Hi, I’m working on a site and having some issues with the wpForo 1.0.2 plugin. When I create a new user through the admin panel they don’t show up in the members area. I read one of the posts on here and added the user to the wpforo_profiles table.

    Then they show up in the members page but when logged in on the front end can’t view the forum itself all that shows up is the navigation or bread crumb bar and the rest of the page is blank…

    When I click on edit for the user through the admin panel and don’t change a single thing but just click submit, it changes something and then the user can view the forum.

    I thought it was just a custom signup that I did but it’s doing it with the create new user from the admin side as well. Could you point me in the right direction, what table or field could be causing this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author gVectors Team

    (@gvectors-team)

    I’m sorry but I can’t say what’s exactly wrong. If your signup form doesn’t insert data in_wpforo_profiles table, you should do that yourself with this query:

    INTOwp_wpforo_profiles(userid,title,username,groupid,posts,questions,answers,comments,site,icq,aim,yahoo,msn,facebook,twitter,gtalk,skype,avatar,signature,about,occupation,location,last_login,rank,like,status,timezone) VALUES ($WPUserID, 'Member', '$WPUserLogin', 3, 0, 0, 0, 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NOW(), 0, 0, 'active', '');

    1. Make sure the wp_ table prefix is correct
    2. $WPUserID is just created User ID from wp_users table
    3. $WPUserLogin is just created User Login from wp_users table

    • This reply was modified 9 years, 6 months ago by gVectors Team.
    Thread Starter georgeg007

    (@georgeg007)

    Thanks for getting back to me, I inserted into the table and everything seems to work.

    There was one issue though with the field “like” which triggers an error because it’s a keyword so it needed the around it. Not sure if this is the same thing happening with the add new user from the admin panel…

    If I could trouble you with another question, is there a way to put posts into pending status or some type of moderation…

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘New Users Not Showing Up’ is closed to new replies.