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. Yes, you can merge members in ACP while viewing their profile: From the guide: You can also choose which account is kept and which is deleted after the merge.
  2. You can put the application offline in ACP and allow only specific groups access to it. To do so go in ACP > System > SITE FEATURES > Applications > Courses > Permissions (lock icon). From there Disable the setting Application Online and extra settings to choose the groups and enter an offline message will appear.
  3. The backup is already restored and the site is back online. The only "issue" left is installing/enabling the mod_rewrite module on the server to re-enable FURL URLs. But that's something that needs to be done at the server level.
  4. In case you don't already have a developer who can make the modification for you, send me a PM with more details and we can talk about it. 😉
  5. Yeah, 611 is indeed a lot. You'll have a hard time manually creating the clubs and re-adding all members. It's not impossible, but it will be very time-consuming. The custom modification could work like this: Select a group. Enter a Club name. Specify a forum (?) or some other content that should be included in the club. Once you click to proceed, the tool will: Create a club with the specified name (#2). Move the unique info to the newly-created club (#3). Add to the club the members who have the chosen group (#1). Eventually, delete the group automatically (it would be annoying having to delete 600+ groups). This is just a rough idea of how it could work. It can obviously be adapted to what you need.
  6. Ok. If clearing the cache changes nothing, check your browser's console. There should be some kind of Javascript error that is preventing CKEditor from loading, it should give more info on what's going on. EDIT Taking another look at your first screenshot, I see your site is not using HTTPS and that's probably the problem: Switch your site to use HTTPS, clear again the cache, and try again. If HTTPS doesn't work, checking your browser console as I mentioned above.
  7. Try clearing your site's cache in the Support page in ACP. Guide link: https://invisioncommunity.com/4guides/client-services/getting-support-r292/#marcssupporttool
  8. There must be a configuration issue with the server if it's not using PHP 8.0 properly for your site. You should contact your hosting about it. There is no way to force the upgrade to start until that is fixed.
  9. Based on the error in your second screenshot, you have the wrong PHP version. The latest 4.7.13 version required PHP 8.0+.
  10. Is this for a Cloud Community account? If yes, you can have a look at this guide:
  11. There are only 3 Dutch translations in the Marketplace: https://invisioncommunity.com/files/category/161-translations/ 2 of them are for 4.4, and the most recent one is updated for 4.7.3 (so it's 10 versions behind the current 4.7.13): Maybe you can try contacting the author to see if he has any plans to update it further.
  12. Based on that error, since it's trying to insert a post using a 0 ID, I guess AUTO_INCREMENT for the ibf_forums_posts table isn't properly set. 🤨
  13. What URL is triggering this error? The URL should be visible at the top of the page when you're viewing a System Log in ACP.
  14. That screenshot doesn't help much, unfortunately. Check your server error logs to find out what exactly that 500 error really is.
  15. Based on your first post, the path you should use in the first screenshot is /var/www/dg_forum, and /var/www/dg_forum/uploads for the second one (which you are already using; except the last slash). Maybe the folder permissions (CHMOD) are wrong?
  16. What happens if you try to save the template without making any changes to it? If there's no error, the code you added is broken somehow. If you still get an error, it might be mod_security as Marc mentioned above. It's a server module, you should ask your hosting about it.
  17. As Marc mentioned above, it's not possible with the current default options. The only way to do what you want would be a custom modification.
  18. You can use a similar rule to the one I posted in the other topic: body[data-pagelocation="front"][data-pageapp="cms"][data-pagecontroller="page"][data-pagemodule="pages"][data-pagename="PAGE_FILENAME"] #elSearchWrapper { display: none; } Replace PAGE_FILENAME as usual. I simply changed the navbar breadcrumb for the search ID element #elSearchWrapper.
  19. You can delete it, but only if you are using Invision Community 4.x. If you're still using the old IP.Board 3.x version it's a required file.
  20. It was a custom profile field. It's been removed from a fresh installation, but it can be easily added from ACP.
  21. What Invision Community & PHP versions are you using? Seems like the server is using the wrong PHP version. The file initdata.php is from IP.Board 3.x, the file in 4.x is called init.php.
  22. You need to create an HTML block (not Editor; image #2) in order to use IPS template logic, and then add the code in the Content tab/textarea: {advertisement="TinkAd1"} As template key (image #3) instead use something like ad_block_tinkad1. Everything else can remain as is.
  23. Here you go: body[data-pagelocation="front"][data-pageapp="cms"][data-pagecontroller="page"][data-pagemodule="pages"][data-pagename="PAGE_FILENAME"] #ipsLayout_contentWrapper { padding-top: 15px; } Just like before, replace PAGE_FILENAME and adjust the padding-top value by the amount you need.
  24. You should be able to hide those links with some CSS by targeting that specific page. Each page has a body element similar to this one (this is taken from this very page): <body class="ipsApp ipsApp_front ipsJS_has ipsClearfix" data-controller="core.front.core.app,cloud.front.realtime.viewingService" data-message="" data-pageapp="forums" data-pagelocation="front" data-pagemodule="forums" data-pagecontroller="topic" data-pageid="475515" > You can use a rule similar to this one: body[data-pagelocation="front"][data-pageapp="cms"][data-pagecontroller="page"][data-pagemodule="pages"][data-pagename="PAGE_FILENAME"] nav.ipsBreadcrumb.ipsBreadcrumb_top { display: none; } Just replace PAGE_FILENAME with your page's filename.
  25. Are your tasks running properly? Scheduled entries are published by a task that runs every 15 (?) minutes if I remember correctly.
×
×
  • Create New...