In order to be able to do so, you will have to the following:
After you’ve completed the steps above, we can now go ahead and send a message to the channel by issuing and HTTP GET request to the Telegram BOT API at the following URL (you can do this in your browser):
https://api.telegram.org/bot[BOT_API_KEY]/sendMessage?chat_id=[CHANNEL_NAME]&text=[MESSAGE_TEXT]
where:
BOT_API_KEY is the API Key generated by BotFather when you created your bot
CHANNEL_NAME is the handle of your public channel (e.g. @channel_name)
MESSAGE_TEXT is the message you want to send (URL-encoded)
Example HTTP API call response:
{
"ok": true,
"result": {
"message_id": 2,
"chat": {
"id": -1001363941800,
"title": "TestChannel",
"username": "usefulmix_channel",
"type": "channel"
},
"date": 1538926255,
"text": "Test message"
}
}
So far, so good, but let’s consider that you’ll want this new channel to be private so that only you and the bot (and whoever you decide to invite in the channel) will see the messages.
So we need to make the channel private, however in doing so our above HTTP API call will stop working and this is what trying to prublish a message will look like:
{
"ok": false,
"error_code": 400,
"description": "Bad Request: chat not found"
}
To get around this, all you need to do is look at the public HTTP API call we made initially and pick up the "id": -1001363941800 as this is the unique id of our channel which we’ll be switching to after we make our channel private from public.
So now the API call becomes:
https://api.telegram.org/bot[BOT_API_KEY]/sendMessage?chat_id=-1001363941800&text=[MESSAGE_TEXT]
And voila, you now have a private Telegram channel, where you can send messages via the HTTP bot sendMessage API. This can be very useful when you have some online services that provide you with a callback mechanism and can call you HTTP API endpoint so that you get notified of whatever in real time.
]]>Provided you have SSH access to your server, run the following set of commands and this will likely fix your issue.
Reset all file permissions 664:
find /path/to/site/ -type f -exec chmod 664 {} \;
Reset all directory permissions to 775:
find /path/to/site/ -type d -exec chmod 775 {} \;
Reset the group ownership to the wordpress or www-data group (or whatever your nginx/apache group name is):
chgrp -R wordpress /path/to/wodpress_site_directory/
After you run these commands you should be able to successfully update WordPress code, plugins and themes with no issues.
]]>In the repository action bar, click Settings.
Under Danger Zone, click Delete this repository.
Read the warnings.
To verify that you’re deleting the correct repository, type the name of the repository you want to delete.
Click I understand the consequences, delete this repository.
]]> git branch -d some_example_local_branch
Git – delete/remove a remote branch:
git push origin : some_example_remote_branch
In case of error after trying to remove remote branch, run:
git fetch -p
This is what the error message would look like:
error: unable to push to unqualified destination: some_example_remote_branch
The destination refspec neither matches an existing ref on the remote nor
begins with refs/, and we are unable to guess a prefix based on the source ref.
error: failed to push some refs to 'git@repository_name'
and this is caused due to the fact that perhaps anyone else has already deleted the branch and you need to synchronize your branch list.
]]>