Showing posts with label Web. Show all posts
Showing posts with label Web. Show all posts

Wednesday, February 21, 2018

Download Firewall App Blocker FAB 1.6 Latest version

Gambar terkait

Firewall App Blocker FAB 1.6 Latest version is program to customize firewall protection on same program. Why using firewall? Some program need to blocked from their original server to running, so this FAB help you to do it in a simple sett.

Gambar terkait

Whats new: 

FIXED – Add a folder feature doesn’t support shortcuts
FIXED – If the firewall is closed, added icons seems to be blocked
FIXED – In whitelist mode MS Edge continues to establish normal connections to the Internet (Need extra step)
FIXED – Fab cannot remove old versions Context Menu registry entries properly

Info : Supported Operating Systems: Windows 10 , Windows 8.1 , Windows 8 , Windows 7 , Windows Vista – (both x86 and x64)

How to install?

- Open the .exe installation file
- Wait until the installation process finish
- Enjoy

Download Firewall App Blocker FAB 1.6 Latest version here
GoogleDrive (1 mb)

Download Joomla_3.8.5-Stable-Full_Package



Download Joomla_3.8.5-Stable-Full_Package

Gambar terkait

Hasil gambar untuk joomla 3 interface

Hasil gambar untuk joomla 3 interface

Hasil gambar untuk joomla 3 interface

Joomla is one kind of CMS (Content Management Sytem) for website. CMS is program that construct from some programming language to help you on making and manage your website. With CMS you can create some themes, and write articles freely, this is just like an Operating System on you website.

Joomla first version born on 2005 and now lots of upgrade have been done by its developer. Joomla also a freeware that you can use and share it. Joomla is mobile friendly and user friendly CMS to create your website.

Here you can download Joomla version 3.8.5. Stable full version
GoogleDrive (13 mb)

Friday, February 09, 2018

How to fix : the reference to entity "version" must end with the ';' delimiter.


Lets begin with a short story. One day i want to make a fanspage about my blog so i decide to create it with the same name as my blog. I just create it a bit time and its complete. Now i dont talk about creating a fanspage, it will be in other post. After create a fanspage i start to make a page plugin. I have follow the instruction but get an error while saving the javascript code. This is from the developer fb.


here the code in the red rectangle

<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = 'https://connect.facebook.net/id_ID/sdk.js#xfbml=1&version=v2.12&appId=1789352757996862&autoLogAppEvents=1';
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
While it pasted in the theme and start to saving, i get the error:
on this problem i just add some amp;  to the code
from: js.src = 'https://connect.facebook.net/id_ID/sdk.js#xfbml=1&version=v2.12&appId=1789352757996862&autoLogAppEvents=1';
to: js.src = 'https://connect.facebook.net/id_ID/sdk.js#xfbml=1&amp;version=v2.12&amp;appId=1789352757996862&amp;autoLogAppEvents=1';
So it will be
<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = 'https://connect.facebook.net/id_ID/sdk.js#xfbml=1&amp;version=v2.12&amp;appId=1789352757996862&amp;autoLogAppEvents=1';
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
And now the problem fixed
This is just a few trick for How to fix : the reference to entity "version" must end with the ';' delimiter.
Thanks for visiting, see you on next post ^^