Email Marketing for WordPress with Jetpack CRM, Contact and Subscriber Form
Contact Form (WordPress)
You can use the form block. Click the + sign, search for form and add the form block. You can read more about it here: wordpress.com/support/wordpress-editor/blocks/form-block/.
Subscribe Form (WordPress)
Just to confirm, the contact form is specifically our own form block? This is typically used to send you messages through your site, but you could possibly add the email addresses of people who contact you, to your subscribers list: en.support.wordpress.com/import-subscribers-to-a-newsletter/
We have spam protection through Akismet which is a built-in plugin on your website. Akismet is a dedicated plugin only to protect from Spam. So it not just protects from spam form submissions but also spam comments. Other plugins like contact7, wpform etc they do not have a built-in mechanism to protect from spam. They give you DNS records to add for spam protection and its not 100% fool proof.
Mailpoet Email Campaign
It somewhat depends what you need! Should these email campaigns be separate from blog posts? While our “new post” notification emails can possibly work as a newsletter, there’s a sibling product called Mailpoet which may be useful for you to check out: mailpoet.com. Mailpoet are a separate product from WordPress.com, but in the same family! It’s also a service which stores the email addresses of your subscribers locally on your site; so they’re not being moved to a separate server.
Features
HOSTING Self Hosted Stand Alone CRM SIMPLE TO USE Welcome Wizard Welcome Page Modularised Features CUSTOMERS Default Fields (Name, Address, etc) Add Custom Fields Customer Tags Customer Search Standalone CRM Customers Add/Edit Statuses (Lead, Customer, etc) Delete Default Fields Attach Files Segment Contacts Sync with PayPal, Stripe, WorldPay & More QUOTES (PROPOSALS) Quotes for Customers Quote Templates Online Quote Acceptance Quote to Invoice INVOICES Itemised Invoices Download Invoice as PDF Email Invoice as HTML Partial Payment Invoice Templates Power Tools (Export) Pay online with PayPal Pay online with Stripe Recurring Invoices Additional Payment Gateways CLIENT PORTAL Allow clients to access their own area Accept Quotes via Client Portal Pay Invoices via Client Portal Share files with clients TRANSACTIONS Assign Transaction to Invoices Log Incoming Transactions Transaction Tags Log Outgoing Transactions DATA TOOLS Import CSV Export CSV TEAM CRM Overall Admin Custom Team Roles Custom Roles for Customers B2B SALES Enable B2B Mode Create Companies Assign Contacts to Companies Assign Transactions to Companies LEAD GENERATION AND MANAGEMENT Lead Generation Forms Conversion rate tracking Gravity Forms Integration Contact Form 7 Integration Lead Automations REPORTING Individual Customer Activity Log Summary Dashboard Sales Reports Growth Reports Average Revenue Per Customer New Customers Per Period EMAIL OPTIONS Email a contact directly Send Targeted Emails Send Group Emails (Mail Campaigns) Emails sent individually (not bulk ‘to’) Setup Custom SMTP Delivery Routes Customisable Email Templates Enable/Disable System Emails Automatic Open Tracking API & DEVELOPER SUPPORT Connect other services to the CRM API Connector Plugin GitHub/Code Examples INTEGRATIONS Zapier Integration (connect hundreds of apps) PayPal Integration Stripe Integration WooCommerce Integration MOBILE READY Responsive iPhone App Android App MULTI-LANGUAGE, TRANSLATIONS, & LOCALISED Use the CRM in your own language
04:23:33 35468 [Note] InnoDB: Initializing buffer pool, size = 128.0M InnoDB: mmap(137363456 bytes) failed; errno 12 04:23:33 35468 [ERROR] InnoDB: Cannot allocate memory for the buffer pool 04:23:33 35468 [ERROR] Plugin ‘InnoDB’ init function returned error. 04:23:33 35468 [ERROR] Plugin ‘InnoDB’ registration as a STORAGE ENGINE failed. 04:23:33 35468 [ERROR] Unknown/unsupported storage engine: InnoDB 04:23:33 35468 [ERROR] Aborting
View Memory Usage
root@server [~]# free -m total used free shared buff/cache available Mem: 1995 776 375 106 844 955 Swap: 0 0 0
How to input SSH Terminal
There are different types of tools which is used to access in SSH mode. Putty is most popular among them. To use it follow below steps
First download Putty.
Then install it.
Then run it.
Enter your Server IP in Host Name
Set Port : 22
Click Open
Input user Name
Input Password
Now Ready to input SSH Command according to your requirement
Useful SSH Commands on Putty
free : It shows free and occupied memory in your server in kb
free -m : It shows free and occupied memory in your server
free -h : It shows free and occupied memory in your server in Mb
sar -r : To see previous memory log
swapon -s : To see swap devices and sizes (where swapon is installed)
top -c : Command to check the sever load and CPU usage
mysqldump database_name > new_filename.sql : For backup
backupdb aertgar1_hefgynp 162.221.233.112 : Blue host backup database
exit : To close putty
clear : To clear screen
ls -l : details of the files, e.g. size, modified date and time, the owner, and the permissions
ls -a : shows hidden files & directories.
cd home/TestDirectory/AnotherDirectory : To switch directory
cd ../.. : To access home directory
mkdir myfolder : To create a folder
touch myfile.txt. : To create a file.
rm myfile.txt : Remove a file
rm -r home/hostinger/myfolder : Remove all files
history : for SSH history
free -m Command Explanation
Category
total
used
free
shared
buff/cache
available
Mem:
1995
776
375
106
844
955
-/+ buffers/cache
Swap:
5119
348
4771
total (Mem)= 1995 : It means you have 2Gb physical RAM. (excluding small bit reserve by kernel in startup)
used (Mem)= 776 : It means OS using 776Mb RAM
free (Mem)= 375 : It means not in use physical memory 375Mb RAM
shared (Mem)= 106 : It means shared by server kernel system/ specific purposes 106Mb RAM. It is include in used
buff/cache (Mem)= 844 : It means memory used by kernel buffers & memory used by the page cache and slabs 844Mb RAM. It is include in used
available (Mem)= 955: It means estimate of how much memory is available for starting new applications, without swapping
total = used + free = 776+375 = 1151Mb
The second line gives first line values adjusted. It gives the original value for usedminus the sum buffers+cached and the original value for freeplus the sum buffers+cached, hence its title. These new values are often more meaningful than those of first line.
The last line (Swap:) gives information about swap space usage (i.e. memory contents that have been temporarily moved to disk).
total (Swap): this is the total amount of disk space reserved for swap. used (Swap): the amount of swap disk space that is currently being used. free (Swap): the amount of swap disk space that is currently not being used
How to Backup Database & Host
Step1 : Connect to your server via SSH. Step2 : In the command line enter the following code: mysqldump -u dbusername -p databasename > nameofdbbackup.sql
mysqldump -p -u autogar1 autoga_hqrnp > nesfile.sql Be sure to replace: dbusername = with the database username for the database you want to export. databasename = with the name of the database you want to export. nameofdbbackup = enter a name for the exported database. Step3: Hit the Enter key and it will ask you for your password. Type your password and hit the Enter key again, it will begin exporting, this may take some time to complete, depending how large your database is. Your SSH client will take you to a new line when this process completes.The database will now be available for download in your home directory
WordPress Managed Backup
Q: So how can I get backup in Managed WP at your server?
A. Billing and account > back up account > back me up
Q. So how can I download it in my pc
A. Just click on both files, will download automatically
WordPress > manage WordPress menu
where is my WordPress files
panel > domains > manage domains > webFTP
Restoring your database from your backup on the server
If you need to restore you database from the backup you have made using the instructions above, make sure yo are in the root of your website and enter the below command again making sure to change the strings to match your information. Again, you will be asked for the database user password, so make sure you have it ready.
mysql -u username -p tablename < backupfilename.sql.
Backup all files and directories
Obviously you will need to take a backup of for files as well as the databases from your site To make a backup of all of the files and directories, connect via SSH and cd to the root of your website. Once there you can run the below command, make sure to swap out the red string with your prefered backup name.
tar -vcf backup-name.tar .
TIP: When moving around into different directories via SSH, you can print out all of the files and directories in the current directory you are in so you can be sure you are in the right place. To do this simply type ls
Mail Server Configuration
Problem: I migrated hosting server 1 month ago. Everything works fine except email send and receive. My webmail is ok. Problem is in WordPress application. I have 200 WordPress users where users can not change their password themselves. I have install project management plugin. When I assign task and check on notification, expected users dont get notifications.
Solutions:
However, I could see that the email services of xyz.com is still pointing to old shared server
Please access the link for more information: https://dnschecker.org/#MX/xyz.com
I would humbly request you to set the MX record of the domain as “mail.xyz.com”
Login to the Cpanel of xyz.com. Search for the option, “Zone editor”
There you can update the MX record of the domain
Set priority as : 0
Destination: mail.xyz.com
Propagation time can vary depending on the geographical location. Normally, the domain DNS takes 0-8 hours and is known to take up to 48 hours maximum to completely propagate.
VPS Hosting Management
Questions: What is the meaning of VPS Hosting:
Answer: In a VPS hosting arrangement, a single server is partitioned as multiple servers, each of which can be independently rebooted
Question: What is the meaning by 1 IP address in VPS/Dedicated HOSTING?
Answer: 1 IP address is the main IP address of the account.
Question: What is the meaning by 2 IP address in VPS HOSTING?
Answer: In VPS Hosting having 2 IP address you can two different cPanel
Question: For example, I am running 10 website in your shared hosting. Now I am going to upgrade my service into VPS. Science VPS hosting which have 1 Chanel, then how can I run other 9 websites into one VPS account.
Answer: You can create separate subcPanel account for the domain in VPS/dedicated account, so that you can manage each domain cPanel account separately (b)
Question: What is the meaning by 2 Core in VPS HOSTING?
Answer: Cores of VPS are the number of Virtual Central Processing Cores you will receive , with the services you are purchasing. Each core operates in conjunction with other circuits such as cache, memory management, and input/output Operators. (s)
Question: Should we get Physical server under VPS Hosting?
Answer: Yes, you will get server for one user. (b)
Question: Should we get Physical server under Dedicate Hosting?
Answer: Yes, you will get. (b)
Question: If I purchase dedicated server from you, and if I change password to all admin user account, can you access there ?
Answer: Yes, we have access to the account to check if there is any issue with the account (b)
Question: What is the meaning of 1 TB Bandwidth? I mean how many Visitor = 1 TB Bandwidth?
Answer: It depends on website build, However 1 Tb is usually more than enough to handle more than 500,000 visitors per month. (b)
Answer:There is no option to convert them, because we are unable to provide the exact amount of bandwidth will be used by each vistiors. (s)
Question: Normally How many visitor can access at time with 2 Gb RAM?
Question: What is SiteLock Security? Please explain elaborately which services are included in SiteLock Security?
Answer: SiteLock Security is a Open source software, such as WordPress, Joomla, and Drupal, can be vulnerable to attacks by hackers. While keeping software up-to-date is a good defense, services that also monitor and protect your website is a more effective approach. SiteLock offers a range of products to ensure your website is always safe from malware and other malicious attacks. It provides daily scanning, automatic malware removal, web app firewall, etc.
Question: What is Codeguard Basic? How long backup will take by you.
Answer: Codeguard is a one-click website backup and restore solution that is integrated into your hosting account for ultimate efficiency and peace of mind. For basic plan Up to 5 websites, 1GB of storage. In codeguard basic the backup can be stored in daily, weekly and monthly basis. In codeguard you can search for the last six month if there is any. (b)
Question: Would we get cPanel/WHM feature in VPS hosting?
Question: Are you offering basic codegurard with VPS?
Answer: Yes that is the basic plan price for the codeguard. The next plans of the codeguard are Professional Up to 10 websites, 5GB of storage, Premium Up to 25 websites, 10GB of storage, Enterprise Up to 100 websites, 25GB of storage (b)
Question: Would we get free CDN feature in VPS hosting?
Answer: Yes you get free CDN feature in VPS hosting.
Question: If I purchase VPS hosting, with the configuration of 1 IP, 2 core, 2 GB RAM and 1 TB Bandwidth, So how many visitor can access at a time?
There is no limitation on the visitors on the website. However, you can increase the max user connection value on the server to higher numbers so there won’t be issue with users. You can have 5000 users
Question: If I purchase VPS hosting, with the configuration of 1 IP, 2 core, 2 GB RAM and 1 TB Bandwidth, So how many visitor can access per montth?
I do understand your concern. There is no average since everyone’s sites are so unique and it is difficult to estimate how many visitors your site can handle, Simply too many variables, there is just no way to know how your site will run until it is on the server, It depends on what you upload to your site each thing consumes resources, Plugins, Themes, Databases, Scripts etc.. It is more up to the developer to determine the resources they need based on the content.
Question: My question, If I upgrade into VPS, who will manager my server and issues ?
Answer: We provide fully managed VPS services and we do not provide support with unmanaged services. However, since you will have the root access to the VPS, it needs to be managed from your end . We do provide assist with the server upgrades only. We do provide support with the VPS server issues if nay (s)
Question: Would you help to install additions software like anti malware , security service etc in VPS?
Answer: No, We do not provide support with the additional software installation, however, you may install the same from your end. Since the root access will be having the root access, you will have the access to install the modules, we do not provide support with the software installation or related issues (s)
Question: If I install a sofware , as a result a problem is occured . In this situation would you solve this issue
Answer: We can try providing the settings required for the installed software from server end (b)
Question: If I upgrade into VPS can I get this basic software and feature by default?
Answer: Unfortunately, on the VPS server, the softaculous feature is not installed and you need to purchase the feature separately (s)
Question: Can you tell me some software names thats are installed in our current shared server?
Answer: Softaculous is a software installation application, that is used by the customer across our platform. Using the sofatculous feature the accounts such as WordPress Drupal, Joomla,. Moodle etc are installed. Also, I am sorry for the incorrect information, the Softaculous will be installed on the VPS service as well, free of cost (s)
Question: Any other software is installed in our current shared hosing server except sofatculous ?
Answer: Softaculous is the main software installer, as a backup software installed quick install is also provided on the shared servers (s)
Dedicated Hosting Management
Question: What is the difference between VPS and Dedicated Hosting.
Answer: Users of VPS hosting have allocated resources just like Dedicated hosting users, however the amount of available resources on VPS servers may still not be what a website needs. For example, VPS servers often start at 2GB of RAM, whereas Dedicated servers often start with at least 4GB of RAM available. In short, Dedicated hosting allows for the same full customization and control of a VPS server, but with even more horsepower. (b)
Question: If I purchase VPS hosting now, Can we upgrade into Dedicated server anytime?
Change Log
Limit failed login attempts Make the root user inaccessible via SSH by editing the sshd_config file Don’t use a default port, edit the port line in your sshd_configfile Use Captcha Limit logins to a specified IP address or range Two factor authentication Unique login URLs Monitor server logs
===============
I have successfully updated “max_user_connections =20000” at /etc/my.cnf file.
Cloudflare Content Delivery Network configuration is very much critical. For any wrong configuration website will not work properly. Please contact me for CDN solutions
1. Cloudflare Content Delivery Network Plan
There are 4 CDN packages offered by Cloudflare which is listed below
Features (Free Plan with $0/m)
Features (Pro Plan with $20/m)
Features (Business Plan with $200/m)
1.4. Features (Enterprise Plan Custom Price)
1.1. Features (Free Plan with $0)
Fast, easy to use DNS
Free automated SSL certificates
Global content delivery network (CDN)
Unlimited mitigation of DDoS attacks with up to 67 Tbps capacity
Up to 100k Workers requests and 30 scripts
3 Page Rules
1.2. Features (Pro Plan with $20)
Everything included in free, plus…
Up to 100k Workers requests & 30 scripts
20 Page Rules
Enhanced security -Web Application Firewall (WAF)
Bot report and basic mitigation
DDoS Alerts
Want to learn mo
Lossless image optimization
Accelerated mobile page load speed
Privacy first analytics
1.3. Features (Business Plan with $200)
Everything included in Pro, plus…
Web application firewall (WAF)
SSL/TLS 1.2 and 1.3 with shared or single custom upload
Bot analytics and advanced mitigation
50 Page Rules
Minimum edge cache expire TTL at 30 minutes
Analytics time-range at 15 minute scope
Prioritized customer support: 24 x 7x 365 by chat and email
100% uptime SLA
Waiting Room traffic regulation
1.4. Features (Enterprise Plan Custom Price)
SSL/TLS 1.2 & 1.3 with shared or multiple custom upload
125 page rules
Minimum edge cache expire TTL at 30 seconds or less
Audit logs and Enterprise Raw Logs with destination integrations
Analytics time-range at 1 minute scope
Prioritized customer support: 24x7x365 by phone, chat, and email support
100% uptime SLA up to 25x reimbursemen
Role-based account control
Single Sign On support
Network prioritization
Enterprise Bot Management*
Layer 3 Network DDoS protection with Magic Transit*
Spectrum (for TCP / UDP)*
SS L/ TLS for SaaS*
China Network access*
At fist you need to signup in cloudflare.com.
2. How to Add your site
Review your DNS records
Change your nameservers
Configure your domain settings
3. Cloudeflare Configuration
Overview
Analytics
DNS
SSL
Firewall
Access
Speed
Caching
Workers
Rules
Network
Traffic
3. Add Subdomain
4. Email Configuration
4. FAQ/Help/Knowledgebase
5. Tutorials
2. Add your site
At first Add your site
Then select free option
Then click Continue
2.1. Review your DNS records
Please make sure A record is pointing to 162.215.248.215 at CloudFlare.
2.2. Change your nameservers
2.3. Configure your domain settings
Configure your domain settings to improve security, optimize performance, and get the most from your account.
3. Cloudeflare Configuration
3.1. Overview
It is summery of all settings
Question: I am using business plan for www.xyz.com. We have one more subdomain named www.shop.xyz.com. My first question: Will free plan of your CDN works in subdomain (www.shop.xyz.com)? My second question: Will all features of our existing business plan (CDN) will inherited into www.shop.xyz.com? Answer: Yes, your plan covers. Your subdomains will be on the same plan as your root domain
Tickets: On your Cloudflare dashboard: >>1.View open support tickets >> 2.Log in to your Cloudflare account. >>3.Select Help Center from Support dropdown. >>4.Click Sign In if it appears in the top-right corner; otherwise, click on your name or profile picture. >> 5.Click My Activities & Requests. support.cloudflare.com/hc/en-us/articles/200172476-Contacting-Cloudflare-Support
3.2. Analytics
There are some analytics information can see under below 5 sub menus. Nothing to configure here
Traffic
Security
Performance
DNS
Workers
3.3. DNS
DNS management : Some of your DNS only records are exposing IPs that are proxied through Cloudflare. Make sure to proxy all A, AAAA, and CNAME records pointing to proxied records to avoid exposing your origin IP. You can change IP also here.
View Cloudflare nameservers: Will show your assigned Cloudflare nameservers.
Custom Nameservers: You can set custom nameserver from here
DNSSEC: Option to Enable DNSSEC (Default)
CNAME Flattening: Chose any option > Flatten CNAME at root (Default) or Flatten all CNAMEs
3.4. SSL
Setup your SSL from here in below submenus
Overview
Edge Certificates
Client Certificates
Origin Server
Custom Hostname
3.4.1. Overview
In SSL/TLS tab of business plan which SSL/TLS encryption mode should select? Off/Flexible/Full (Default)/ Full Strict. Part 1: SSL certificates support.cloudflare.com/hc/en-us/articles/360024787372-End-to-end-HTTPS-with-Cloudflare- . Part 2: SSL certificates support.cloudflare.com/hc/en-us/articles/203295200-End-to-end-HTTPS-with- Part 3: SSL options support.cloudflare.com/hc/en-us/articles/200170416-End-to-end-HTTPS-with-Cloudflare-Part-3-SSL-optionsCloudflare-Part-2-SSL-certificates. Make sure to choose ‘Full’ if you are already using SSL.
Question: In SSL/TLS tab, SSL/TLS Recommender value should be On(Default)/Off? Answer: I can’t advised to keep this off or on. it will depends in your circustances
Question: Is you SSL certificate is good. How many types of SSL certificate you have? What is the difference between Free and Business plan SSL?
Answer:
3.4.2. Edge Certificates
Manage & purchase SSL certificates that will be served to your web visitors. Your plan includes a shared Cloudflare called Universal SSL certificate. To get a dedicated certificate purchase from us with custom hostnames
3.4.3. Client Certificates
Secure & authenticate your APIs and web applications with client certificates. Block traffic from devices that do not have a valid client SSL/TLS certificate with mTLS rules.
3.4.4. Origin Certificates
Generate a free TLS certificate by Cloudflare to install on your origin server. Origin Certificates are only valid for encryption between Cloudflare & your origin server.
3.4.5.Custom Hostnames
Manage the hostnames & SSL certificates for third parties that CNAME to your domain.
3.5. Firewall
Overview
Managed Rules
Firewall Rules
Bots
Tools
3.5.1. Overview
It will show overall report of firewall. e.g. block, Challenge, Events by service,
3.5.2. Managed Rules
Web Application Firewall: On/Off (Default) >> Provides enhanced security through a built-in ruleset to stop a wide range of application attacks. support.cloudflare.com/hc/en-us/articles/200172016-Understanding-the-Cloudflare-Web-Application-Firewall-WAF-
Question: In Firewall Tab, should I On Web Application Firewall. Answer: It will totally depends on your circumstances. We higly recommend having this configured as it adds a extra security layer to your website. I can only say that enabling Cloudflare WAF can prevent a large amount of possible attacks on your site. Please bare in mind that you could see false positives (legitimate traffic being blocked due the WAF sensitivity)
3.5.3. Firewall Rules
Firewall Rules: Control incoming traffic to your zone by filtering requests and based on location, IP , user agent, URI, and more.
Question. In Firewall Tab, where can I find rules docs?
3.5.4. Bots
Here you can configure Bots Analytics, Bot Management for Enterprise, Requests by detection source etc
3.5.5. Tools
Rate Limiting: Enable Rate Limiting Button >> Protect your site or API from malicious traffic by blocking client IP addresses that hit a URL pattern and exceed a threshold you define.
User Agent Blocking:Create Blocking Rule Button >> Create a rule to block or challenge a specific User Agent from accessing your zone.
Zone Lockdown:Create Lockdown Rule Button >> Lock down a specific URL on zone to specific IP addresses. This is useful for protect an admin or protected area from non-specified IP addresses.
3.6. Access
Control user access to applications
Simplify contractor onboarding & offboarding
Audit user login and activity
Cloudflare Access:Enable Access Button. With Access, you can secure access to internal applications without a VPN.
Question: In Access tab should I Enable Access?
3.7. Speed
Overview
Optimization
Browser Insight
3.7.1. Overview
Result: Visitors to your website see content in 1.4 seconds on Cloudflare. That’s 61% faster!
Automatic Platform Optimization: Install this plugin to your website to effect
First Contentful Paint :3.2 s
First Contentful Paint with Automatic Platform Optimization : 1.3 s
Critical Loading Times
Mobile
Desktop
Time to First Byte
3.1s
0.3s
First Contentful Paint
6.1s
1.6s
First Meaningful Paint
6.1s
2.7s
First Interactive
No data
No data
Speed Index
23s
7.7s
Total Load time
28.4s
11.7s
3.7.2. Optimization
Image Resizing: On/OF > You can resize, adjust quality, and convert images to WebP format. This allows you to adapt images to your site’s layout and your visitors’ screen sizes, quickly and easily, without maintaining a server-side image processing pipeline. developers.cloudflare.com/images
Question: Should I on image Resizing in Optimization Tab? Ans. You are the Business plan, so you will be allowed to enable it. If you require WebP images/format, you can enable it.
Polish: Lossless / Off / Lossy >>Select Lossless for Improve image load time by optimizing images hosted on your domain. Polish optimizes resources cached in the Cloudflare edge network, not on your origin. WebP images are all stored on our network in our cache.. support.cloudflare.com/hc/en-us/articles/360000607372-Using-Cloudflare-Polish-to-compress-images#12345686
Question: In polish section should I check WebP?
Answer. If you require WebP images/format, you can enable it. As far as I am aware, it should not affect anything. As the document above states: `WebP is a modern image format providing superior lossless and lossy compression for images.>> We also recommend you turn ON Polish, which helps with image compression
Automatic Platform Optimization for WordPress: Install this plugin. APO increases the cache ratio for your site at the Cloudflare Edge. Improve the performance of your WordPress site. Automatic Platform Optimization for WordPress serves your WordPress site from Cloudflare’s edge network and caches third party fonts. Get the benefits of a static site without any changes to how you manage your site. This results in consistent, fast TTFB and content loading faster.
Enhanced HTTP/2 Prioritization: On / Off (Default) >> Optimizes the order of resource delivery, independent of the browser. Greatest improvements will be experienced by visitors using Safari and Edge browsers.
Question. In Speed Optimization Tab, should I keep On/Off for Enhanced HTTP/2 Prioritization
Answer: Of course, so enhanced HTTP2 Prioritization – what it does is that it will put an order of requests that loads the website faster. We definitely recommend it to be ON unless your website is not compatible We always suggest customers test to see everything is working well, and only then decide to keep it on.
TCP Turbo: Enabled >> Reduce latency and throughput with custom-tuned TCP optimization
Mirage: On / Off >>Improve load time for pages that include images on mobile devices with slow network connections.
Rocket Loader™: On / Off (Default)>> Improve the paint time for pages which include JavaScript
Answer: I see. We do recommend that you try to turn Rocket Loader on and see if it helps. In terms of page speed, sometimes it depends a lot on how your website is programmed, these optimizations will help, but are only part of the solution.
Question: In Speed Optimization Tab, should I keep On/Off for Rocket Loader™
Answer: Rocket Loader, of course. So Rocket Loader improves the order of loading the assets in your page, by letting images and styles load faster than non-essential Javascript. In this case, I would really recommend you test using a page speed test, such as Google’s Page Speed
Railgun™:RailgunSetting. >> Accelerate delivery of dynamic content. Note: Requires software installation at your host.
Prefetch URLs: Cloudflare will prefetch any URLs included in the prefetch HTTP header
AMP Real URL: On/Off (Default)>> Display your site’s actual URL on your AMP pages, instead of the traditional Google AMP cache URL. AMP Real URL is especially useful to customers with AMP traffic from primary search results like e-commerce, job boards, and ad-supported sites. If this is your use case. support.cloudflare.com/hc/en-us/articles/360029367652-Understanding-Amp-Real-URL
Question: Should I onAMP Real URL ? Ans. You can certainly enable it.
Mobile Redirect: Select a Subdomain >> Redirect visitors that are using mobile devices to a mobile-optimized website.
3.7.3. Browser Insight
Core Web Vital: Show your reports and fix of Largest Contentful Paint, First Input Delay, Cumulative Layout Shift etc
Page Metrics: Show page load time e.g. Total: 591ms, DNS: 46ms, TCP: 194ms, Request: 6ms, Response: 288ms, Processing: 40ms
Configurations: On/Off (Default) >> Measure your website’s performance by On and load time for your users.
3.8. Caching
Overview
Tiered Cache
Configuration
3.8.1. Overview
IT will show Cache Performance reports
3.8.2. Tiered Cache
Enabling Tiered Caching: Argo is a product that uses optimized routes across Cloudflare 200+ data centers to deliver responses to your users more quickly, reliably, and securely.
Caching Level : No query string / Ignore query string / Standard (Default)
Browser Cache TTL: 30M/ 1H/ 2H/ 3H/ 4H(Defautl)>>Determine the length of time Cloudflare instructs a visitor’s browser to cache files. During this period, the browser loads the files from its local cache, speeding up page loads.
CSAM Scanning Tool: Set email address
Always Online : On/ Off
Question: Should we click on Update Button?
Development Mode:On / Off (Default) >> Enabling this feature can significantly increase origin server load.
Enable Query String Sort : For enterprise plan
3.9. Workers
Run JavaScript on the edge (Workrs): Run JavaScript Service Workers in hundreds of Cloudflare data centers around the world
Workers KV: Store application data in the Cloudflare network and access your key-value pairs from Workers. developers.cloudflare.com/workers
Question. In Workers tab, how to Manage Worker? How it effect a website?
Answer: So, workers are a program that you code and it runs on our cloudflare edge servers. You can do endless things with Workers, you can program different behaviors for your website with it.
3.10. Rules
There are tow submenu under this menu
Pages Rules
Transform Rules
3.10.1. Page Rules
It is especially useful in securing critical pages like login page, wp-admin area, etc. To implement click on button Create Page Rules
(1) Page Rules : To secure wordpress login page
domain.com/wp-login.php* Setting: Security Level; High
(2) Page Rules : Exclude WordPress Dashboard from Cloudflare and Enable High Security
Question. In Rules tab, where can I find rules docs?
Answer:
Understanding and Configuring Cloudflare Page Rules (Page Rules Tutorial) support.cloudflare.com/hc/en-us/articles/218411427-Understanding-and-Configuring-Cloudflare-Page-Rules-Page-Rules-Tutorial- Recommended Page Rules to Consider support.cloudflare.com/hc/en-us/articles/224509547-Recommended-Page-Rules-to-Consider
3.10.2. Transform Rules
Transform Rules: Use Transform Rules to transform your traffic. This includes URL Normalization, URL Rewrites, and Header Modifications
3.11. Network
HTTP/2: On / Off (Default) >> Set On
HTTP/3: On / Off (Default) >> Set On
Question: Should I on HTTP/2 or HTTP/3?
0-RTT Connection Resumption: On / Off >> Improves performance for clients who have previously connected to your website.
Question: Should I on it
gRPC: On/ Off (Default)
WebSockets : On (Default) / Off
Onion 3outing: On (Default) / Off
Pseudo IPv4 : Off
IP Geolocation: On (Default) / Off
Maximum Upload Size : 100Mb (Default)
3.12. Traffic
Argo: Enable Agro >>Argo is a service that uses optimized routes across the Cloudflare network to deliver responses to your users more quickly, reliably, and securely. Argo increases the routing speed of a request after it reaches the Cloudflare Edge > cloudflare.com/products/argo-smart-routing , support.cloudflare.com/hc/en-us/articles/115000224552-Configuring-Argo-through-the-UI
Question: Should I Enable Agro?
Answer. You could enable Argo. It is payment system
4. Add Subdomain
Question: If I use subdomain, which record type I need to add, A record/ CNAME?
Answer: That depends on the configuration of your hosting provider. For example, if they provide a IP, you need to use a A record. If they provide a domain, you likely need to CNAME to it
Question: In DNS tab, there are few A records showing, but in free version I found a lot of A Record and CNAME. Can you explain me this issue?
Answer: So, every website can have a different configuration. It does not depend on your plan.
5. Email Configuration
Question: Generally I received mail according to configuration of cPanel. But after adding your CDN network, I get email in webmail but I can not download email through outlook. Are there any different configurations under CDN network to download mail in outlook?You can see below our hosting email configuration information
1.View open support tickets >> 2.Log in to your Cloudflare account. >> 3.Select Help Center from Support dropdown. 4.Click Sign In if it appears in the top-right corner; otherwise, click on your name or profile picture.
Once logged in click on the ‘Add Website’ button, it will go to Select a plan page. Select ‘Basic $0’ It will then go to the Quick Scan page and then it will redirect to Review your DNS records.
Can you please let me know which subdomain are you referring to ?
Actually it is same process for all the domains and subdomain, since you are adding the CloudFlare CDN from CloudFlare side so to confirm on CloudFlare CDN on the subdomain you can contcat and check once with CloudFlare support
Question: How to activate CDN? Should it configure by me. Or it is configured automatically. How can I ensure / check it from my end
Answer: Could you please provide the Domain name in which you want to activate the CDN ? I see that the CDN is not activated for autogarment.com The A record of autogarment.com pointing to Bluehost server IP 162.241.253.102
If you want to activate the CDN, you can login here :
my.bluehost.com/hosting/cloudflare
Enter the Email address, check the option (I have read and agree to abide by CloudFlare’s Terms of Service) and click on the Next button.
Clicked on Next should i do any other thing 3:46 pmSA email will sent to the email address entered with subject line as: [Cloudflare]: Welcome to Cloudflare, in partnership with Bluehost. They will email a password reset link. Once password is reset login at:
dash.cloudflare.com
Once logged in click on the ‘Add Website’ button, it will go to Select a plan page. Select ‘Basic $0’.
It will then go to the Quick Scan page and then it will redirect to Review your DNS records. And Propagation time can vary depending on the geographical location. Nameserver changes can typically take 0 to 24 hours to take effect, but they are known to take as long as 48 hours to go into full effect.
Hotlink Protection prevents your images from being used by other sites. Hotlink protection has no impact on crawling, but it will prevent the images from being displayed on sites such as Google images, Pinterest, etc.
FAQ
Question: May I know which plan of CDN is suitable for ecommerce site built with WordPress
Answer: If you order a plus or higher plan, it comes with Jetpack Professional, which is a CDN andI usually recommend using one CDN as each CDN functions differently (drh)
This either means that the username and password information in your wp-config.php file is incorrect or we can’t contact the database server at localhost. This could mean your host’s database server is down.
Are you sure you have the correct username and password?
Are you sure you have typed the correct hostname?
Are you sure the database server is running?
If you’re unsure what these terms mean you should probably contact your host. If you still need help you can always visit the WordPress Support Forums.
WordPress Error 2
Error establishing a database connection
WordPress Error 3
500 Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator at webmaster@shop.autogarment.com to inform them of the time this error occurred, and the actions you performed just before this error. More information about this error may be available in the server error log. Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
WordPress Error 4
For sales.autogarment.com
Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator at webmaster@autogarment.com to inform them of the time this error occurred, and the actions you performed just before this error. More information about this error may be available in the server error log. Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
Error message 5
SEO issue: The featured image should be at least 200 by 200 pixels to be picked up by Facebook and other social media sites.
Error message 5 (Webmail)
Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator at webmaster@autogarment.com to inform them of the time this error occurred, and the actions you performed just before this error. More information about this error may be available in the server error log. Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
JetPack Issue
Failed to load plugin url: https://shop.autogarment.com/wp-content/plugins/jetpack/_inc/build/contact-form/js/tinymce-plugin-form-button.min.js
TZ
I’m also seeing a large number of HTTP requests to your admin-ajax.php file. there were still 22k HTTP requests of the server yesterday so optimising the site is still critically important. It means that a browser accessed the WordPress install 22,000 times. It’s not individual people (For example, a page of 10 images needs 10 HTTP requests to load
Your JS files specifically amount to 2.4MB which could definitely be minified.
To establish successful marketing strategies for sustainable RMG business by acquiring organic traffics to convert them into customers as well as smooth business operation with software implementation.
ACADEMIC DEGREE
Degree
University/Board/Institution
Year
MS. in Telecommunication
University of Information Technology and Science UIITS, Dhaka
2009
B.Sc. in Computing and Information System
London Metropolitan University, (External, Daffodils, Dhaka)
2004
H.S.C
Shamser Fakir Degree College, Bhuyanpur, Tangail
1996
S.S.C
Akhanagar BI Lateral. High School, Thakurgoan
1993
PROFESSIONAL TRAINING
Training Name
Institution
Year
Certified Internet Web Developer
New Horizons Computer Learning Centres, Dhanmondi, Dhaka
2017
CAD Professional
Hangzhou Echo Computer & Technology Ltd of China, Dhaka
2010
Windows Server 2003
Neural Systems Ltd
2004
IADCS
British National Computer Center – NCC, UK
2001
DISM
Aptech Computer Education Centre, India
1999
EXPERIENCE
2013-Continue: LE Digital Canter Address : Natun Para, Hemayetpur Stand, Savar, Dhaka, Mobile # 01792525354, Email: masiur@gmail.com Duties : Co Founder
Quran, Hadis & Fikah converter in unicode www.hadisquran.com
Admin & Editor in Chief of several clothing websites e.g. autogarment.com, bangla.autogarment.com, halal.hadisquran.com, shop.autogarment.com etc.
Keyword researcher e.g. Above website is ranked due to keyword research.
Subscriber & Lead Generator to convert them into Customer. e.g. autogarment.com/erp-leads/
Working in Google AdSense, Google Analytics, Google Webmaster Tools etc.
Develop more than 20 web 2.0 sites for SEO in Wix, Blogspot etc
Marketing, SMM, SEM, SEO, Email Marketing, Content Marketing etc.
2005-Continue: Reputed RMG Company Duties: Deputy Manager
Operate Web Developers, Digital Marketing Executives, Application Developers in Group.
Check Schedule task, Maintenance process plan of web applications and distribute task to the vendors
Install Hosting Services includes Dedicated Server, VPS, WHM, cPanel, SSH, FTP, Migration etc.
Maintain Domain controller including DNS, Subdomain, Mx, A Record, CDN, Transfer etc
Implement eCommerce Application to showcase companies products online. Import Export and Database Optimization.
Implement Applications of HelpDesk, CRM, Design Studio, Project Management, Production Tracking, Magazine, Blog etc.
Set Security including SSL, Auto Backup & Restore, Malware, Malicious, DDoS, Backdoor, WAF, Spam, Phishing etc.
Increase Distal Marketing scope by using Content Writing, Indexing, SEO, Keyword Research, Competitor analysis, Speed & Image Optimization etc.
Social Media Management including Facebook, YouTube, LinkedIn, Twitter, Pinterest, Instagram etc.
Installation & configuration of CAD CAM (Plotter, Garber, Lectra, Iechosoft, Investronica and HPGL etc)
Software configuration e.g. Shedo Master software for dyeing m/c, Data Colour for spectrophotometer, Wilcom, and Stitch Pro for embroidery.
Document maintaining for compliance audit e.g. CTPAT, Wrap etc