Find out your IP address

My IP: If you need to quickly obtain external(public) IP address, which your device uses to send requests from, then simply follow this link: https://sysopnotes.net/myip Response is in JSON format: {«ip»:»11.12.13.14″} Request could be performed from browser, as well as using CURL or another HTTP-client. CURL: curl https://sysopnotes.net/myip JavaScript: fetch(‘https://sysopnotes.net/myip’) .then(response => response.json()) .then(data => […]

Читать полностью


Adding domain to Cpanel account

Adding domain to Cpanel account During creation of Cpanel account in WHM a new domain is being created as a main account domain. Then needed subdomains could be easily created in Cpanel interface. There is corresponding subsection which is called Subdomains. Sometimes there is need to create additional domains in the same Cpanel account(not subdomains […]

Читать полностью


Cloudflare and visitors IP addresses

Cloudflare reverse proxy Cloudflare very popular service, which provides many necessary and useful services. Maybe most popular service  is their reverse proxy, which allows you to put your site behind cloud caching proxy servers. This gives possibility to reduce load on the site and make content output more faster. But you may also face the […]

Читать полностью


WordPress password reset

Here I will describe several ways to reset administrator’s account password in WordPress CMS, those ways could be called radical, because they are being used in cases when you couldn’t reset password in user’s profile or via embedded password recovery option of WordPress. I’ll not touch last two mentioned methods, as long as I suppose […]

Читать полностью