Jump to content

teraßyte

Clients
  • Posts

    33,393
  • 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. Here's the culprit: {{if $record->customFieldDisplayByKey('post-type', raw) == "video"}} Change it to: {{if $record->customFieldDisplayByKey('post-type', 'raw') == "video"}}
  2. 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.
  3. Uploaded a new 1.0.1 version pending IPS approval: Please note that while the link for the best answer is fixed the links for other replies might still not work in some cases (depends on the number of votes replies have, the page they are on, etc). This is caused by the code not ordering properly the replies when creating the redirect link. It's a known bug that IPS still hasn't fixed.
  4. @abobader The templates you need to edit are these 2: tbvsm > front > global > hookUserBar tbvsm > front > topics > hookPostContainer The code that controls the icon is the following: <i class="fa fa-{expression="\IPS\Settings::i()->tbvsm_display_icon"}"></i> You need to replace it with the image you want to use. And depending on how you're adding it to the user bar (background image, image directly in the code, or anything else) you might need to add some CSS in the custom.css file using these classes for the rule ".cVipStatus .cUserNav_icon".
  5. Yeah, the one in your screenshot is a v2 app and @Jim M is most likely correct that they disabled the old v1 app since I'm not seeing the usual link to request access to it.
  6. I think you might have created a v2 application, but Invision Community requires the older v1.1 version of the app/api instead. The IPS guide itself is old compared to Twitter's current UI so it can be confusing. Check which version you're currently using. If you're unsure just take post a screenshot of this page: https://developer.twitter.com/en/portal/projects-and-apps
  7. Once you click on a provider's name (be sure it says "Available for hire") and it opens a new page with their profile there is a Contact me button under their photo. Some buttons will simply open a new PM, others will redirect to an external site. It depends on how the user setup their contact information. 👍
  8. The settings only supports font awesome icons. If you want to use a separate icon (from a different font) or an image you'd need to edit the 2 templates in which the setting is used. But yes, it's possible. Just to double-check, what icon/image do you plan to use?
  9. Indeed. I usually always suggest doing plugins whenever possible to avoid this exact situation. It's easier just making a quick edit to a template, but then that template won't auto-update during an upgrade.
  10. Yes, version 2.1.1 is compatible with 4.7.x and PHP 8.
  11. Yes, you need FTP to edit that file. Or any file manager included in your server's control panel (cPanel, Webmin, etc).
  12. A friendly reminder to check the huge list of open bugs reports in the Developer Connection forum instead of nagging us about PHP 8. 😋
  13. Just found another bug with Custom Products (which I heavily use). Here are the steps to reproduce: Add a paid invoice to any random account in ACP and add a Custom Product with it. In the Client Area Display tab insert some text and an attachment. Now go to the user's account and edit the custom Product (pencil button) from there: add some more text, delete the attachment, and upload a new file. After saving the changes go back and edit again the custom product: nothing has changed except for the fact that the old attachment and the new one are both there now. Now try adding another invoice with a NEW Custom Product and you'll find the editor in the Client Area Display tab prefilled with the original text and both attachments from before. In some cases, the old attachment is still there but the editor doesn't display it instead. I'm not sure of the steps to reproduce this just yet though. I'll keep looking. === Overall Custom Products have a lot of little bugs here and there: There's no way to immediately add custom fields (like URL, FTP details, accounts, etc) when adding/editing the package itself but going and editing each custom field individually the custom packages show up there. It's hard to find them once they're added to a single account, there's no easy way or some kind of custom group to list all of them in one place. Settings for them are saved when you initially create them from an invoice but editing them after they're added to the user account doesn't save some things. Custom products don't show up in certain settings (like associable products when editing a department). Honestly, the whole situation is a mess... 🙄
  14. The software is based on using a single email in a lot of places/functions/etc. To allow multiple accounts using the same email would basically require to rewrite the whole code from scratch. It's just not possible. Some email provides allow to use aliases (like gmail) so you could probably use that to work around it: email.name@gmail.com email.name+alias1@gmail.com email.name+alias2@gmail.com etc.
  15. Maybe the email/IP aren't on Cleantalk but on another list like https://www.stopforumspam.com/ IPS uses multiple lists to check, and even their own list based on all IPS communities. They won't share how they return a 4 response though, or (real) spammers would have an easier way bypassing their checks. ACP > Members > CONTENT MODERATION > Spam Prevention > Spam Defense Whitelist (button top-right). IPS should probably add the word whitelist to return this page in ACP's live search as currently it's not included.
  16. Yes. That looks like the database was imported(?) with the wrong charset at some point. Maybe during a server move (or simply a backup restore). I've seen it plenty of times. If the issue affects only a few posts I suggest simply fixing the ones you come across manually. However, considering Italian uses a lot of accents (I would know being Italian myself lol), I guess the issue covers a lot of content. Unless you know how to fix it yourself you can look into hiring a developer to fix it for you. The only way to solve it would be if you have an old backup of the correct data and it's possible to attempt to re-import it. Any edited content would be lost though. if you just overwrite the rows though. There are ways to avoid that, but it's quite a time consuming process. And if you don't have the original, non-broken data it's still possible to attempt to fix it but it requires even more time.
  17. I'm back. I'll be checking the error as soon as I'm done catching up with things. Hmm, I don't see many people using this feature honestly. The plugin was initially made to allow users to bump their own topics. If there is enough interest from other people I can consider adding multi-bump from forum view in a future release. I'll just keep the idea in a corner of my mind for now.
  18. Based on the error the table core_cache is missing from your database: IPS\Db\Exception: Table 'ic4.core_cache' doesn't exist (1146) You should check with your hosting why the table is suddenly missing from your database. There might also be other tables missing and/or issues with the database itself.
  19. @Maxtor Hmm, is that PHP 8.0 or 8.1? I don't remember seeing that error when I tested on 8.0. That said I'm currently away until 7 October so I'll have a look once I'm back.
×
×
  • Create New...