Jump to content

teraßyte

Clients
  • Posts

    33,391
  • 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. Oh okay then, one of those situations. In case there's also the option of hiring a different developer to update it for you, or at least give it a quick check at least: https://invisioncommunity.com/third-party/providers/ Making it compatible might end up being a simple thing depending on what needs to be updated. I've done several similar updates myself recently with this whole PHP 8 compatibility chaos. 😅
  2. In case restoring a backup is not an option, what about the the application's developer? Have you tried contacting them to see if they have an updated/compatible version? Okay, then that's something the IPS staff needs to answer for you. It's nothing we can check ourselves.
  3. With isset() it simply checks if the key exists in the array (it doesn't matter what value it contains), with !empty() instead if checks both that the key exists and the value is not empty (null, zero, etc).
  4. By default new registrations shouldn't be getting a secondary group. Do you have some kind of modification related to registrations installed? Or maybe you have the commerce application and are requiring users to select a subscription/product that changes the group?
  5. There is no setting to stop them from replying. Depending on what you want to do there are 2 options: You can disable the messaging module completely for the group in the Core application. Doing so they will lose access to their current PMs/content though. Have a modification made to also stop them from replying when they can't start new PMs. If you want to let your members still see their old PMs then you'd have to go with option #2. It's easy enough to make the plugin, send me a PM for more info if you're interested.
  6. To add some more details to this: the problem are POST requests that contain <iframe> elements being blocked by the server. Like YouTube embeds as mentioned above.
  7. Hmm, nope. I can't reproduce even using the same settings. 🙄 Could you please send me a PM with an ACP/FTP account so I can have a look directly at your site?
  8. Yep. I've reported this bug before, and even report the guide itself. Looks like they haven't gotten around to fix it still. 😋
  9. Ops, apologies about this. When I tested I wasn't able to reproduce the bug and I was going to ask you more info but I clearly forgot to do so. 😅 So yeah, could you please post the settings you're using for the group having the error? Either make a list of just post a screenshot.
  10. I can help you with that if you want. Send me a PM with the details. 🙂 Or, you can find a list of other people available in the Providers database: https://invisioncommunity.com/third-party/providers/ Just filter by IPS Legacy Upgrades.
  11. The problem is that the custom field (with ID 1) is included in the nexus_customer table schema in \applications\nexus\data\schema.json. Once you delete the custom field the database checker marks it as a missing column. The code should be changed to add the field inside the installOther function in the Application.php file instead.
  12. Yes, it's still an option in the 4.7 version. I can at least take a quick look at your site and see what exactly is going on. What is your site's url? (I'm not IPS staff so I can't see the license tied to this topic/your account.) Pages allows for a lot of customization so I can't really give you any specific indication on how to fix your templates without seeing them. If you send me a PM I can try taking a quick look for you and figure something out.
  13. Yeah, 4.3 is quite old, there have been a lot of changes since then: Did you disable also all modifications? I forgot to mention this in my reply above. Maybe, maybe not. Depending on what is broken, the page could be throwing some kind of PHP error or exception. If that is what's happening, the page won't load at all. For example the template might be calling a function that has been removed or changed in 4.7. Considering you upgraded from 4.3 it's certainly possible.
  14. I assume you upgraded to version 4.7.3, but from which version did you upgrade? About your issues: Sounds like a theme issue, most likely some of your templates/css files didn't auto-update because they were edited. Again, sounds like a theme issue also for this one. Most likely you need to update your templates to support new features. Or maybe some code for older features changed something and you need to make the same edit. Have you tried checking if you have the same issues on a default, non-customized theme? Issue #1 should be fixed if you test with the default theme, but #2 probably still won't work until you update the templates (as I mentioned above).
  15. Based on the error it looks like your new server has STRICT MODE enabled for MySQL while the old server didn't. You can try asking your hosting to disable it to solve the problem. That said, the error comes from a third party modification. Based on the name I'd say it's a modification that keeps track of who has viewed a topic. You should contact the modification's developer and report the bug.
  16. The screenshot shows you have version 1.0.6 installed but the version currently available in the marketplace is 1.0.5: Did the developer create a custom version for you perhaps? You'll need to contact them directly for help.
  17. Right, the problem here is the ACP not properly showing the renew button though. I believe it's already been acknowledged as a bug in another topic though.
  18. Based on what he wrote right after he already asked and it looks like his hosting disabled the backups once he went over his quota: 🙄
  19. This is the support topic for this modification:
  20. @GazzaGarratt You can post feedback here: https://invisioncommunity.com/forums/forum/499-feature-suggestions/
  21. As Jim mentioned above this is not included in the IPS renewal. Apart from the Cloud option, another option would be to hire someone to do the upgrade for you if you're not comfortable doing it yourself: https://invisioncommunity.com/third-party/providers/ I often get these kind of requests.
  22. That's not an IPS error. I assume they're hitting a 403 forbidden server page error instead. You'd need to look at your server logs to figure out the issue. Maybe you have some kind of security rule that is getting triggered from the login form doing a POST request. 🤨
  23. That's a problem with a plugin/widget and the PHP code itself needs to be updated. It's not a problem with the template. You need to contact the author of the plugin for an updated version. In case the developer is not available anymore your next best option would be to hire a different developer to fix/update the plugin for you: https://invisioncommunity.com/third-party/providers/ If you're not sure which plugin it is send me a PM and I can help you find it.
  24. Here's the culprit: {{if $record->customFieldDisplayByKey('post-type', raw) == "video"}} Change it to: {{if $record->customFieldDisplayByKey('post-type', 'raw') == "video"}}
  25. The code inside the block must be missing something. Previous PHP version silently failed or threw warnings/noticed, but PHP8 is much more strict. Based on your log you have some wrong code inside a block called jwsestandard3colblock. IPS won't be able to help since it's either a custom block you made or some modification you installed. They'll move the topic in a different forum most likely, but if you post the block's code it's possible to have a look and see where the issue is.
×
×
  • Create New...