Jump to content

Daniel F

Invision Community Team
  • Posts

    6,570
  • Joined

  • Days Won

    37

 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 Daniel F

  1. Can you send me the FTP details to take a look?
  2. The IPS\core\extensions\core\Sitemap\Applications extension and also the IPS\core\Application::sitemapLinks function were removed in 4.6.9. Have you replaced all your files while the upgrade? I guess there's still the IPS\core\extensions\core\Sitemap\Applications extension on your system which "is fine" as long as also the applications/core/data/extensions.json is present and up2date. Can you confirm that applications/core/extensions/core/Sitemap/Applications.php is present?What happens when you delete it?
  3. Does it happen if you disable the topicsview app?
  4. 1. Make sure that the mbstring module is installed and available on your server/webspace http://www.php.net/manual/en/mbstring.installation.php 2. You'll have to uninstall the rules application which hadn't any upgrades since 2019
  5. The "issue"(not bug per se) is, that the system won't save the change once there are 2 or more language strings with the same key but in different apps.
  6. That's a different problem/bug where 2 apps used the same key!
  7. This shouldn't happen, we're removing them based on the app and key so it's going to remove it from all languages no matter if it's translated or customized. /* Delete removed language strings */ if( file_exists( \IPS\ROOT_PATH . "/applications/{$data['key']}/setup/upg_{$_next}/lang.json" ) ) { $langChanges = json_decode( \file_get_contents( \IPS\ROOT_PATH . "/applications/{$data['key']}/setup/upg_{$_next}/lang.json" ), TRUE ); if ( isset( $langChanges['normal']['removed'] ) and $langChanges['normal']['removed'] ) { \IPS\Db::i()->delete( 'core_sys_lang_words', array( array( 'word_app=?', $data['key'] ), array( 'word_js=0' ), array( \IPS\Db::i()->in( 'word_key', $langChanges['normal']['removed'] ) ) ) ); } if ( isset( $langChanges['js']['removed'] ) and $langChanges['js']['removed'] ) { \IPS\Db::i()->delete( 'core_sys_lang_words', array( array( 'word_app=?', $data['key'] ), array( 'word_js=1' ), array( \IPS\Db::i()->in( 'word_key', $langChanges['js']['removed'] ) ) ) ); } }
  8. What version are you on? These strings should have been deleted while the upgrade to 4.7.9 Beta 1
  9. There's no way around this, the best solution would be to have only one theme for guests.
  10. Thanks, I’ll take care of this for the next beta.
  11. Does it work if you switch to English? IF yes, it's an issue with your German Translation which is probably not compatible with the recent IPS version!
  12. It needs to be installed! Check your Applications page ( ACP => System => Applications )
  13. Thank you for bringing this issue to our attention! I can confirm this should be further reviewed and I have logged an internal bug report for our development team to investigate and address as necessary, in a future maintenance release.
  14. Here's one of the communities where I'm helping them to get back to top:D But, it's important to note that this isn't ONLY the app! This app is just a tool assisting and helping you to get better, it's not just a one-click installation and you're done! There's another one with an up trend, unfortunately I have no access to their GSC account to provide a new update.
  15. @Stuart Silvester just helped me locate the issue here. So we're sending only items which are visible to guests to indexNow, but once the item is deleted, we send literally any item to IndexNow, no matter if it's visible or not. The reason for this is, that it could have been moved in the meanwhile so we want to be sure that IndexNow is made aware of the change. That said, we could probably disable this for Private Messages and Reports since they will never be visible to guests.
  16. You’ll have to ask the author of this application.
  17. Thank you for bringing this issue to our attention! I can confirm this should be further reviewed and I have logged an internal bug report for our development team to investigate and address as necessary, in a future maintenance release.
  18. I'm seeing a description Also, keep in mind that Google won't show the meta description, the SERP ( Search Engine Results Page) will return whatever Google thinks suits best to the used query. See also https://developers.google.com/search/docs/appearance/snippet
  19. You can also use the block feature to set the visibility
  20. Absolutely. You can use bulk mails for this
×
×
  • Create New...