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. The user in this topic had the same issue: It seems their solution was to convert the database tables to InnoDB (?), but it's not clear if it's the solution for the error, or if they did that after managing to fix it by doing something else first. Are you using MyISAM tables by any chance?
  2. Double-check the forum permissions for the group your account is in. Does it have permission to post in the archive forums?
  3. How did you reupload the files? Maybe trying a different FTP app (or even cPanel file manager or similar) might have different results.
  4. Ok, if you're on 4.7.6 and PHP 8.1, and are upgrading to 4.7.14, we can exclude the PHP version. Reuploading all the files is your best option as a first step.
  5. Sounds like not all new files were correctly uploaded on the server. Re-download a fresh copy of the ZIP from your Client Area and re-upload all files. Be sure to double-check all all files are being correctly overwritten. Some FTP apps skip uploading certain files stealthily. Also, which PHP version are you using for the upgrade?
  6. A required checkbox field should always require a 1 value IMO. I consider it a bug. Or at least add a new setting that allows you to require it to be actually checked on submission. 🤷‍♂️
  7. Most of the developers still active (myself included) are using this site to list the modifications: https://www.invisioneer.org/marketplace/ When you click on the Get This File button in every file, you'll be redirected to the developer's site. 👍
  8. While https://v0rt3x.dev/files/file/8-back-2-top/ doesn't work, this one https://invisionfocus.de/files/file/74-back-2-top/ works just fine for me. I guess you can try sending a PM to the developer directly on Invisioneer: https://www.invisioneer.org/profile/9-v0rt3x/
  9. There is no default share option for WhatsApp in Invision Community. I guess you're using a 3rd party modification?
  10. Ah, that makes sense then. They're outdated applications' hooks rather than plugins' ones.
  11. How did you even end up with 53 unlinked/leftover hook files in the table? 🤨 As long as you install/uninstall the plugins correctly, it shouldn't happen. The first step would be to figure out how it happened to prevent it.
  12. Usually, you'd just uninstall the old/disabled plugins. Or are you saying you have extra folders/files in the /plugins folder after uninstalling the plugins?
  13. I asked to add such an option to the JS module back in September 2022: Nothing has changed so far. Being able to change the time is a really basic feature that should be included IMO. 🙄
  14. You are mixing up the terms here. If they can login into ACP they are restricted admins rather than restricted moderators. 🙄 Admins = Admin CP Moderators = Front End
  15. Yeah, a badge for every point would be a bit too much. 😅 You can use this instead: https://invisioncommunity.com/developers/rest-api?endpoint=core/members/POSTitem It's possible to alter the number of points a user has by using the rawProperties parameter. You'll need to first GET how many points the user (API link) has and then save the value including your extra points, though.
  16. Either curl_multi_exec() is disabled by the hosting for all PHP versions, or the package was compiled without it(?). In any case, it's something you should check directly with the hosting. I had a client with the same issue before. Their hosting had disabled the function and refused to enable it. They ended up changing hosting as a last resort. 🤷‍♂️
  17. Well, the issue is that you can't connect to MySQL with the account/credentials you've used so far. It's not a question of supporting non-WP-specific software or not, the MySQL account simply isn't working. 🤷‍♂️ You could upload a simple PHP script that tries to connect to MySQL with the same account to prove your point I guess. Here's an example code: <?php $servername = "localhost"; $username = "username"; $password = "password"; $database = "database"; // Create connection $conn = new mysqli($servername, $username, $password, $database); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } echo "Connected successfully"; // Close connection $conn->close(); If they still won't help, it's probably time to change hosting... 🙄
  18. Yes, that's the one. Just like I said in in my previous reply, you have a permission denied error when trying to connect to the database: PHP Fatal error: Uncaught IPS\\Db\\Exception: Permission denied in /nas/content/live/mypbtinstitute/community/system/Db/Db.php This is something that your hosting needs to check. The software is being denied access to the MySQL database. Something must have broken/changed on their side if you didn't make any changes.
  19. That seems to be the access log rather than the error log, and both links are for WP's login page.
  20. Refresh your site's homepage and then check again the logs. It should be the latest log available. If unsure, try posting a few different errors and we can try to figure it out. This is an example of what it should look like from another topic: It won't be the same exact error, but you can at least see how it should look.
  21. A 500 Error is too generic. You need to look at the server/PHP error log to figure out what the real error behind it is. Once you find it, we can go from there. EDIT Actually, I just tried to open your site and I'm getting a slightly different error compared to your screenshot. There's an additional Permission denied row. It might be related to MySQL. 🤔 You'll still need to look up the real error, though.
  22. There is no integration available in Invision Community for what you're asking. You'll need a custom modification for it.
  23. @Marc Stridgen I've seen tons of people switch to PHP 8.2 and think all is good because the requirements checker doesn't throw any error. Instead of checking only the minimum version, you should consider adding also a maximum PHP version check. It would help a lot. 🙄
  24. If clearing the CloudFlare cache works, it might be caching things wrong. 🤔 Have you tried temporarily disabling CF completely to see if the error goes away?
  25. You can manually add a noindex Meta Tag to the page: https://invisioncommunity.com/4guides/promotion/seo-r295/#metatags
×
×
  • Create New...