Skip to content

New and Fresh Private + Public Proxies Lists Everyday!

Get and Download New Proxies from NewProxyLists.com

Tag: account

Can’t log in to my Instagram account

My Instagram is linked to an email that ends with @example.com. Trying to change the password the link is sent to that virtual email. Because I’ve reset my phone and can’t log in to my Instagram bcz is saying the password is wrong so when I try to change my password like I said the link is sent to that email. I tried to change it before resetting didn’t let me . So I linked my phone number . Trying to change the password using that is telling me users not found. And it’s not linked to Facebook. So odd the email ends with @example.com what can I do can someone help or know something I could do

Author AdminPosted on January 16, 2021Tags account, Instagram, log

account security – Can malicious users block your bitcoin wallet?



Want to improve this question? Add details and clarify the problem by editing this post.

Closed 1 hour ago.



In recent articles, it is being reported that a user’s wallet will be blocked forever if an incorrect password is entered more than 10 times.

This raises the question, how do bitcoin wallets prevent that scenario?

Can malicious users intentionally enter wrong passwords to cause a legitimate user to lose access?

Author AdminPosted on January 15, 2021Tags account, Bitcoin, block, malicious, security, users, wallet

MacBook Pro 2018: macOS reinstall to Mac without existing macOS, admin account & startup disk

I’m trying to reinstall macOS to seriously messed up MacBook Pro 2018. Apparently, problems started initially when Big Sur update failed. Computer’s disk has since been erased and all accounts have been lost. The computer shows question mark folder when it’s started.

Here’s what I’ve tried so far:

  1. Started Mac to startup manager (press ⌥ in startup). No disks are showing, only option is internet recovery, which fails.
  2. Started Mac in recovery mode and ran First Aid on the disk, which says that the volume appears to be OK. In addition to internal Apple SSD, there is macOS Base System Disk Image.
  3. Also in recovery mode, I’ve ran command bless --info and bless --getBoot which both return Can't access "efi-boot-device NVRAM variable.
  4. Reset NVRAM and SMC, which had no effect
  5. Tried to install macOS from bootable drive, which fails because external boot is disallowed in Startup Security Utility. I cannot change the setting because there is no administrator account.
  6. Tried to start into single user mode (⌘-S), to remove /var/db/.AppleSetupDone file in order to run Mac setup again and get new admin account. Logging into single user mode fails, apparently because there is no startup disk (based on this: https://discussions.apple.com/thread/8448671).
  7. Tried to set startup volume in recovery mode terminal by running command bless -mount /Volumes/Macintosh HD/ -setBoot which returns the following:
Can't load /Volumes/Machintosh HD/usr/standalone/i386/apfs.efi
Could not load apfs.efi data from /Volumes/Machintosh HD/usr/standalone/i386/apfs.efi

Any ideas what I should do? I’m guessing that first thing I need is to get startup disk working and create administrator account. However, that seems to be easier said than done.

Author AdminPosted on January 15, 2021Tags 2018, account, ADMIN, disk, existing, Mac, MacBook, macos, Pro, reinstall, startup

Buy Facebook Ads Account — 👉 GSA SEO and Marketing Forum 👈

Buy Facebook Ads Account to promote your business through many campaigns that will be created in different Ads accounts from real people. It will increase your traffic and will allow your company to promote your campaigns in a creative way. Therefore, your content will be expanded through the worth-of-mouth from the owner of the purchased account. DO NOT LOSE YOUR CHANCE TO ENHANCE YOUR BUSINESS!
Author AdminPosted on January 14, 2021Tags account, ads, buy, Facebook, Forum, GSA, Marketing, SEO

gui design – Can you help me in displaying more than 3000 account list and per account has more than 3000 users?

I have this problem where the admin has the capability to select multiple accounts & multiple users in each accounts. The user cannot delete or edit as these accounts & users are provided directly from the backend.

The admin can select multiple accounts & users. The problem is that, showing all accounts & users under each selected account can cause performance issues & hard to find account with large amount of users.

Author AdminPosted on January 13, 2021Tags 3000, account, Design, displaying, gui, list, users

frp – Remove Google Account from old Phone after reset

I have here an old phone without the account information, password or pin. Is there a way to bypass the logging in with the original account? I would like to add a new one.

The phone is Huawei EML-L09

ADB is disabled. What can I do, to make the phone useable? (Is there a OTG way? Or can u recommend a program or a service?)

Author AdminPosted on January 13, 2021Tags account, frp, google, phone, remove, reset

magento2 – Disable submit button on click – Register account page (Magento 2.3.6)

When a customer clicks on the register button more than once they get an error “An account already exists”

To resolve this, i want to disable the submit button after one click.
I tried the following by adding onClick to button. Heres the full code register.phtml

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

// phpcs:disable Magento2.Templates.ThisInTemplate
// phpcs:disable Generic.Files.LineLength.TooLong

/** @var MagentoCustomerBlockFormRegister $block */
?>
<?= $block->getChildHtml('form_fields_before') ?>
<?php /* Extensions placeholder */ ?>
<?= $block->getChildHtml('customer.form.register.extra') ?>
<form class="form create account form-create-account" action="<?= $block->escapeUrl($block->getPostActionUrl()) ?>" method="post" id="form-validate" enctype="multipart/form-data" autocomplete="off">
    <?= /* @noEscape */ $block->getBlockHtml('formkey'); ?>
    <fieldset class="fieldset create info">
        <legend class="legend"><span><?= $block->escapeHtml(__('Personal Information')) ?></span></legend><br>
        <input type="hidden" name="success_url" value="<?= $block->escapeUrl($block->getSuccessUrl()) ?>">
        <input type="hidden" name="error_url" value="<?= $block->escapeUrl($block->getErrorUrl()) ?>">
        <?= $block->getLayout()->createBlock(MagentoCustomerBlockWidgetName::class)->setObject($block->getFormData())->setForceUseCustomerAttributes(true)->toHtml() ?>
        <?php if ($block->isNewsletterEnabled()): ?>
            <div class="field choice newsletter">
                <input type="checkbox" name="is_subscribed" title="<?= $block->escapeHtmlAttr(__('Sign Up for Newsletter')) ?>" value="1" id="is_subscribed"<?php if ($block->getFormData()->getIsSubscribed()): ?> checked="checked"<?php endif; ?> class="checkbox">
                <label for="is_subscribed" class="label"><span><?= $block->escapeHtml(__('Sign Up for Newsletter')) ?></span></label>
            </div>
            <?php /* Extensions placeholder */ ?>
            <?= $block->getChildHtml('customer.form.register.newsletter') ?>
        <?php endif ?>

        <?php $_dob = $block->getLayout()->createBlock(MagentoCustomerBlockWidgetDob::class) ?>
        <?php if ($_dob->isEnabled()): ?>
            <?= $_dob->setDate($block->getFormData()->getDob())->toHtml() ?>
        <?php endif ?>

        <?php $_taxvat = $block->getLayout()->createBlock(MagentoCustomerBlockWidgetTaxvat::class) ?>
        <?php if ($_taxvat->isEnabled()): ?>
            <?= $_taxvat->setTaxvat($block->getFormData()->getTaxvat())->toHtml() ?>
        <?php endif ?>

        <?php $_gender = $block->getLayout()->createBlock(MagentoCustomerBlockWidgetGender::class) ?>
        <?php if ($_gender->isEnabled()): ?>
            <?= $_gender->setGender($block->getFormData()->getGender())->toHtml() ?>
        <?php endif ?>
    </fieldset>
    <?php if ($block->getShowAddressFields()): ?>
        <fieldset class="fieldset address">
            <legend class="legend"><span><?= $block->escapeHtml(__('Address Information')) ?></span></legend><br>
            <input type="hidden" name="create_address" value="1" />

            <?php $_company = $block->getLayout()->createBlock(MagentoCustomerBlockWidgetCompany::class) ?>
            <?php if ($_company->isEnabled()): ?>
                <?= $_company->setCompany($block->getFormData()->getCompany())->toHtml() ?>
            <?php endif ?>

            <?php $_telephone = $block->getLayout()->createBlock(MagentoCustomerBlockWidgetTelephone::class) ?>
            <?php if ($_telephone->isEnabled()): ?>
                <?= $_telephone->setTelephone($block->getFormData()->getTelephone())->toHtml() ?>
            <?php endif ?>

            <?php $_fax = $block->getLayout()->createBlock(MagentoCustomerBlockWidgetFax::class) ?>
            <?php if ($_fax->isEnabled()): ?>
                <?= $_fax->setFax($block->getFormData()->getFax())->toHtml() ?>
            <?php endif ?>
            <?php $_streetValidationClass = $this->helper(MagentoCustomerHelperAddress::class)->getAttributeValidationClass('street'); ?>
            <div class="field street required">
                <label for="street_1" class="label"><span><?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('street') ?></span></label>
                <div class="control">
                    <input type="text" name="street()" value="<?= $block->escapeHtmlAttr($block->getFormData()->getStreet(0)) ?>" title="<?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('street') ?>" id="street_1" class="input-text <?= $block->escapeHtmlAttr($_streetValidationClass) ?>">
                    <div class="nested">
                        <?php $_streetValidationClass = trim(str_replace('required-entry', '', $_streetValidationClass)); ?>
                        <?php for ($_i = 2, $_n = $this->helper(MagentoCustomerHelperAddress::class)->getStreetLines(); $_i <= $_n; $_i++): ?>
                            <div class="field additional">
                                <label class="label" for="street_<?= /* @noEscape */ $_i ?>">
                                    <span><?= $block->escapeHtml(__('Address')) ?></span>
                                </label>
                                <div class="control">
                                    <input type="text" name="street()" value="<?= $block->escapeHtmlAttr($block->getFormData()->getStreetLine($_i - 1)) ?>" title="<?= $block->escapeHtmlAttr(__('Street Address %1', $_i)) ?>" id="street_<?= /* @noEscape */ $_i ?>" class="input-text <?= $block->escapeHtmlAttr($_streetValidationClass) ?>">
                                </div>
                            </div>
                        <?php endfor; ?>
                    </div>
                </div>
            </div>

            <div class="field required">
                <label for="city" class="label"><span><?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('city') ?></span></label>
                <div class="control">
                    <input type="text" name="city" value="<?= $block->escapeHtmlAttr($block->getFormData()->getCity()) ?>" title="<?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('city') ?>" class="input-text <?= $block->escapeHtmlAttr($this->helper(MagentoCustomerHelperAddress::class)->getAttributeValidationClass('city')) ?>" id="city">
                </div>
            </div>

            <div class="field region required">
                <label for="region_id" class="label"><span><?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('region') ?></span></label>
                <div class="control">
                    <select id="region_id" name="region_id" title="<?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('region') ?>" class="validate-select region_id" style="display:none;">
                        <option value=""><?= $block->escapeHtml(__('Please select a region, state or province.')) ?></option>
                    </select>
                    <input type="text" id="region" name="region" value="<?= $block->escapeHtmlAttr($block->getRegion()) ?>" title="<?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('region') ?>" class="input-text <?= $block->escapeHtmlAttr($this->helper(MagentoCustomerHelperAddress::class)->getAttributeValidationClass('region')) ?>" style="display:none;">
                </div>
            </div>

            <div class="field zip required">
                <label for="zip" class="label"><span><?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('postcode') ?></span></label>
                <div class="control">
                    <input type="text" name="postcode" value="<?= $block->escapeHtmlAttr($block->getFormData()->getPostcode()) ?>" title="<?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('postcode') ?>" id="zip" class="input-text validate-zip-international <?= $block->escapeHtmlAttr($this->helper(MagentoCustomerHelperAddress::class)->getAttributeValidationClass('postcode')) ?>">
                </div>
            </div>

            <div class="field country required">
                <label for="country" class="label"><span><?= /* @noEscape */ $block->getAttributeData()->getFrontendLabel('country_id') ?></span></label>
                <div class="control">
                    <?= $block->getCountryHtmlSelect() ?>
                </div>
            </div>
            <?php $addressAttributes = $block->getChildBlock('customer_form_address_user_attributes');?>
            <?php if ($addressAttributes): ?>
                <?php $addressAttributes->setEntityType('customer_address'); ?>
                <?php $addressAttributes->setFieldIdFormat('address:%1$s')->setFieldNameFormat('address(%1$s)');?>
                <?php $block->restoreSessionData($addressAttributes->getMetadataForm(), 'address');?>
                <?= $addressAttributes->setShowContainer(false)->toHtml() ?>
            <?php endif;?>
            <input type="hidden" name="default_billing" value="1">
            <input type="hidden" name="default_shipping" value="1">
        </fieldset>

    <?php endif; ?>
    <fieldset class="fieldset create account" data-hasrequired="<?= $block->escapeHtmlAttr(__('* Required Fields')) ?>">
        <legend class="legend"><span><?= $block->escapeHtml(__('Sign-in Information')) ?></span></legend><br>
        <div class="field required">
            <label for="email_address" class="label"><span><?= $block->escapeHtml(__('Email')) ?></span></label>
            <div class="control">
                <input type="email" name="email" autocomplete="email" id="email_address" value="<?= $block->escapeHtmlAttr($block->getFormData()->getEmail()) ?>" title="<?= $block->escapeHtmlAttr(__('Email')) ?>" class="input-text" data-mage-init='{"mage/trim-input":{}}' data-validate="{required:true, 'validate-email':true}">
            </div>
        </div>
        <div class="field password required">
            <label for="password" class="label"><span><?= $block->escapeHtml(__('Password')) ?></span></label>
            <div class="control">
                <input type="password" name="password" id="password"
                       title="<?= $block->escapeHtmlAttr(__('Password')) ?>"
                       class="input-text"
                       data-password-min-length="<?= $block->escapeHtmlAttr($block->getMinimumPasswordLength()) ?>"
                       data-password-min-character-sets="<?= $block->escapeHtmlAttr($block->getRequiredCharacterClassesNumber()) ?>"
                       data-validate="{required:true, 'validate-customer-password':true}"
                       autocomplete="off">
                <div id="password-strength-meter-container" data-role="password-strength-meter" aria-live="polite">
                    <div id="password-strength-meter" class="password-strength-meter">
                        <?= $block->escapeHtml(__('Password Strength')) ?>:
                        <span id="password-strength-meter-label" data-role="password-strength-meter-label">
                            <?= $block->escapeHtml(__('No Password')) ?>
                        </span>
                    </div>
                </div>
            </div>

        </div>
        <div class="field confirmation required">
            <label for="password-confirmation" class="label"><span><?= $block->escapeHtml(__('Confirm Password')) ?></span></label>
            <div class="control">
                <input type="password" name="password_confirmation" title="<?= $block->escapeHtmlAttr(__('Confirm Password')) ?>" id="password-confirmation" class="input-text" data-validate="{required:true, equalTo:'#password'}" autocomplete="off">
            </div>
        </div>
        <?= $block->getChildHtml('form_additional_info') ?>
    </fieldset>
    <div class="actions-toolbar">
        <div class="primary">
            <button type="submit" class="action submit primary" title="<?= $block->escapeHtmlAttr(__('Create an Account')) ?>" onClick="this.form.submit(); this.disabled=true; this.value='Creating'; "><span><?= $block->escapeHtml(__('Create an Account')) ?></span></button>
        </div>
        <div class="secondary">
            <a class="action back" href="<?= $block->escapeUrl($block->getBackUrl()) ?>"><span><?= $block->escapeHtml(__('Back')) ?></span></a>
        </div>
    </div>
</form>
<script>
require((
    'jquery',
    'mage/mage'
), function($){

    var dataForm = $('#form-validate');
    var ignore = <?= /* @noEscape */ $_dob->isEnabled() ? ''input(id$="full")'' : 'null' ?>;

    dataForm.mage('validation', {
    <?php if ($_dob->isEnabled()): ?>
        errorPlacement: function(error, element) {
            if (element.prop('id').search('full') !== -1) {
                var dobElement = $(element).parents('.customer-dob'),
                    errorClass = error.prop('class');
                error.insertAfter(element.parent());
                dobElement.find('.validate-custom').addClass(errorClass)
                    .after('<div class="' + errorClass + '"></div>');
            }
            else {
                error.insertAfter(element);
            }
        },
        ignore: ':hidden:not(' + ignore + ')'
    <?php else: ?>
        ignore: ignore ? ':hidden:not(' + ignore + ')' : ':hidden'
    <?php endif ?>
    }).find('input:text').attr('autocomplete', 'off');
});
</script>
<?php if ($block->getShowAddressFields()): ?>
<script type="text/x-magento-init">
    {
        "#country": {
            "regionUpdater": {
                "optionalRegionAllowed": <?= /* @noEscape */ $block->getConfig('general/region/display_all') ? 'true' : 'false' ?>,
                "regionListId": "#region_id",
                "regionInputId": "#region",
                "postcodeId": "#zip",
                "form": "#form-validate",
                "regionJson": <?= /* @noEscape */ $this->helper(MagentoDirectoryHelperData::class)->getRegionJson() ?>,
                "defaultRegion": "<?= (int) $block->getFormData()->getRegionId() ?>",
                "countriesWithOptionalZip": <?= /* @noEscape */ $this->helper(MagentoDirectoryHelperData::class)->getCountriesWithOptionalZip(true) ?>
            }
        }
    }
</script>
<?php endif; ?>
<script type="text/x-magento-init">
    {
        ".field.password": {
            "passwordStrengthIndicator": {
                "formSelector": "form.form-create-account"
            }
        },
        "*": {
            "Magento_Customer/js/block-submit-on-send": {
                "formId": "form-validate"
            }
        }
    }
</script>

Author AdminPosted on January 12, 2021Tags 236, account, button, click, disable, Magento, magento2, page, register, submit

Most Powerful Free Automated Crypto Trading Bot Copied All Signals In Account

Free Crypto BOT – https://t.me/cryptosignalalert

Daily 3-4 high quality signals for Binance, Binance Futures, Bitmex, Kraken, Bitseven, Kucion, HitBTC & many other exchanges. We trade our expertise to save you from the losses and make you money from the beginning. We hold an accuracy of more than 90% which allows us to have a very little drawdown and maximum

We also provide Most Powerful FREE automated Crypto Trading Bot copied all signals in Account known as the best Crypto Scanner. It almost scans the entire market to fetch the best coin which can yield great profit consistently.

Author AdminPosted on January 11, 2021Tags account, Automated, BOT, copied, Crypto, free, Powerful, Signals, trading

samba4 – Odd user display discrepancy in standalone Samba server (“Account Unknown” vs “Unix User”)

I am using a standalone Samba server on Ubuntu 18.04 (Samba 4.7.6). When an employee leaves the company, their Unix account ist locked (but not deleted). Their Samba account, however, is deleted via smbpasswd -x foo. When viewing the properties of a shared file owned by a deleted user from Windows, the owner is displayed as foo (Unix Userfoo). However, there is one deleted user that is displayed as Account Unknown (S-...). Where does this discrepancy come from and can it be “fixed”? Additionally, I noticed that the last four digits of the SIDs don’t match the Unix UIDs. Is that normal? Side note: the user’s have all been added via smbpasswd -a foo.

Author AdminPosted on January 11, 2021Tags account, discrepancy, display, odd, Samba, samba4, Server, Standalone, Unix, unknown, user

How do I recover my Google account (or Gmail) password or username?

I have forgotten my password, but my browser remembers it

If your browser remembers your password (that is, the password field is automatically populated when you log in to your Google account, and you’re able to log in), you should be able to retrieve your password through your browser’s password manager.

See the instructions for your browser:

I have forgotten the password for my private Google (Gmail) account

  1. Visit Google’s Account Recovery page;
  2. Select the I don’t know my password option;
  3. Follow the instructions shown.

I have forgotten the username / email address for my private Google (Gmail) account

  1. Visit Google’s Account Recovery page;
  2. Select the I don’t know my username option;
  3. Follow the instructions shown.

In order to recover your Google username using this form, you must already have specified a recovery email address or recovery phone number.

If you haven’t specified any recovery information, you may still be able to find your username if you have fairly recently accessed your email account through a browser. Gmail displays your email address in the browser’s title bar, so searching your browser’s history for Inbox or Gmail might reveal your email address.

I have forgotten the username / email address / password for my work Google account (Google Workspace)

If you have an account on the Google Workspace service, you may still use the method described above. If this proves unfruitful, contact the administrator for your domain, who will be able to reset your password and/or find your username.

I have forgotten the admin username / email address for a Google Workspace account that I manage

First, try the methods described above. If this is unsuccessful, you may still reset the admin password by domain verification.

I have forgotten my username / email address / password, but I have a desktop / smartphone email client that still can fetch mail from my account

If you have already set up an email client to fetch mail from your account, you might be able to extract the username / password from that client.

Instructions on how to do that will vary depending on which client you use. Here are links to instructions for some of the most common clients:

I have no access to my recovery email, phone, or any other option

You may still be able to restore access to your account by manually verifying your identity.

  1. Go to the Google Account Recovery page
  2. Enter your email address and click Continue.
  3. If you are asked to enter the last password you remember, click I don’t know.
  4. Click Verify your identity which is located under all of the other options. (It is a small link.)
    The Verify your identity link

You will then be asked a series of questions which you must answer to the best of your ability. If you can provide enough accurate information, you will get your account back.

How do I prevent losing access to my account in the future?

See How do I protect my Google/Gmail account?

Author AdminPosted on January 11, 2021Tags account, Gmail, google, password, recover, username

Posts navigation

Page 1 Page 2 … Page 188 Next page
New and Fresh Private + Public Proxies Lists Everyday! Proudly powered by WordPress

DreamProxies - Cheapest USA Elite Private Proxies 100 Private Proxies 200 Private Proxies 400 Private Proxies 1000 Private Proxies 2000 Private Proxies ExtraProxies.com - Buy Cheap Private Proxies Buy 50 Private Proxies Buy 100 Private Proxies Buy 200 Private Proxies Buy 500 Private Proxies Buy 1000 Private Proxies Buy 2000 Private Proxies ProxiesLive Proxies-free.com New Proxy Lists Every Day Proxies123