<!-- FLOATING ADS DI BAWAH --> | |
<script type='text/javascript'> | |
$(document).ready(function() {$('img#closed').click(function(){$('#btm_banner').hide(90);});}); | |
</script> | |
<!--start: floating ads--> | |
<div id='floatads' style='width:100%;height:320;margin:auto; text-align:center;float:none;overflow:hidden; display:scroll;position:fixed; bottom:0;z-index:9999'> | |
<div><a id='close-floatads' onclick='document.getElementById('floatads').style.display = 'none';' style='cursor:pointer;'> | |
<center> | |
<button class='outline' style='padding: 2px 7px 2px;display: inline-block;right: 47%;font-size: 10px;line-height: 1;position: absolute;z-index: 1;'>Close</button> | |
</center> | |
</a></div> | |
<!--Script iklan--> | |
<ins class='adsbygoogle' data-ad-client='ca-pub-1405929659228935' data-ad-format='auto' data-ad-slot='9651835296' data-full-width-responsive='true' style='display:block'></ins> | |
<script> | |
(adsbygoogle = window.adsbygoogle || []).push({}); | |
</script> | |
<!--Akhir script iklan--> | |
</div> | |
<!--end: floating ads--> |
Pemasaran digital adalah suatu kegiatan pemasaran atau promosi sebuah merek atau produk menggunakan media digital atau internet dengan tujuan untuk menarik konsumen atau calon konsumen secara cepat.
Sabtu, 24 Juni 2023
FLOATING ADS
Kamis, 11 Mei 2023
How to add List-Unsubscribe header
To implement the opt-out option in your email header, your email server must first be configured. For example, this is how to add the list-unsubscribe header to all outgoing emails using Postfix:
- in /etc/postfix/main.cf, set
header_checks
to:
header_checks = regexp:/etc/postfix/list_unsub_header
Copy
- create a list_unsub_header file in /etc/postfix/ and add the following:
/^Content-Transfer-Encoding:/i PREPEND List-Unsubscribe: mailto:<sender-email-address>?subject=unsubscribe>"
Copy
- Restart Postfix it with
service postfix restart
Copy
or
/etc/init.d/postfix restart
Copy
Contact your email administrator to insert this option for your particular server. If you use an email service provider, you can ask them to insert the list-unsubscribe header into your email. Or you can do this yourself, using the ESP’s documentation. To accomplish this, you will have to choose between two types of unsubscribing methods: mailto and http.
Mailto
Mailto is the most commonly used method for implementing the list-unsubscribe header. When a user clicks the unsubscribe link, the mail client generates an email with an unsubscribe request and sends it to a specified email address. You also need to process the request and unsubscribe from this user. Here is the flow of setting up a mailto list-unsubscribe:
- Create a dedicated email address for unsubscribe requests. For example, unsubscribe@example.com
- Provide this email address to your email administrator or ESP and ask them to insert it into the email header. The following syntax should be used:
List-Unsubscribe: <mailto: unsubscribe@example.com?subject=unsubscribe>
Copy
- With the mailto method, you have to manually unsubscribe the users.
Http or unsubscribe URL
With the http method, behind the list-unsubscribe header, there is a URL leading to a web page for opting out. When a user clicks the unsubscribe link, a landing page 2 opens, and the user is asked to confirm unsubscription. Here is the flow of setting up an http list-unsubscribe:
- Create a web page dedicated to unsubscribe requests. Both http: and https: are acceptable. For example, http://www.example.com/unsubscribe.html 7
- Provide the unsubscribe URL to your email administrator or ESP, and ask them to insert it into the email header. It is best to use this method in conjunction with mailto because the recipient’s inbox client may not support http list-unsubscribe. That’s why it is advisable to use the following syntax:
List-Unsubscribe: <mailto: unsubscribe@example.com?subject=unsubscribe>, <http://www
DKIM not working - Mails do not get signed
For any given domain, in Mail Settings, "Use DKIM spam protection system to sign outgoing email messages" is checked enabled, but in some circumstances outbound email messages are not signed from said domain. It's necessary to switch DKIM off and on again to get it to work.
Unable to send dkim headers
Troubleshoot log /var/log/rspamd/rspamd.log
Prompt for permission issues:
dkim_module_load_key_format: cannot load dkim key /www/server/dkim/xxxx.com/default.private: cannot map key file: '/www/server/dkim/xxxx.com/default.private' Permission denied
Set 640 to 644, then restart rspamd to send emails to view email source code
chmod 644 /www/server/dkim/xxxx.com/default.private
/etc/init.d/rspamd restart
WDR Nginx rewite rule
Remove cache url
Please open: \xhr\login.php
Find ?cache and remove it totally, remove only what is selected: https://prnt.sc/9APi9GRCTrgm
Line 95
$data['location'] = $wo['config']['site_url'];
Bests,
False url sitemap-index.xml
Manage your sitemaps with a sitemap index
If you have a sitemap that exceeds the size limits, you'll need to split up your large sitemap into multiple sitemaps such that each new sitemap is below the size limit. Once you've split up your sitemap, you can use a sitemap index file as a way to submit many sitemaps at once.
Sitemap index best practices
The XML format of a sitemap index file is very similar to the XML format of a sitemap file, and it's defined by the Sitemap Protocol. This means that all the sitemap requirements apply to sitemap index files also.
The referenced sitemaps must be hosted on the same site as your sitemap index file. This requirement is waived if you set up cross-site submission.
Sitemaps that are referenced in the sitemap index file must be in the same directory as the sitemap index file, or lower in the site hierarchy. For example, if the sitemap index file is at https://example.com/public/sitemap_index.xml
, it can only contain sitemaps that are in the same or deeper directory, like https://example.com/public/shared/...
.
You can submit up to 500 sitemap index files for each site in your Search Console account.
Welcome, ./assets/includes/functions_three.php
$sitemap->createSitemapIndex
Line 5283
$sitemap->createSitemapIndex($site . '/xml/', 'Today');
Remove /xml/ change to /
So like this
$sitemap->createSitemapIndex($site . '/', 'Today');