Jump to content

teraßyte

Clients
  • Posts

    33,811
  • Joined

  • Last visited

  • Days Won

    55

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Projects

Release Notes v5

Invision Community 5 Bug Tracker

Forums

Events

Store

Gallery

Everything posted by teraßyte

  1. This modification is already compatible with 4.7 and I've just submitted a new version to mark it as compatible (no actual changes). Those who have it already installed can keep using it without problems. 👍
  2. This modification is already compatible with 4.7 and I've just submitted a new version to mark it as compatible (no actual changes). Those who have it already installed can keep using it without problems. 👍
  3. This modification is already compatible with 4.7 and I've just submitted a new version to mark it as compatible (no actual changes). Those who have it already installed can keep using it without problems. 👍
  4. This modification is already compatible with 4.7 and I've just submitted a new version to mark it as compatible (no actual changes). Those who have it already installed can keep using it without problems. 👍
  5. This modification is already compatible with 4.7 and I've just submitted a new version to mark it as compatible (no actual changes). Those who have it already installed can keep using it without problems. 👍
  6. This modification is already compatible with 4.7 and I've just submitted a new version to mark it as compatible (no actual changes). Those who have it already installed can keep using it without problems. 👍
  7. This modification is already compatible with 4.7 and I've just submitted a new version to mark it as compatible (no actual changes). Those who have it already installed can keep using it without problems. 👍
  8. Try using the sql_port value as a number rather than a string. And, if you want to clean up your conf_global.php file, these are the values you'd have to keep comparing it to a fresh 4.x install (not sure if about your 3 top_site_list rows, some really old mod perhaps?): <?php $INFO = array ( 'sql_host' => '127.0.0.1', 'sql_database' => 'abcdefg', 'sql_user' => 'abcdefg', 'sql_pass' => '12345678', 'sql_port' => 3309, 'sql_tbl_prefix' => 'ddrr_', 'sql_utf8mb4' => true, 'board_start' => '1131793624', 'installed' => true, 'base_url' => 'https://www.thesecurityinstaller.co.uk/community/', 'admin_group' => '4', 'guest_group' => '2', 'member_group' => '3', );
  9. Update your conf_global.php file with: 'sql_host' => '127.0.0.1', 'sql_port' => 3309, In case you also need to specify a socket the variable is: 'sql_socket' => '/path/to/socket', And you can remove the sql_driver row. IPS in the past supported MSSQL but it doesn't anymore so that's an unnecessary variable. It can only use mysqli right now.
  10. There's a single instance of it on line 71 in \applications\core\modules\front\search\search.php. You can't just comment out the line though, otherwise you'll remove the meta tag for ALL search pages, not just /tags/.
  11. Yeah, that meta tag is set directly from the PHP backend: \IPS\Output::i()->metaTags['robots'] = 'noindex'; // Tell search engines not to index search pages It's easy enough making a plugin to remove it from specific pages though.
  12. You have also a wrong utf8mb3 value in that list for character_set_system.
  13. When that option is enabled the topic is automatically locked and normal members can only vote in the poll without being able to post replies.
  14. It's a known bug fixed for the upcoming 4.7 version: https://invisioncommunity.com/release-notes/
  15. I don't recall seeing any plugin for that in the marketplace. But it should be something easy to develop.
  16. Any example of a good editor you'd like to see included? So far you've only mentioned CKEditor is not good, but you haven't mentioned which other editor would work for you. If you post some names/sites IPS at least has something to look at.
  17. Does the application have any front modules? You need to click the lock icon on one of those modules to change group permissions.
  18. My client still has a full server snapshot of the pre-upgrade data (on Ubuntu 14.0.4), but it would require to restore it over the current upgraded site and spend time to upgrade again to Ubuntu 20.04 in order to test it. So yeah, it won't happen... In the end, just like @sibomots did, I ended up going with Ubuntu 18.04 (with PHP 7.2 and MySQL 5.7) to get the upgrade done. So, based on the above replies, it looks like you should be able to replicate the issue upgrading from a 3.4.9 database on Ubuntu 20.08 (with PHP 7.4 and MySQL 8).
  19. That message appears only in ACP (for security reasons). The code will still be inserted properly on frontend in the location you setup.
  20. No, that's the one thing I decided I won't add. There's really no point in forcing someone to buy Commerce and then handle the subscriptions with my app when Commerce itself can already handle paid subscriptions/packages while doing the same thing. It would be a waste of my time to basically write duplicate code. Commerce right now returns users to their original group (instead of letting the admins choose) but I am already working on a separate modification that changes the return group for paid subscriptions/packages which should suffice for most people. No ETA just yet though. This one's another nice suggestion. I won't include it in the next 1.0.1 version since it requires some thinking on how to best implement it, but I'll keep it on my list for a future 1.1.0 version. 👍
  21. That seems okay. But how are you using the $select variable after that? Maybe that's the problem. Try posting some of the code above/below that line.
  22. I hit this very same issue yesterday upgrading an old 3.4.9 site. Downgrading MySQL 8 to 5.7 did indeed fix the issue. Please update the check file to also check the maximum version, not only the minimum. I wasted hours to restore a backup, downgrade mysql, and re-run the upgrader because of it. 😕
  23. Nice suggestions. I have a minor upgrade planned for this modification (widget to show VIP status and number of VIP members in ACP). I'll see if I can include both.
  24. This is the support topic for this modification:
  25. Nah, I wasn't even thinking about Google (but it does help that you keep the 301 redirects active). I'm talking about the old links already posted. For example let's say someone posted a link to another topic in a post while on Xenforo (so it's using a Xenforo url format): With the converter application enabled: it redirects this link to the converted topic on Invision Community and your members can still find the topic. With the converter application disabled/uninstalled: the link returns a 404 error and your members will have to manually search the topic (or someone has to replace the old Xenforo link with the new Invision Community link).
×
×
  • Create New...