Author: Bunty ( Site Admin )

  • Comment Mention with BBPress

    Comment Mention with BBPress

    Recently I’ve updated my plugin “Comment Mention“. In the latest version ( 1.2.0 ), I’ve added bbpress compatibility for the mention.

    Mentioning was already provided by bbpress, but auto-suggestion was not there. So my plugin fulfils that and also it sends an email notification to the mentioned user.

    After installing this plugin, when you create a new topic or add a reply to a topic, and you mention a user using “@”, then that user will get an email notification about that.

    That email is configurable from the backend. Watch below video for how it works.

    https://www.youtube.com/watch?v=wlqAKE0PtVo

     

  • How to have ActiveCampaign Sandbox account

    How to have ActiveCampaign Sandbox account

    ActiveCampaign provides 14 days trial period account. But when it comes to development, the developer needs to have a sandbox account which should be free and never expire.

    So for that AC provides a sandbox account for developers.

    How you can get Sandbox account?

    You can read more and request a sandbox account here: https://developers.activecampaign.com/page/developer-sandbox-accounts.

     

  • Asking authentication when we try to access homepage on WP Engine

    Recently, I migrated a site from the flywheel to WP Engine using Migrate Guru plugin.

    After migration, I was asked to add browser authentication when I try to access the homepage. It was not asking the authentication when I try to access wp-admin.

    Below is the screenshot what I was getting.

    So I connected WP Engine’s support guy. And in my case there was a third party plugin was creating the issue. After deactivating that plugin, issue was fixed.

  • Fix – svn: error: The subversion command line tools are no longer provided by Xcode.

    Recently I got the following error on my Mac Terminal when I tried svn command.

    svn: error: The subversion command line tools are no longer provided by Xcode.

     

    To fix this, run following commands:

    sudo rm -rf /Library/Developer/CommandLineTools
    xcode-select --install

     

    Wait for the software to be installed. And you are done.

    Ref.:https://stackoverflow.com/questions/60869347/mac-command-line-tools-11-4-no-longer-has-svn

     

  • Download folder/files from server using ssh terminal

    You will need SCP installed on your system.

    Run the following command from your terminal

    scp -r username@host:/path/to/folder /Destination/path/of/local/machine/

    If you access the server via pem key, then command will be

    scp -r -i /path/to/pemkey.pem username@host:/path/to/folder /Destination/path/of/local/machine/

    That’s it.