Solutions
-
Adriano Faria's post in IPS Archive Version? was marked as the answerExample: /applications/core/data/versions.json
This file will contain all versions from that app. The latest one is the version in use.
All apps must have this file.
-
Adriano Faria's post in MemberACPProfile extension not working was marked as the answerThis is one example from one of my resources:
class _Main extends \IPS\core\MemberACPProfile\MainTab
{
/**
* Get left-column blocks
*
* @return array
*/
public function leftColumnBlocks()
{
return array(
'IPS\membernotes\extensions\core\MemberACPProfileBlocks\AccountData',
);
}
/**
* Get main-column blocks
*
* @return array
*/
public function mainColumnBlocks()
{
return array(
'IPS\membernotes\extensions\core\MemberACPProfileBlocks\Notes',
);
}
/**
* Get right-column blocks
*
* @return array
*/
public function rightColumnBlocks()
{
return array();
}
/**
* Get Output
*
* @return string
*/
public function output()
{
return parent::output();
}
}
Mobile phone. No way to use CODE tag.
-
Adriano Faria's post in Disable "About Me" was marked as the answerGo to ACP -> Members -> Profiles Fields and disable it there.
EDIT: I don’t think you can disable it; only remove it.
You can disable it per group with a 3rd-party resource:
-
Adriano Faria's post in New User Settings Tab was marked as the answer
-
Adriano Faria's post in Is there a solution for preventing individual members from receiving PM? was marked as the answerI guess this one can:
You better confirm with @A Zayed first.
-
Adriano Faria's post in [This site] "Solutions" in the Avatar container not present in all subs was marked as the answerI believe it shows up only in forums where the solved is enabled.
-
Adriano Faria's post in Requiring Approval For New User's First Post Globally was marked as the answerIt’s a group thing. Edit the group you want, probably Members, and you’ll see it in Content tab: Require approval before content shows?.
Enable it and enter 1 in after field and choose approved items of content on the other field.
-
Adriano Faria's post in Disallow guests from purchase in Downloads was marked as the answerJust a closure on this. I'll leave the solution here as it may help someone else.
@Daniel F just responded to the ticket and to work like IPS, you need to remove the permission from your first group (Members, Visitors on IPS) to download, then Guests won't be able to purchase it.
Thank you @Jim M.
-
Adriano Faria's post in Downloads App: Extra Fields - Password was marked as the answerDeveloping this while I give my head a rest (a few hours) from a resource I'm working on:
I'll come back to this during the weekend. Should be available in the marketplace in a few days.
-
Adriano Faria's post in Only City, State in the location field was marked as the answerThis still works and will keep working as it only changes a flag in the method.
You can still download it via IPS site but you can’t via your ACP.
-
Adriano Faria's post in admin account can not use tag prefixs? was marked as the answerDo you mean this yellow part isn't showing up?
Working fine on my 4.7.7 online and 4.7.8 Beta 2 boards.
-
Adriano Faria's post in Preventing Club Images from posting in the main Gallery was marked as the answerSee Show Club Content Areas in the clubs settings:
-
Adriano Faria's post in Sharing Forum Posts to Facebook with the link doesn't get any image to display on Facebook was marked as the answerFacebook will use the image set in og:image meta tag. You can manually set images with 3rd-party resources:
-
Adriano Faria's post in Change Thread Ownership was marked as the answerYou can either:
1: make user B a moderator to edit anyone else’s posts
2: use a 3rd-party resource to change the topic authorship:
-
Adriano Faria's post in ParseError: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE) after server migration was marked as the answerThe message is clear. You need at least PHP 8. Which IPS version?
-
Adriano Faria's post in Hidden thread question was marked as the answerIf it’s hidden due a moderator action, author won’t see it. If it’s hidden because it’s unapproved yet, author can see it.
-
Adriano Faria's post in Club field "Max cover photo file size" not hidden when Clubs is disabled was marked as the answerFix:
Change:
$form->add( new \IPS\Helpers\Form\YesNo( 'clubs_enabled_setting', \IPS\Settings::i()->clubs, FALSE, array( 'togglesOn' => array( 'clubs_default_sort', 'clubs_header', 'clubs_locations', 'clubs_modperms', 'clubs_require_approval', 'form_header_club_display_settings', 'form_header_club_moderation', 'clubs_default_view', 'clubs_allow_view_change', 'club_nodes_in_apps', 'form_header_clubs_paid_settings', 'clubs_paid_on', '_allow_club_moderators' ) ) ) ); to:
$form->add( new \IPS\Helpers\Form\YesNo( 'clubs_enabled_setting', \IPS\Settings::i()->clubs, FALSE, array( 'togglesOn' => array( 'clubs_default_sort', 'clubs_header', 'clubs_locations', 'clubs_modperms', 'clubs_require_approval', 'form_header_club_display_settings', 'form_header_club_moderation', 'clubs_default_view', 'clubs_allow_view_change', 'club_nodes_in_apps', 'form_header_clubs_paid_settings', 'clubs_paid_on', '_allow_club_moderators', 'club_max_cover' ) ) ) ); in applications / core / modules / admin / clubs settings.php::manage()
-
Adriano Faria's post in Doubt for delete all members on community and restart count ID members was marked as the answerIf you have only one member and this member is ID = 1, you can run the following query to reset:
ALTER TABLE core_members AUTO_INCREMENT = 2;
You would need to make sure you have NO other data related to member IDs in your entire database, table per table, that’s why a reinstall is recommended.
Use at your own risk and make a backup of your database before if you’re willing to try it.
-
Adriano Faria's post in Background tasks got stuck was marked as the answer
-
Adriano Faria's post in approval queue - reset to zero hiding all items in it was marked as the answerforums_topics and forums_posts.
Take a look at this topic:
There will be only difference: you’ll have to replace 2 for -1 but I’m not totally sure; would have to make a quick test. I’d recommend to wait for a confirmation. I should be able to do it in a couple of hours or so.
-
Adriano Faria's post in Restore all of a user's posts / responses (unhide) was marked as the answerYou can run the following query in your PHPMyAdmin (your host panel:
update forums_posts set queued = 0 WHERE queued = 2 AND author_id = XXX; where XXX is the member_id.
After that, hide and unhide any post just to update the cache so then it will dismiss the pending notice in the index/forum view.
DO AT YOUR OWN RISK.
-
Adriano Faria's post in Custom Registration Field in Database was marked as the answercore_pfields_groups, core_pfields_data and core_pfields_content.
-
Adriano Faria's post in New Member Moderation Q was marked as the answerManage validating members is an ACP feature. Only admins can do it.
You can use a 3rd-party resource to make it on front-end and also allow your moderators to do it:
-
Adriano Faria's post in Hello , i want o install a test forum on my license was marked as the answerIf you’re not hosted by IPS:
-
Adriano Faria's post in Soldier profiles in Perscom was marked as the answerYou should use the support topic of this resource: