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. Have you made any changes before the error started? Going to your ACP page I'm seeing this error: syntax error, unexpected '->' (T_OBJECT_OPERATOR) This usually happens when the required PHP version is not met. Use this file to check:
  2. Was checking the changes between 4.7.7 and 4.7.8 and spotted a duplicate error code (even marked with a TODO actually 😋) in \applications\downloads\modules\front\downloads\pending.php on line 180: \IPS\Output::i()->error( 'file_version_pending_cannot_delete', '2D417/4', 403, '' ); //TODO error code The same error code is present in the moderate() function right above.
  3. @Daniel F This is indeed (partially) fixed in 4.7.8, but you only fixed the template passing the wrong class. There's no query included to update broken items already in the database, and the rebuild process will still throw an error on 4.7.8. EDIT: Nevermind. I see you made a code change similar to the one I posted in the first post to handle broken items. I guess that works too.
  4. Oh, okay. If the backup is a "full cPanel backup", your host needs to restore that. If the backups are individual files (SQL for the database and TAR for files) you can restore them yourself. However, based on your post, it doesn't seem you have done this before. If you ever need to restore the backup it would be best to simply contact your hosting and they should be able to assist.
  5. You're confusing the backup with the files of the new version. You can (and should) download a copy of the backup, but what you need to upload (#6) are the files of the new Invision Community version (downloaded from your IPS Client Area; #4). Re-uploading the backup files is NOT what step #6 is about.
  6. @Chris027 It's a bug in the 4.7.7 version:
  7. The link you posted is the self-hosted version, not the cloud version. (And, considering the kind of site it is, I suggest you edit the post and remove the link.)
  8. I received the same email yesterday, but I think Google just messed up. Their check should warn about private keys being public. A public key being public is...obvious? 👀
  9. The only real answer here is to change hosting. Recently a few clients I help from time to time decided to change exactly because of that. It's a joke that after a whole year their "slow PHP 8 rolling" is not complete. 🙄 I usually suggest finding a host with cPanel so you can simply have a full backup imported to retain all your configurations. If you want, PM me, and I can give you some more details about what the people I know did. IPS can only suggest its own Cloud packages here. 😅
  10. People using that old application have switched to this one: From the features list:
  11. Instead of going to the ModeratorCP, you can already: Go to the user profile Click Edit Profile (in the cover photo area) Click on the Moderation TAB. Make any changes you need Save. The option to send an alert or warn them is also already available in profiles.
  12. This error means you are missing at least 1 file on your new server: /home/mysite/public_html/mysite/forums/system/Http/Url/Friendly.php. Verify the file exists and has the proper permissions, and if it doesn't, copy it from the old server. You might have more missing though, copying over again all the files would be a good idea. Or, if you are on version 4.7.7, download a new zip file with all the suite files from your client area and upload the files directly from it.
  13. From which version did you upgrade? Your custom theme looks quite broken, most likely it's not compatible with the version you're on. Can you reproduce the issue on the default IPS theme?
  14. What application is that code from? It's not from the default IPS code at least. The problem is that the return array() code is inside the IF check, if the check fails nothing is returned. Adding a simple return at the end of the function is enough: public static function configurationOptions( \IPS\Member $member = NULL ) { if ( $member === NULL or $member->modPermission( 'can_view_hidden_content' ) ) { return [ 'my_notification' => [ 'type' => 'standard', 'notificationTypes' => ['my_notifiction'], 'title' => 'notifications__my_notification', 'showTitle' => FALSE, 'description' => 'notifications__my_notification_desc', 'default' => ['inline'], 'disabled' => ['email', 'push'] ] ]; } return array(); }
  15. Based on that log, Cloudflare is caching the page and always returning that. Since you get the cached page, the tasks aren't running. Either switch to using a Cronjob (which is better) or disable Cloudflare from caching the task.php page.
  16. A new 4.0.2 version is currently pending approval:
  17. Uploaded a new 1.0.3 version currently pending IPS approval. Here's the changelog:
  18. Uploaded a new 1.1.3 version currently pending IPS approval. Here's the changelog:
  19. Well, yes. That's also one way to view it. It's just that I know someone who did exactly that, but every time they added a new theme, they forgot to copy over the rule in the new custom.css file. Someone would always point out the group names had lost their formatting, and they'd remember about it. 😂
  20. I think they meant "all themes" rather than "all templates". You have to add the CSS class in every theme's custom.css file.
  21. @PBarton If I remember correctly, you're on 4.7.6 right now, so you should have those options. For comparison, this is the area where users can change their own setting on this site: https://invisioncommunity.com/settings/links/ That should give you a better idea of where to find it.
  22. Mobile browsers usually update automatically. It's just that the timing was the same as your upgrade. I've seen this issue reported on other sites recently, unrelated to Invision Community.
  23. That's a bug with the Chrome browser. It was introduced around version 108, and they've fixed it for the upcoming version 111 if I remember correctly.
  24. In case recommended posts won't work for what you need, I've updated this modification for some clients before. Unfortunately, I can't redistribute it in the marketplace since it's not my plugin. If you PM me, we can talk further about it.
  25. The image is a required field, so you can't simply delete it and save the rank. You need to upload a new one before hitting the save button.
×
×
  • Create New...