Jump to content

Miss_B

Members
  • Posts

    1,484
  • Joined

  • Days Won

    4

Reputation Activity

  1. Like
    Miss_B reacted to Sheffielder in Global Ignore List - Techy Goes to Coventry & Ignored Log   
    @Miss_B - did you manage to find a fix for the above error?
  2. Like
    Miss_B got a reaction from n.karshev in unhide content   
    I think that you can unhide them with a couple sql queries. Should you be interested in this method, I can post the revelant queries.
  3. Like
    Miss_B reacted to Martin A. in Totally unable to login to Admin CP   
    https://stackoverflow.com/a/23086139
    Short answer; remove the leading dot. That will restrict cookie access to only subdomains. You main site is not using a subdomain, and can therefor not access the cookies.
  4. Like
    Miss_B reacted to Stuart Silvester in Any chance of desuckifying the plugin development experience   
    4.5 contains a bunch of improvements in this area to make plugins more portable. They can be installed IN_DEV and the majority of their data is now stored within the /dev directory in various PHP/JSON/PHTML files.
    We haven't made any changes to the naming conventions required, or the hook class names, but we've also come up with these changes for the same reasons, to greatly improve the ability to develop plugins across installs via Git.
    Please consider taking a look at the beta and letting us know whether those improvements are beneficial to your development process.
  5. Like
    Miss_B reacted to Gabriel Torres in How to delete very old topics with 0 replies?   
    Yeah, this is not a good option, because there are several different things that must be done, such as deleting the topics, deleting the posts, updating counters, etc.
    But thanks for confirming that there isn't an out-of-the box solution. I will hire the developer we use to create such plugin!
  6. Like
    Miss_B reacted to Matt in HOMERUN!   
    Thanks!

    It's a great team effort as always, but a special shout out to @Olivia Clarkwho keeps schedules on track, information flowing and generally makes sure we stay organised.
  7. Like
    Miss_B reacted to Lindy in HOMERUN!   
    Awesome! Thanks for the positive feedback - that's exactly what we wanted to hear! 
    I'd love to take credit, but it's definitely not me - it's really a cumulation of an amazing development team, new processes and the addition of @Olivia Clarkto the team last year. I'm extremely proud of everyone at IPS; we're very fortunate! 
    Thanks again. 4.5 is the best yet. 🙂 
  8. Like
    Miss_B reacted to DesignzShop in HOMERUN!   
    All I really got to say is IPB knocked this one out of the park. HOMERUN! I better add also I'm also really impressed with low bug count in betas. The dev team is organized better than ever.. It's taken some years to get everything on the track it is but I feel it was well worth it and well worth the wait. Should I be giving @Lindy some credit here?? If I do will @Matt pull the Lindy factor line on me? 🤣 This is really such a well rounded product now all the way around. Great awesome job IPB!
     
  9. Like
    Miss_B reacted to Davyc in Support Needs   
    Sometimes I feel compelled to speak out with regards to a service, it doesn't happen very often but today I do feel compelled to say something about the support given by Invision.
    It's First Class!
    I've noticed, over the years, that some users post quite disparaging words for the support given, but I've never experience this myself and I truly believe that you have to give praise where it's due, just as much as you have to voice concerns when things are not going right.
    I'd like to say thank you to all of the staff who have dealt with any issues I've raised, but in particular to @Marc Stridgen who has always been professional and always sorted out any issues I raised via ticket in a very speedy, precise and concise way.
    It's because of this professionalism that I have and always will use Invision and continue to recommend it to my own clients when I believe it will fulfil their needs.
    Thank you guy's and gals, each and every one of you.
  10. Thanks
    Miss_B got a reaction from Thomas P in Global Ignore List - Techy Goes to Coventry & Ignored Log   
    I will look into this in the week end and get back to you. 
  11. Thanks
    Miss_B reacted to Matt in IPS Blog is broken   
    Thanks, I'll take a look. We upgraded to 4.5 today so we're merrily tweaking and fixing what we see.
  12. Like
    Miss_B reacted to DaffyDuck in Ignore / Block   
    ... and, I would like to add, this is awesome! It only took me 2 seconds to decided to purchase this. Worth every penny!
  13. Like
    Miss_B got a reaction from Tom S. in Help creating an extension   
    Indeed. Once you have created your app, go to the Developement Center of your app, click the Extension menu and under core create the extension for MemberSync.
  14. Like
    Miss_B reacted to VaBeach_Guy in Upgrade from IP. 3.4.x to IPS4.0 (updated)   
    Apparently, there a bunch of topics which had no content, no date, no title, no author, nothing. How that happened, I have no clue. But they fixed the issue and I was able to finish the upgrade. 
  15. Like
    Miss_B reacted to Daniel F in Getting error message using login below thread ?   
    In a ticket. 
  16. Like
    Miss_B reacted to High-End in TDB Posts (41x)   
    Thank you!
    I noticed this yesterday but was not sure.
  17. Like
    Miss_B got a reaction from High-End in TDB Posts (41x)   
    You can install plugins through the Plugins section at your Admin Panel. Click the Install New Plugin button, select the plugin 's xml file and click the Install button. Hope it helps.
  18. Like
    Miss_B reacted to Adriano Faria in How does one research a hook number?   
    Example:
     
  19. Like
    Miss_B got a reaction from SJ77 in How does one research a hook number?   
    Have a look at the plugins that you have installed. There you can find the hook number in the class name. It will look something like this for example: abstract class hookxxx extends _HOOK_CLASS_ Where the xxx stans for the numeric value of that hook. 
    Hope it helps.
  20. Like
    Miss_B reacted to Jim M in How to remove "Forums" from site title?   
    Just a heads up, you will not want to use * and replace the Title. This will replace the page title on every page with whatever you place there. That will mislead users and degrade SEO. You will just want to change the page title for your forum index, which you can do via the meta tag live editor if you are unsure of the page address: 
     
  21. Like
    Miss_B got a reaction from Meddysong in How to remove "Forums" from site title?   
    Have a look at this plugin. 
     
  22. Thanks
    Miss_B got a reaction from BankFodder in Bulk delete from approval queue   
    You can run a sql query as well, although I would not recommend it doing it that way. Anyways, here is the query if you still want to do it.
    DELETE FROM `forums_posts` WHERE queued = -1; If you want to exclude the first post of the topic, i.e. the topic itself, run this query instead:
    DELETE FROM `forums_posts` WHERE queued = -1 AND new_topic = 0; And do not forget to make a backup of the db first. 
  23. Like
    Miss_B reacted to BankFodder in Bulk delete from approval queue   
    I'll have a look.  Thanks
  24. Thanks
    Miss_B got a reaction from BankFodder in Bulk delete from approval queue   
    If you go to your Mod CP, on the left site under HIDDEN CONTENT select Posts. There you will see an overview list with all the moderated posts. Select all rows per page and you can delete them all by clicking the Trash can icon for delete. Hope it helps.
    P.s. It would be best imo, that before you do that, to make first a backup of your database. Hope it helps.
  25. Like
    Miss_B reacted to Meddysong in how can change admincp url?   
    Read this for info. You're looking for CP_DIRECTORY.
     
×
×
  • Create New...