Jump to content

teraßyte

Clients
  • Posts

    33,387
  • Joined

  • Days Won

    47

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by teraßyte

  1. If you don't have any theme in ACP without the Customized text you can add a new default non-edited one by clicking the + Create New button top-right. Either Easy Mode or Manual Mode will do for testing.
  2. I don't see any hooks in that stack trace, so I assume your theme is simply too old for the version you're on. Does the error go away if you switch to a default, unedited theme?
  3. That version won't be required anytime soon for now. It will be with v5 most likely. Anyway, if your host refuses to upgrade MySQL from a version that has already reached its EOL date (31 Oct 2020, extended support ended on 31 Oct 2023), it's probably time to consider a new hosting for the future before your next renewal date. 🙄
  4. If you use the "optimized" option it's automatically generated. That's as long as you don't have a robots.txt file on the server itself. In that case, the request isn't rerouted and the static file is provided.
  5. What kind of emails exactly? I haven't received anything in the past few days at least. 🤨
  6. Some active developers moved to a new site and created a marketplace there. Here's the link: https://www.invisioneer.org/
  7. Downgrade to PHP 8.1, the 8.2 version is not supported yet.
  8. From which version did you upgrade? Also, are there any errors logged in ACP > Support > System Logs?
  9. Based on your reply, it shouldn't reappear anymore now that you closed it.
  10. There isn't any need to make a copy of the database. Unless you made one and then cleaned infected tables/content from there, too? The best option is to re-upload a fresh set of files, and then compare the folder to check if there are any extra folders/files. Comparing the database tables to a fresh installation helps find the extra ones there, too. You also need to account for 3rd party applications and plugins, though. If you'd like, I offer a cleanup service. You can check my site or send me a PM.
  11. I've seen several people make that mistake so far. 🤷‍♂️
  12. I'm not sure how the scanner works right now, but I guess it scans the used language strings and checks if they exist in the lang.php file? If so, it should also check for required language strings that the system expects when you add a specific extension/feature/node/etc. For example, when you add a Node/Item that supports search, you need to add specific language strings for the quick search menu, contextual search menu, etc. All those language strings are not documented anywhere. Another thing to check are the required language string for admin/moderator restrictions in ACP. There are a few more areas, but I can't remember them now.
  13. None that I can think of without editing the code/database. I managed locally by temporarily altering the code to disable the json_decode line and saving the settings page. Updating the setting's default value in the DB and clearing the caches from ACP should work too.
  14. Do note also that the message doesn't disappear automatically even if you fix the issue. If you disabled the function after you saw the message in ACP, you need to close it yourself. Also, if you want to double-check that the functions are indeed disabled, there is a phpinfo link on the support page. See what it says there rather than testing with an external phpino().
  15. Yes, there are not such big tables based on your screenshot. You could also order them by their size by clicking on the table's header. In any case, it seems like your hosting is calculating wrongly the database size. Unless you have more databases on your account other than the forum one? P.S.: You might also want to switch your board_url to use HTTPS:
  16. While the link is now visible, the suggested robots.txt file in the guide is outdated. For example: Profiles are not disallowed anymore The tags page is not included The cookie page is not included The embed controller is not included
  17. You can't use the upgrader in ACP because you also need to change the PHP version for this particular upgrade. Try doing a manual upgrade instead: https://invisioncommunity.com/4guides/advanced-options/server-management/install-and-upgrade-r259/#manualupgrade
  18. Don't. Simply don't. It will cause all kinds of issues. And if you enable IN_DEV mode on the dev forum, there's no way to know what will happen. If you want to have a dev forum, make a copy of both database and files.
  19. The wrong JSON format also causes the manifest URL to throw an error on the front end.
  20. The template parameters for "nexus > global > forms > businessAddress" are the following: $name, $value, $googleApiKey, $minimize=FALSE, $requireFullAddress=TRUE, $htmlId=NULLs, $vat=FALSE The $htmlId parameter wrongly uses NULLs (extra s at the end) instead of NULL.
  21. After a fresh install, going to "ACP > System > SETTINGS > Web App" throws a TypeError: TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given (0) #0 path\to\system\Dispatcher\Controller.php(118): IPS\core\modules\admin\settings\_webapp->manage() #1 path\to\applications\core\modules\admin\settings\webapp.php(39): IPS\Dispatcher\_Controller->execute() #2 path\to\system\Dispatcher\Dispatcher.php(153): IPS\core\modules\admin\settings\_webapp->execute() #3 path\to\admin\index.php(13): IPS\_Dispatcher->run() #4 {main} The issue is this code: /* And finally, additional manifest and livetile details */ $manifestDetails = json_decode( \IPS\Settings::i()->manifest_details, TRUE ); $form->add( new \IPS\Helpers\Form\YesNo( 'configure_manifest', \count( $manifestDetails ) > 0, FALSE, array( 'togglesOn' => array( 'manifest_shortname', 'manifest_fullname', 'manifest_description', 'manifest_defaultapp', 'manifest_themecolor', 'manifest_bgcolor', 'manifest_display', 'manifest_custom_url_toggle' ), ) ) ); The problem is that $manifestDetails at this point is NULL because the json encoded data is wrongly using square brackets: ["cache_key":1692875360] Instead of curly brackets: {"cache_key":1692875360}
  22. That is really strange. I think it's a problem with your language pack. 🤨 This is the message I get locally:
  23. Maybe you could use multiple alerts that shows only to specific groups?
×
×
  • Create New...