-
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
Projects
Release Notes v5
Invision Community 5 Bug Tracker
Forums
Events
Store
Gallery
Posts posted by bfarber
-
-
22 hours ago, Jordan Invision said:
In the mean time, I'm curious if anyone else would be interested in this as well?
I saw this topic and was waiting to see the same thing basically.
-
A fix for the issues reported here is pending developer and QA review. Thanks for raising it!
- Jordan Miller, Morrigan, Linux-Is-Best and 1 other
- 2
- 2
-
This issue is resolved for our upcoming 4.6 release.
Quote- Fixed an issue where moving a read content item to a new container results in it becoming unread.
- TSP, Jordan Miller and Linux-Is-Best
- 1
- 2
-
-
Yes if your permission setup isn't working as you think it should, I would recommend submitting a ticket so we can help you review it.
-
PHP 7.3 should work with 4.4. I would double check that your server meets the requirements with 7.3 installed (perhaps you're missing a necessary PHP module in that build).
-
Is that only for clicking on a member result when performing an IP address search? Anywhere else you've noticed this?
-
No this is not managed in the groups area, it is managed by editing the module permissions as Daniel mentioned. 🙂
-
Your moderators must have permission to see the draft in that case. You can edit moderator permissions in the AdminCP under Members > Moderators by editing the respective member/group moderator records.
-
No, the intention is that for all intents and purposes these posts "don't exist" unless the guest completes their registration. They should be deleted automatically on their own via a task already.
-
Verify in the Fields page which field is set as the title field. Then edit the records and make sure that field has a value.
-
Someone ( @CodingJungle I believe) has a tool which helps support IDE autocomplete, however I'm not certain it helps with templates parameters and syntax.
-
Sometimes our system will hold payments for approval. This is usually completed within 24 hours.
-
Yes if you have a Yes/No field then it makes sense if "No" is selected we honor that in the search. We'd essentially need a checkbox next to the toggle that says "Ignore this" or similar to accomplish what you are after without limiting the current available functionality.
-
CSS is pretty powerful but moving things around can be a little hacky if you're unwilling to edit the template (or create a plugin that does so). Hiding stuff is generally pretty easy (CSS display:none).
-
-
You'll need to be a bit more specific. Does this template you are editing accept a user parameter, and if so what is the variable? Or are you looking to show this information for the current logged in user?
-
Might be worth running some checks here as well: https://mxtoolbox.com/blacklists.aspx
-
14 hours ago, Scott Allen said:
Same here. I wanted options that were not available, so ended up using an open source script and modifying it for our theme.
I don't want to keep the actual script in my globalTemplate, tho... Do I need to take the site offline and put it in developer mode to add my own custom JS script file so that I can just use something like this in the globalTemplate?
<script src="JS/VgBackToTopButton.js"></script>
or can this be done by creating a new .js at: Pages > Page Management > Templates (New > Add Javascript file)
And if the answer is 'yes' to the first or second part, can anyone help with what the path to that would be? I read the Guide here, but had questions likely from not knowing if I'm even barking up the right tree. This is outside my wheelhouse, but I've been diving into HTML/CSS/JS this year to make some cool things for our site, and I'm totally willing to learn if anyone can steer me in the right direction here. Much appreciated and thanks for the help!
If this is for all themes, a plugin which imports your JS is your best bet.
If this is for a specific theme, go to the themes management area in the AdminCP and click the dropdown arrow next to your theme, then choose Manage Resources. Upload the javascript file, and then the table will show you the resource tag to use to point to that file's URL. You can then import this into your template using something like
<script src='{resource...}'></script>
-
That error would make me think you have a "Non-registerable name" set incorrectly (maybe a blank value or something was added during the upgrade), or you have the display name character limitations configured incorrectly. Check both of those areas in the ACP.
-
Indeed as has been mentioned, word expansion changes are not retroactive. Your changes apply from that point moving forward.
-
As noted above, it's probably best if you submit a ticket so we can take a look directly.
- Linux-Is-Best, Jordan Miller and Ibai
- 2
- 1
-
This is for attachments and will not apply to things like Gallery images or Pages record images (but would apply to attachments in either application, e.g. to comments or the body of a Pages article).
Within Gallery if you change the dimensions of the images to store you will be prompted to rebuild Gallery images
Changes to a Pages record image are not retroactive - there is no tool to rebuild the existing thumbnails.
-
Go into phpmyadmin in your cpanel control panel and sort the database tables by size. There may be cached page outputs stored that are consuming a lot of space, or the log table may have grown large in size. Both of these tables are fairly safe to purge if so.
Saving posts is slow
in Technical Problems
Posted
How many is a "large number"? If there are 50 or less (remembering off the top of my head here) we send the notifications immediately, but if there are more we queue the notifications to be sent by a background task. If we are sending notifications immediately, the speed of your email server will make a difference, but if we queue them then emailing is not likely going to be the problem.
Do you use Elasticsearch? It's possible this is slowing down posting if the newly posted content has to be pushed across the internet to a slow ES instance.
Any custom applications or plugins? Many are designed to do X when Y happens, which often includes submitting a new post or topic.