Posts

Showing posts from May, 2021

How to Remove my IP from Gmail blacklist or Spam list?

 https://support.google.com/mail/contact/bulk_send_new?rd=1

vestacp command

 /usr/local/vesta/bin ./v-rebuild-web-domains insuranceworld [root@server bin]# ./v-rebuild-web-domains insuranceworld [root@server bin]# nginx -t nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /home/oxygen/conf/web/oxygenites.com.nginx.ssl.conf:10 nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /home/insuranceworld/conf/web/insuranceworld.tech.nginx.ssl.conf:10 nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful [root@server bin]# systemctl restart nginx

how to use post or page name as subdomain

  Just a suggestion, you can try using redirects with .htaccess (Apache) or .conf (nginx) to redirect URLs (automatic URL forwarding) to the subdomain. In nginx: location = / { # don't redirect http://example.com/ } location / { # redirect everything else rewrite ^\ /([^\/]*).*$ http:/ /$1.example.com/ redirect; } Replace  redirect  with  permanent  depending if you want a temporary (HTTP 302) or a permanent (HTTP 301) redirect. The empty  location = /  block is necessary so that you don't redirect  http://example.com/  to  http://.example.com/ . //replacing domain name in rewrite rule location = / {     # don't redirect $server_name/ }     location / {         rewrite ^\/([^\/]*).*$ https://$1.$server_name/ redirect; From subdomain to domain/page in apache  Remeber if you are using apache or nginx as proxy remove P tag else will throw error https://wordpress-hosting.promonsterhost.com/ to https://promonsterhost.com/wordpress-hosting/ RewriteEngine on Rewrit

mail not showing in inbox zimbra

 check filtering rules by changing to a horizontal view or a different one as normal one do not show that filtering rules

gmail login in outlook

Image
 if you are trying to login to outlook or any third party client make sure that you enable 2FA and then in my account generate a pass from APPS and access this option will come once you enable 2FA if you are in gsuite make sure imap and POP are allowed in admin center of gsuite https://accounts.google.com/ServiceLogin/identifier?service=accountsettings&passive=1209600&osid=1&continue=https%3A%2F%2Fmyaccount.google.com%2Fapppasswords&followup=https%3A%2F%2Fmyaccount.google.com%2Fapppasswords&rart=ANgoxcfR985arg8jsUGUGpxtekH-41Pd6krJ3-j-TQ_FenVpztHDJcD0lORa1rk8tjn2f5NFtjjo8XMu8IyCq6azPG0CtmSVSw&authuser=0&csig=AF-SEnbUwOaQl4HNSUSd%3A1527854153&flowName=GlifWebSignIn&flowEntry=AddSession Manage access to less secure apps You can allow  users to turn on or off access  to less secure apps or disable their ability to allow less secure apps. Sign in  to your  Google Admin console . Sign in using an  administrator account , not your current account bumkailas

Understanding the Default WordPress .htaccess

  The Default Rules The default WordPress .htaccess rules are responsible for how WordPress is able to support ‘pretty permalinks’. Without these rules in place, WordPress permalinks would not resolve correctly. This feature allows your URLs to look much cleaner and more readable without over complicating or cluttering your website’s files structure. The default rules look as follows: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress LET THE EXPLANATION OF  WORDPRESS DEFAULT HTACCESS RULE S BEGIN 1. <IFMODULE MOD_REWRITE.C> Apache Module mod_rewrite Short Description –  Provides a rule-based rewriting engine to rewrite requested URLs on the fly . mod_rewrite  provides a flexible and powerful way to manipulate URLs using an unlimited number of rules. Each rule can have an unlimited number