Jump to content

teraßyte

Clients
  • Posts

    33,710
  • Joined

  • Last visited

  • Days Won

    54

 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. If re-uploading them doesn't work it's possible the files are owned by another user/group and aren't being overwritten properly. You can check yourself if you know how (SSH, etc), or ask your hosting for help.
  2. IPS updated the files but didn't release a minor/optional patch like they usually do, so you get that modified files error instead. It has caused some confusion in the last few days. More about it in this other topic:
  3. This happens because IPS shows the report types only if the automatic moderation setting is enabled. Honestly, the choice doesn't make sense to me. Users should be able to select a report type even without automatic moderation. However, the code is indeed working as intended so it's not a bug but feedback. I've seen plenty of people confused by this behavior. 🤷‍♂️
  4. What browser are you using? Did it update recently perhaps? For example, I use Chrome and recently noticed it keeps re-asking me to enable push notifications on each IC forum I use after the upgrade to version 129. They probably broke something with the upgrade. 🤷‍♂️
  5. The problem is that these files have been updated at some point because they're different from the 4.7.18 ZIP file I used to update my site a few weeks ago. The files have been updated without building a new 4.7.18 version as usually happens. 🙄
  6. When you load the list, it's a widget listed under the System (core) application.
  7. Looking at the code, the ACP menu becomes visible if the support module for the admin site is visible: if( $m = \IPS\Application\Module::get( 'nexus', 'support', 'admin' ) AND $m->visible ) Here's what you can do: Run a query to make the module visible: UPDATE core_modules SET sys_module_visible=1 WHERE sys_module_application='nexus' AND sys_module_key='support' AND sys_module_area='admin'; If your tables have a prefix, be sure to adjust the table's name. Clear the caches in ACP > Support. Refresh the page and the ticket system should be visible.
  8. Fresh installs of v4 have the ticket system disabled because it's been removed for v5: https://invisioncommunity.com/deprecation-tracker/commerce-ticket-system-r6/ I guess they did it so new users don't start using a feature that has been removed after the upgrade. Existing v4 sites installed before the change still show it enabled as usual, though.
  9. Try checking in ACP > Members > STAFF > Administrators > Administrator Logs (button top-right). Is there no deleted member action logged on that page?
  10. Oh, I missed that part. If that's the case, there could indeed be an issue with the PHP version. Possibly some code is failing because it's not supported in PHP 8.2. 🤔
  11. @Michel_72 You think it works with PHP 8.2, but behind the scenes, things are not working as they should even if you don't see it. 🙄 That said, your issue is unrelated to the PHP version. I posted a bug report about images not rotating properly some time ago, it might be the same issue you're having:
  12. You can setup the option as enabled by default in ACP. Any member who has not edited their notification setting for that specific option will have it automatically enabled after your change.
  13. Here you go: In your case, if you're keeping the same server and only changing the URL, start from step #3.
  14. The problem is the comma in your CSS rule. See Jim's reply here:
  15. You must convert the tables to utf8mb4 for 4.x, so at that time everything should fix itself. 🤔
  16. I'm using phpStorm 2021.2.3, language level PHP 8.1. Maybe it's a bug in this old version of the IDE then. 🙄
  17. Just creating a simple application is enough. I can reproduce it even on v5. I create a new application: Name: Hello World Directory: hello Here's what I see in my IDE, that error is on line 19 (red arrow):
  18. This is a server issue. You need to contact your hosting about it: ModSecurity: Access denied with code 44 (phase 2). They must either disable/tweak the ModSecurity rule triggered by the gallery uploads or disable it completely.
  19. IPS doesn't offer support upgrading from legacy versions, so the link posted by Nathan with the steps you need to follow to perform a manual upgrade is the only solution. If you wish to proceed with the manual upgrade but encounter errors, try posting them here and we can help further. If you prefer having someone else do the upgrade for you, your only option would be to hire a 3rd party Provider with the Upgrade Services badge.
  20. I've seen this error in my IDE for a while now but forgot to report it earlier. It is caused by the newly added \IPS\Node\DelayedCount trait. I see this error even in several classes, even inside Application.php for applications that don't implement the trait. 🤷‍♂️ When I tell the IDE to fix the issue automatically this function gets added to the file (Application.php in this case): /** * Count all comments, items, etc * * @return mixed */ protected function recount() { // TODO: Implement recount() method. } I have no comments, items, or anything else that needs recounting in this specific application or others, though.
  21. You most likely disabled the group setting Can access site? for guests. Edit the guest group in ACP > Members > MEMBERS > Groups > Guests to re-enable it.
  22. It seems the post I made earlier, right before this one, is throwing an error. 🤨 [[Template forums/front/topics/postContainer is throwing an error. This theme may be out of date. Run the support tool in the AdminCP to restore the default theme.]]
  23. I'm also noticing some slowness on this site. It took 30+ seconds to open the PM inbox list... 🙄
  24. Rather than turning off posting, I would put the whole site offline while the conversion is ongoing. 🙄
×
×
  • Create New...