How can I disable a reserved profile?How to Fix Missing Organization Profile Dropdown in Contribution Form SettingsHow do I make profile submissions more reliable, or at least not silently fail?Creating a public Members directory with CiviCRM in Wordpress using Profiles and shortcodeMembership directoryHow do I expose a civicrm profile to collect data from anonymous user (an application form) on a drupal node?Validation fails on contribution with profile includedDisable Inline Editing of Fields in Profile FormHow to use civiprofile for contact formCiviCRM profile search not working when integrated with WordpressBug with WordPress CiviCRM 5.10.3 Remote Profiles HTML Form Snippet Form Action URL
Killing a star safely
Strange LED behavior
What are "the high ends of castles" called?
If hash functions append the length, why does length extension attack work?
Is it better to merge "often" or only after completion do a big merge of feature branches?
Why can't a country print its own money to spend it only abroad?
What does a Nintendo Game Boy do when turned on without a game cartridge inserted?
Can I use Sitecore's Configuration patching mechanics for my Identity Server configuration?
Can "Taking algebraic closure" be made into a functor?
Why are the phonemes of Tutankhamun's throne name transliterated out of order?
Why are Oscar, India, and X-Ray (O, I, and X) not used as taxiway identifiers?
How old is the Italian word "malandrino"?
Stellen - Putting, or putting away?
How can I deal with someone that wants to kill something that isn't supposed to be killed?
Create Circle with Inner Radius
Why was Quirrell said to be in the Black Forest if Voldemort was actually in Albania?
Considerations when providing money to only one child out of two
Acoustic guitar chords' positions vs those of a Bass guitar
Why is DC so, so, so Democratic?
Calculating Fibonacci sequence in several different ways
Found old paper shares of Motorola Inc that has since been broken up
What does the following chess proverb mean: "Chess is a sea where a gnat may drink from and an elephant may bathe in."
Count the identical pairs in two lists
I am a dual citizen of United States and Mexico, can I use my Mexican license in california when visiting?
How can I disable a reserved profile?
How to Fix Missing Organization Profile Dropdown in Contribution Form SettingsHow do I make profile submissions more reliable, or at least not silently fail?Creating a public Members directory with CiviCRM in Wordpress using Profiles and shortcodeMembership directoryHow do I expose a civicrm profile to collect data from anonymous user (an application form) on a drupal node?Validation fails on contribution with profile includedDisable Inline Editing of Fields in Profile FormHow to use civiprofile for contact formCiviCRM profile search not working when integrated with WordpressBug with WordPress CiviCRM 5.10.3 Remote Profiles HTML Form Snippet Form Action URL
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a profile that was created by some user and and went into "Reserved Profile" List. The bots are attacking the profile and creating contacts, since the form is public facing and no captcha was added. The form also does not give a option to disable or delete or settings. Can anyone suggest how do I remove this form completely? If can be done using mysql which table and values should be altered?
Thanks
profile reserved
add a comment |
I have a profile that was created by some user and and went into "Reserved Profile" List. The bots are attacking the profile and creating contacts, since the form is public facing and no captcha was added. The form also does not give a option to disable or delete or settings. Can anyone suggest how do I remove this form completely? If can be done using mysql which table and values should be altered?
Thanks
profile reserved
add a comment |
I have a profile that was created by some user and and went into "Reserved Profile" List. The bots are attacking the profile and creating contacts, since the form is public facing and no captcha was added. The form also does not give a option to disable or delete or settings. Can anyone suggest how do I remove this form completely? If can be done using mysql which table and values should be altered?
Thanks
profile reserved
I have a profile that was created by some user and and went into "Reserved Profile" List. The bots are attacking the profile and creating contacts, since the form is public facing and no captcha was added. The form also does not give a option to disable or delete or settings. Can anyone suggest how do I remove this form completely? If can be done using mysql which table and values should be altered?
Thanks
profile reserved
profile reserved
edited 8 hours ago
Tapash
asked 9 hours ago
TapashTapash
1,3035 silver badges12 bronze badges
1,3035 silver badges12 bronze badges
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You can use api explorer(civicrm/api) to disable the reserved profile
or if you have access to database then run sql to update the profile
UPDATE civicrm_uf_group SET is_active = 0 WHERE id = 10;
thanks Pradeep.
– Tapash
4 hours ago
add a comment |
You can actually still edit it and uncheck the active box you just have to hack the url to use the id, e.g.
https://site-url/civicrm/admin/uf/group/update?action=update&id=22&context=group
Then the active checkbox is near the bottom.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "605"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcivicrm.stackexchange.com%2fquestions%2f31447%2fhow-can-i-disable-a-reserved-profile%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use api explorer(civicrm/api) to disable the reserved profile
or if you have access to database then run sql to update the profile
UPDATE civicrm_uf_group SET is_active = 0 WHERE id = 10;
thanks Pradeep.
– Tapash
4 hours ago
add a comment |
You can use api explorer(civicrm/api) to disable the reserved profile
or if you have access to database then run sql to update the profile
UPDATE civicrm_uf_group SET is_active = 0 WHERE id = 10;
thanks Pradeep.
– Tapash
4 hours ago
add a comment |
You can use api explorer(civicrm/api) to disable the reserved profile
or if you have access to database then run sql to update the profile
UPDATE civicrm_uf_group SET is_active = 0 WHERE id = 10;
You can use api explorer(civicrm/api) to disable the reserved profile
or if you have access to database then run sql to update the profile
UPDATE civicrm_uf_group SET is_active = 0 WHERE id = 10;
edited 8 hours ago
answered 8 hours ago
Pradeep NayakPradeep Nayak
14.1k1 gold badge6 silver badges24 bronze badges
14.1k1 gold badge6 silver badges24 bronze badges
thanks Pradeep.
– Tapash
4 hours ago
add a comment |
thanks Pradeep.
– Tapash
4 hours ago
thanks Pradeep.
– Tapash
4 hours ago
thanks Pradeep.
– Tapash
4 hours ago
add a comment |
You can actually still edit it and uncheck the active box you just have to hack the url to use the id, e.g.
https://site-url/civicrm/admin/uf/group/update?action=update&id=22&context=group
Then the active checkbox is near the bottom.
add a comment |
You can actually still edit it and uncheck the active box you just have to hack the url to use the id, e.g.
https://site-url/civicrm/admin/uf/group/update?action=update&id=22&context=group
Then the active checkbox is near the bottom.
add a comment |
You can actually still edit it and uncheck the active box you just have to hack the url to use the id, e.g.
https://site-url/civicrm/admin/uf/group/update?action=update&id=22&context=group
Then the active checkbox is near the bottom.
You can actually still edit it and uncheck the active box you just have to hack the url to use the id, e.g.
https://site-url/civicrm/admin/uf/group/update?action=update&id=22&context=group
Then the active checkbox is near the bottom.
answered 8 hours ago
DemeritDemerit
5,4812 gold badges6 silver badges23 bronze badges
5,4812 gold badges6 silver badges23 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to CiviCRM Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcivicrm.stackexchange.com%2fquestions%2f31447%2fhow-can-i-disable-a-reserved-profile%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown