Jump to content

bfarber

Clients
  • Posts

    163,911
  • Joined

  • Days Won

    346

 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 bfarber

  1. Are your folders writable on the test installation? i.e. the /datastore folder and the /uploads folder (and all files and folders underneath both)? If not, that would likely explain the issue you're running into.
  2. We store the post content as already generated HTML, which means the same content is served to members and guests. In order to accomplish what is being asked here our options are limited, as such. We could in theory... Link to a script that serves the image (instead of to the actual image), and let that script serve an error/alternative "no access" image to guests. Main con: you lose the benefit of using a CDN (such as Cloudfront) to serve your images. Use javascript to provide an alternative experience for guests. Main con: simply disabling javascript circumvents the "protection", so it's not really that useful if you truly want to block guests from seeing the images. Store different content for guests and members. Main con: you duplicate the bulk of your database, and all existing content would need to be rebuilt on upgrade. Realistically there's not a great way to handle what you are asking for when you factor in other considerations as above.
  3. That's not what he meant. Jordan explicitly tracks certain things he is raising and getting more feedback on. Just to be clear lol - yes this isn't the first time this has come up.
  4. That's not an option out of the box I'm afraid.
  5. It is not possible to sort content in a Pages database by reactions out of the box.
  6. That's correct - a cookie is set and they are tracked even if they sign up later.
  7. This one is going to be a bit trickier realistically. I think a better option might be to use the field formatting option if this is for listing or content view. Then you can do something like this in the "custom template" option. {{$json = \IPS\GeoLocation::buildFromJson( $formValue );}} {{ /* All the address properties will be in the $json object now... */ }}
  8. You heard it here. @The Old Man wants me to be less helpful.
  9. {{$field = \IPS\cms\Fields<database_id>::load( $fieldId, 'field_key' );}}
  10. Yes Yes It is difficult to say. As you guessed, a cookie is set to remember that the user was referred. It is of course possible some browsers or browser plugins might block the cookie. Possibly (maybe even probably), but it's outside the intent of the system so I don't want to make any promises.
  11. If you're using the live meta tag editor, it won't support variables. If you are editing the template or using a plugin, you'll want to look at $member->name or $this->member->name depending upon where you are making your edits.
  12. In the AdminCP you can use the live search to look for "System Logs", and then review the system logs - this may give you more information as to the cause of the problem.
  13. In the languages area of the AdminCP you can disable any languages you don't wish to use. The default language to use will be determined by your browse/user-agent. For instance, if you have English and French installed, and your browser says "this user is using an English language on their computer" then you should get English used by default on the site. For users who use French primarily, then the French language pack should automatically be chosen.
  14. Inside the loop you have $fieldId, so you could do this: {{$field = \IPS\cms\Fields<database_id>::load( $fieldId );}} Label: {$field->_title} Description: {$field->_description} Alternatively, they're just language strings with the key "content_field_<field_id>" and "content_field_<field_id>_desc" so you could use Label: {expression="\IPS\Member::loggedIn()->language()->addToStack( 'content_field_' . $fieldId )"} Description: {expression="\IPS\Member::loggedIn()->language()->addToStack( 'content_field_' . $fieldId . '_desc' )"}
  15. You want to remove the permission for the newsletter option? That would require a plugin.
  16. UPDATE downloads_files_records SET column=REPLACE(column, 'https://xyz.old.com', 'https://xyz.new.com'); Take a backup first, add your SQL table prefix to the table name if applicable, and adjust "column" appropriately. Also, it goes without saying, adjust the old and new URLs appropriately.
  17. Are you using GD or ImageMagick for image processing (AdminCP > System > Files > Image Settings)? If you switch to the other method (if available), do you have the same problem still?
  18. I've done it in a custom database before but it was a long time ago so the details escape me. I essentially had to load the AdminCP javascript files that facilitate the live search, and then I think I needed a javascript mixin to adjust a few things. I know this probably isn't super helpful, but just saying - it can be done with a little work.
  19. As an old person here, you could explain how you choose the most appropriate memes for every situation. Meme images to steer clear of, whether to use the built in giphy integration or fetch memes manually from third party sources, those sorts of things. It would be a fascinating read.
  20. While I don't believe there's a true security concern here (think of the situation like logging in to a third party site using Facebook...if you log out of that site you are not inherently logged out of Facebook too), I can appreciate the confusion and concerns raised in this topic and have brought the discussion up internally to take a look at. Thanks everyone!
  21. Yes, when I've seen this come up in the past it has always been due to multiple languages being installed, but the translations for "Records" are not stored in the language pack being used somehow. In any event I'm glad you're all sorted!
  22. Thanks, I've raised this internally to have it checked on for a future release.
  23. If any app other than forums is the default app, then all forum URLs will be prefixed with /forums as you are noticing. Unfortunately that's not something that can change without a plugin, or by making Forums the default application.
  24. AdminCP > Members > Groups. Edit the group and upload a "Group Icon" on the first tab.
×
×
  • Create New...