Jump to content

teraßyte

Clients
  • Posts

    33,346
  • Joined

  • Days Won

    46

teraßyte last won the day on March 2

teraßyte had the most liked content!

Contact Methods

Profile Information

  • Gender
    Male
  • Location
    Italy

Recent Profile Visitors

27,809 profile views
  1. You need to establish a connection to the external/remote database you want to use, and then run the queries with the usual framework code to retrieve/display the data: The first codebox shows an example of how to start an external database connection.
  2. No, you're not missing it. There is no option in Invision Community for that. I've seen modifications to hide images for specific groups, but not based on the member's age if they're logged in.
  3. I'm not sure how it happened, but the same user was able to react twice to one of my posts here on this forum: You can see there are 2 Thanks reactions from the same user. I also received 2 separate inline notifications for it.
  4. Yes, you need to add your own API key now. The default API key stopped working almost 1 year ago:
  5. I usually wait 1-2 weeks after a new release to avoid exactly this kind of issues. The time is usually enough for IPS to release a patch for any major issues.
  6. You can use Staff Messages: Keep the message private, and only moderators will ever see it.
  7. You guys should really consider adding a maximum PHP version check both in the suite and the requirements checker. I'm not saying to lock everything with the wrong version, even a simple warning in ACP would to the job. With a simple check for the maximum version, you'd avoid dozens of support requests... 🙄
  8. Sorry, that doesn't help. Can you post here a few of those queries? That said, since you mentioned the _new suffix, I think your database might not be utf8mb4. Does the Support page in ACP list any errors for the MySQL database?
  9. What kind of queries are you being asked to run exactly? There were a few changes, but not that many. 🤔
  10. From the js file (line 61): ips.createModule('ips.ui.uploader', function(){ To create a new one you need to copy/paste the file in your app, change the name, update the names/references, edit the code you need, and call the new module's name in the HTML. This is the code that registers the module (I'll use the dialog one which is more used): ips.ui.registerWidget('dialog', ips.ui.dialog, [ 'url', 'modal', 'draggable', 'size', 'title', 'close', 'fixed', 'destructOnClose', 'extraClass', 'callback', 'content', 'forceReload' , 'flashMessage', 'flashMessageTimeout', 'flashMessageEscape', 'showFrom', 'remoteVerify', 'remoteSubmit' ], { lazyLoad: true, lazyEvents: 'click' } ); You need to change the dialog name (maybe dialogbis) which registers the widget. All the other values in the array are the options you can use inline. This is how the code would be with the original dialog module: <div data-ipsDialog data-ipsDialog-title="TITLE" data-ipsDialog-remoteSubmit data-ipsDialog-flashMessage="ITEM SUBMITTED"> This is how it would look with your updated dialogbis module: <div data-ipsDialogbis data-ipsDialogbis-title="TITLE" data-ipsDialogbis-remoteSubmit data-ipsDialogbis-flashMessage="ITEM SUBMITTED">
  11. The ips.ui.uploader.js file is a module, and there's no option to extend modules in the framework as far as I know. Let's hope something about it changed in v5. 🙄 Your only option currently is to create a separate module (with a different/similar name), change only the code you need, and add the new module to the HTML.
  12. The same permission problem happens with the fluid view in the forums application loading extra topics. I think it's the same root issue in the code that checks the item permissions and loads them. IPS already mentioned they're working on a patch to fix several issues, it should be coming out in the next 1-2 days.
  13. You also need to upload the files to the server before clicking Continue. Have you done that step?
  14. Edit the theme's settings (pencil icon; not the HTML/CSS) and you'll find a color setting with the name Tags Background in the Front-End Colors tab.
×
×
  • Create New...