Jump to content

Marco Junior

Members
  • Posts

    166
  • Joined

  • Last visited

Reputation Activity

  1. Like
    Marco Junior got a reaction from sobrenome in How to disable new search system ?   
    My theme is custom then I have a problem with the theme, is it possible to disable search? Only up until the latest version theme be accepted by the IPS
     

  2. Like
    Marco Junior got a reaction from sobrenome in How to disable new search system ?   
    Thanks a lot for your answers. I think it fixing the problem without needing to disable the feature.

  3. Thanks
    Marco Junior reacted to Marc Stridgen in How to disable new search system ?   
    It depends how many items there are at the time, and how much time it takes to go through the individual item. It can take some time at present as we have just released quite a large release
  4. Agree
    Marco Junior reacted to Luuuk in How to disable new search system ?   
    The "effect" visible in your screenshot was reported on Ehren's support forum too on 4.7.0 theme applied to 4.7.1 software. The fix is to revert the following template: core > front > global > quickSearch. Or reinstall a theme from scratch.
  5. Agree
    Marco Junior reacted to Marc Stridgen in How to disable new search system ?   
    The only way you would be able to disable search completely would be to disable content discovery. However that would disable many search areas, including streams. You would do this by removing module permissions
     
    You can disable search entirely by disabling the search module. Please see the guide below on how to do this
    https://invisioncommunity.com/4guides/how-to-use-ips-community-suite/managing-members/member-permissions-r305/
  6. Like
    Marco Junior got a reaction from NathanNR in Commerce payment method for Brazilian customers.   
    Hello,
    It´s possible addend to the commerce module for Brazilian customers, PIX Payment method ? This is new method payment of my country.
    This is very important for me for completed sales more faster.
    Because PayPal method is very bad for Brazilian customers.
     
    Here the payment information:
    Release 2.6.2 · bacen/pix-api · GitHub
     
    Latest API pix.
  7. Thanks
    Marco Junior reacted to Marc Stridgen in Bug with marketplace payments.   
    No problem at all. Please let us know if you have any further issues of course
  8. Agree
    Marco Junior reacted to Marc Stridgen in Bug with marketplace payments.   
    As mentioned above, you need to do that within the orders section on the community here, not within the marketplace in your admin CP. We are aware of this
  9. Agree
    Marco Junior reacted to Nathan Explosion in Bug with marketplace payments.   
    Go here: https://invisioncommunity.com/clients/purchases/
    Click the 'manage' button beside the item
    Click 'Reactivate'
  10. Thanks
    Marco Junior reacted to Jim M in Support php 8.1   
    At this time, we have not fully claimed support for 8.1. Testing is still something which we have on our to-do list.
  11. Thanks
    Marco Junior reacted to Mark H in Renew process error ?   
    Yes, I see you got this sorted out and you should be all set now.
  12. Like
    Marco Junior reacted to Daniel F in Anonymous post help.   
    IMO it's fine to show it while editing, I mean what if it was created anonymous by accident or if something shouldn't be anonymous anymore, but I would prefer if it would be an extra setting or a moderator permission to control who's able to toggle the anonymous flag while editing existing content.
     
    That said, I have brought this up internally.
  13. Agree
    Marco Junior reacted to Adriano Faria in Anonymous post help.   
    The bug to me is display the Post anonymously field when you edit the article. It should appear only when you're creating it. And even you removing the selection, it keeps anonymous.
    Same for topics.
    I mean, unless they changed it since 4.6.0 when I upgraded my resources.
  14. Agree
    Marco Junior got a reaction from Arthmoor in Add a bug-track application on default community   
    We know that today it is very essential to have a better control of our products as well as reports of official releases, suggestions and or problem solving.
    I would like to suggest to IPS that they consider the possibility of creating their own and standardized application of the system itself so that we can have a better control of our products.
    I know that it is possible to create a report tracker using the Pages feature, however many IPS clients do not have extensive knowledge in the development area and this ends up making it difficult for these potential clients to work with their respective projects.
    So I would like to suggest to the IPS development team the possibility of bringing us an application 100% dedicated to this.
    A report tracker where our customers can send suggestions, bug reports and everything in between.
    An application where it would be possible to define the statuses and how they will behave.
    Who could use this application (groups) and the like.
    Well sorry for the long text the idea is this I hope to have a positive response from the development team.
    Thanks in advance.
  15. Agree
    Marco Junior reacted to Adriano Faria in Total number of members in ACP   
    I submitted a free plugin to the marketplace to accomplish that. Waiting for review.
  16. Agree
    Marco Junior reacted to Nuclear General in Database compact mode how to change for this on cPanel ?   
    Hello,
    What version of MySQL are you using? Is it MariaDB 5.x.x or MariaDB 10.x.x? MariaDB 5.x.x uses ROW_FORMAT= 'COMPACT' , or 'REDUNDANT'. MariaDB 10.x.x uses ROW_FORMAT= 'COMPACT' , 'REDUNDANT' , 'DYNAMIC' , or 'COMPRESSED'. The ROW_FORMAT can be easily changed with a simple MySQL Statement. I'll show you how.
     
    1) First, make a backup of your Database, i.e.: use phpMyAdmin, go to your database and use the OPERATIONS tab and use the "Copy Database To" section to create an exact copy, name what it whatever you'd like. Then run the following query on your copied database (Change the "DATABASE_NAME_HERE" to your copied database name) :
    This code will print out everything that has a table engine of "InnoDB".
    SELECT CONCAT('ALTER TABLE ', table_schema, '.', table_name, ' ENGINE=InnoDB;') AS sql_statements FROM information_schema.tables AS tb WHERE table_schema = 'DATABASE_NAME_HERE' AND `ENGINE` = 'InnoDB' AND `TABLE_TYPE` = 'BASE TABLE' ORDER BY table_name ASC; It will print out something similar to this:
    ALTER TABLE DATABASE_NAME_HERE.ibf_advertise_advertisements ENGINE=InnoDB; ALTER TABLE DATABASE_NAME_HERE.ibf_advertise_hits ENGINE=InnoDB; ALTER TABLE DATABASE_NAME_HERE.ibf_advertise_paypal ENGINE=InnoDB; ALTER TABLE DATABASE_NAME_HERE.ibf_autowelcome_members ENGINE=InnoDB; ALTER TABLE DATABASE_NAME_HERE.ibf_axenserverlist_servers ENGINE=InnoDB; ALTER TABLE DATABASE_NAME_HERE.ibf_bbcode_mediatag ENGINE=InnoDB; ALTER TABLE DATABASE_NAME_HERE.ibf_blog_blogs ENGINE=InnoDB; ALTER TABLE DATABASE_NAME_HERE.ibf_blog_categories ENGINE=InnoDB; ALTER TABLE DATABASE_NAME_HERE.ibf_blog_comments ENGINE=InnoDB; ALTER TABLE DATABASE_NAME_HERE.ibf_blog_entries ENGINE=InnoDB; In the below picture, you will get this: (As stated above)

    Click the +OPTIONS link, you will now see this:

    Make sure you click the "Full texts" radio button, leaving everything else alone, then click on 'GO'.
    You will now see this appear:

    It will show only 25 rows per page by default, but you can change that by doing this:

    After you have all your rows appear, copy all the text to a text editor, and do a FIND & REPLACE option for:
    Find: 
    Engine=InnoDB
    Replace with: (If MariaDB 5.x.x)
    ROW_FORMAT=REDUNDANT
    Replace with: (If MariaDB 10.x.x)
    ROW_FORMAT=DYNAMIC
    Example:
    ALTER TABLE tibtech.ibf_advertise_advertisements ROW_FORMAT=DYNAMIC; ALTER TABLE tibtech.ibf_advertise_hits ROW_FORMAT=DYNAMIC; ALTER TABLE tibtech.ibf_advertise_paypal ROW_FORMAT=DYNAMIC; ALTER TABLE tibtech.ibf_autowelcome_members ROW_FORMAT=DYNAMIC; ALTER TABLE tibtech.ibf_axenserverlist_servers ROW_FORMAT=DYNAMIC; ALTER TABLE tibtech.ibf_bbcode_mediatag ROW_FORMAT=DYNAMIC; ALTER TABLE tibtech.ibf_blog_blogs ROW_FORMAT=DYNAMIC; ALTER TABLE tibtech.ibf_blog_categories ROW_FORMAT=DYNAMIC; ALTER TABLE tibtech.ibf_blog_comments ROW_FORMAT=DYNAMIC; ALTER TABLE tibtech.ibf_blog_entries ROW_FORMAT=DYNAMIC; Once the FIND & REPLACE has been done, copy all your edits and go to your database SQL tab in phpMyAdmin, and paste it in there and run SQL Statements. Your tables with now have the proper ROW_FORMAT that will satisfy Invision Community Suite and the error will go away.
     
    I hope this helps you and others with this annoying issue.
    Best of luck,
    -Donald
  17. Like
    Marco Junior got a reaction from Matt in Hump Day: 4.6.0 soft launch 🤫   
    I'm just super satisfied with the version and the new features.
    The new features are being critical in my community.
    The IPS team is really to be congratulated.
  18. Like
    Marco Junior reacted to Sirmadsen in Database compact mode how to change for this on cPanel ?   
    That's not a very helpful answer. I'm having the same error @Marco Junior Compact mode is basically a less efficient format and can't store as much information as Dynamic. You can change this in your database settings (phpadmin for example) if your database supports it and depending if you are hosting the server yourself or if you are using a web-host which might not support it or only support in a higher tier payment (as in my case) . However since it's not a critical issue you don't have to worry about it unless you have a really big community.
  19. Like
    Marco Junior got a reaction from Charles in Hump Day: 4.6.0 soft launch 🤫   
    I'm just super satisfied with the version and the new features.
    The new features are being critical in my community.
    The IPS team is really to be congratulated.
  20. Like
    Marco Junior got a reaction from sobrenome in Hump Day: 4.6.0 soft launch 🤫   
    I'm just super satisfied with the version and the new features.
    The new features are being critical in my community.
    The IPS team is really to be congratulated.
  21. Agree
    Marco Junior got a reaction from Davyc in Hump Day: 4.6.0 soft launch 🤫   
    I'm just super satisfied with the version and the new features.
    The new features are being critical in my community.
    The IPS team is really to be congratulated.
  22. Haha
    Marco Junior got a reaction from Thomas P in Hump Day: 4.6 Beta 3 is live!   
    Thanks developers 🙂
    Go work now !
     
  23. Agree
    Marco Junior reacted to Jordan Miller in Hump Day: 4.6 Beta 3 is live!   
    Friday? Booo. Saturday? Blahhhh. Sunday? Who needs it! 
    Welcome back to another fine edition of Hump Day, the best day, and today's is a doozy. 
    We've officially launched 4.6 Beta 3! 🎉 
    It's available for download or per request if you're on Cloud.
    We're pretty confident things will be stable, but don't take our word for it; please make backups before updating. 
    The official release will make its red carpet debut in the very near future.
    What's changed from Beta 2 to Beta 3? @Matt passed along these changes (see below). It's worth mentioning these updates are our new team members, @Christopher Pei and @Marshall Slemp, first bug fixes. 👏 
    Fixed an issue where Weekly and Monthly Email Stats were not displayed correctly Fixed an issue where CSV downloads were limited to 25 rows. Fixed an issue where editing a Link for an Image would not save. Fixed an issue where images added to a Custom Email were not showing up in the email being sent to the customer after a purchase. Fixed some spacing issues with member lists in various blocks. Fixed an issue where adding a theme setting to a parent theme didn’t update children themes with the new setting. Fixed an issue where the database checker may show un-needed database changes. Fixed an issue where an invalid “oembed” widget plugin type would appear when creating a block. Fixed deleting a widget not using JSON_PRETTY_PRINT for the widgets.json file. Fixed an issue where Achievements rebuilding would not finish Fixed an issue where Achievements badges would show in the hovercard during a rebuild. Fixed an issue where changing an authors name from anonymous would not reset the “is_anon” flag Fixed an issue where some ajax content was indexable by search engines Fixed an issue where badge counts could be wrong  

    I know, that's a lot of awesomeness to absorb.
    What are your thoughts? Have you been using any of the Beta releases thus far? We'd love to hear from you in the comments!
     
    Related:
     
  24. Like
    Marco Junior got a reaction from Jordan Miller in Hump Day: 4.6 Beta 2 is live!   
    Nice Team.
    I will install new update now !
    Let's all together make this version stable and enjoyable for all IPS customers.
    Thanks to the development team for all their dedication.
    ❤️ 
  25. Agree
    Marco Junior got a reaction from The Old Man in Hump Day: 4.6 Beta 2 is live!   
    Nice Team.
    I will install new update now !
    Let's all together make this version stable and enjoyable for all IPS customers.
    Thanks to the development team for all their dedication.
    ❤️ 
×
×
  • Create New...