Jump to content

Miss_B

Members
  • Posts

    1,484
  • Joined

  • Days Won

    4

Community Answers

  1. Miss_B's post in How do I delete all validating applications? was marked as the answer   
    I have developed an app that will do just that. 
    https://www.yourforumservices.com/index.php?/topic/23-modcp-validating-members-management/#comment-23
  2. Miss_B's post in Approval queue for general moderation w/o holding posts was marked as the answer   
    I am a little confused. That is precisely what the approval queue does. The moderated content will be visible to the general public only after someone has approved them.
  3. Miss_B's post in Locked out of my forum. Password reset not sending email. was marked as the answer   
    Have a look at my post at this other topic where another member had a similiar issue like you.
     
  4. Miss_B's post in Account locked for 30 mins was marked as the answer   
    That would be the best course of action, but from what I read, it appears that the OP doesn't have access to the email address anymore, that they had used for the admin account. In that case doing a password reset won't help much I am afraid. But maybe I read it wrong.
     
  5. Miss_B's post in EX0 Something went wrong. Please try again. was marked as the answer   
    Are you on a shared hosting plan or do you manage your own Vps/Dedicated box?
    If the former, then there is nothing that you can do about it. Some hostsmay choose to disable the PHP function phpinfo() for security reasons, because it displays information which may be used to compromise the server that your site is running on. In that case you should contact your host and ask them if they can enable it.
    If the later, at the php.ini file find the following line: (it's located athe disable_functions directive)
    disable_functions = phpinfo 
    and change it to disable_functions = and save the changes. That should enable phpinfo. Hope it helps.
     
  6. Miss_B's post in How can I search a hosted database? was marked as the answer   
    You will need indeed a custom app for that. It's fairly easy to do. 
  7. Miss_B's post in No access to Admin area was marked as the answer   
    What version of Ipb do you have and what is your php version?
    Have you upgraded your forum since you deactivated the calendar? If you did so and you didn't upload the calendar files as you didn't plan to use it, can you reupload the calendar files as well and overwrite the current files and see if the error will go away? The error might occur due to the calendar files being out dated and not compatible with the php version.
  8. Miss_B's post in Upgraded after migration to a new server was marked as the answer   
    It looks like an incorrect path issue. The path where session_start() attempts to write its data to is not correct. The session.save_path should be entered correctly at the php.ini.
    You can use the tool below to check.
    Yes, provided it meets the requirements. 
     
  9. Miss_B's post in Advice re-outdated plugins was marked as the answer   
    Most likely they are not compatible with your php and/or forum version. And yes, they will need to either be recoded or upgraded.
  10. Miss_B's post in Message limit was marked as the answer   
    It is a group permission. It can be found under the Social->Messages->Conversations allowed to start per day.
  11. Miss_B's post in How to re-create/import a thread from a different (now defunct) Invision Board was marked as the answer   
    In that case the only option is to post the topics manually.
     
    If you want to change the topic starters and start date, I have developed an app for that. You can see it here:
     
    @Adriano Faria has another similiar app that changes the posts date. You can see it here:
     
     
  12. Miss_B's post in Can mod/admin see username of anonymous posts? was marked as the answer   
    it is a moderator permission. You can find it under the Content tab. For more please see the attached screenshot.

  13. Miss_B's post in Stock Theme. Site Breaks when set to PHP8 was marked as the answer   
    This can be marked as solved. @Jason Back contacted me and I upgraded the forum successfully to the latest version running on php 8.
  14. Miss_B's post in Upgrade from 4.7.0 to 4.7.1 failing was marked as the answer   
    Do you have strict sql mode enabled?  Somewhere an empty string ''  is being passed as a value for decimal fields in the insert query. If strict sql mode is enabled and an invalid data is inserted into a column, it throws an error rather than providing a warning.
    I 've come this across before. I fixed it by changing the INSERT query to add the IGNORE command. 
    i.e. from INSERT INTO table_name to INSERT IGNORE INTO table_name
    Hope it helps.
  15. Miss_B's post in Tried to move my forum over to another web host. Having many problems! was marked as the answer   
    Broken how?
     
    Are you sure that you have overwritten your forum files correctly? To me this looks like a case of files not being uploaded in the right location.
    There is no need for a fresh install imo. When you run the installer you are presented with an option to enter the prefix. It looks like you did not enter one, hence why there were no prefixes added to the database.
    That being said, it looks like you have several tables in that database. You should check the sql_tbl_prefix vale at conf_global.php file. That holds the prefix for your Ipb forum. The tables prefecased with that prefix are the one that you need. Hope it helps.
     
  16. Miss_B's post in How to find only topics with polls? was marked as the answer   
    You can run a sql query for that.
    SELECT tid, title FROM `forums_topics` WHERE poll_state = 1;
    That will list the topic id and title of all topics with polls. Hope it helps.
  17. Miss_B's post in Hide users from each other. was marked as the answer   
    Have a look at my app. It does just that. 
     
  18. Miss_B's post in Where can I edit the text of the automatic email a new member receives? was marked as the answer   
    You can edit the relevant language string. I can not remember it off the top of my head but you can search for it in the Languages section of your Admin Panel. Hope it helps.
  19. Miss_B's post in Block displaying Latest Media? was marked as the answer   
    That will require a custom plugin/app. You can request it here:
    https://invisioncommunity.com/forums/forum/506-requests/
     
  20. Miss_B's post in how to delete all the topics from a forum category was marked as the answer   
    For number 1, if you go the forums section in your Admin Panel and then clcik the drop down icon for the Category whose topics you want to delete, you will see an option that says: Move / Delete Content. There you can delete all the topics. 
  21. Miss_B's post in Groups displaying random colors was marked as the answer   
    What happens if you use the color instead of html? And the font tag has been depricated for a while btw. 
     
  22. Miss_B's post in want to contact invision support was marked as the answer   
    You can use the Contact Us link at the bottom. 
    https://invisioncommunity.com/contact-us/
  23. Miss_B's post in Change Registration Default User Group? was marked as the answer   
    Change the value of member_group inside the conf_global.php file to the id of the group that you want your new members to have by default when registering.
  24. Miss_B's post in Users can't see other users but still see "Pinned" was marked as the answer   
    I do not remember seen any such plugin. Have a look at the Marketplace btw. If there is such plugin, it will be there. 
    If there is not any, you can request one in the request forum.
  25. Miss_B's post in Create classifieds inside the forum was marked as the answer   
    I am not familiar with that app. You can ask at its support topic about that.
    I found another one that I think it would be better suited for you, by @Adriano Faria. 
     
×
×
  • Create New...