Dynamic Blinkie Text Generator at TextSpace.net

Feedburner

I heart FeedBurner

Rabu, 31 Januari 2018

Macam macam error

Introduction

When accessing a web server or application, every HTTP request that is received by a server is responded to with an HTTP status code. HTTP status codes are three-digit codes, and are grouped into five different classes. The class of a status code can be quickly identified by its first digit:
  • 1xx: Informational
  • 2xx: Success
  • 3xx: Redirection
  • 4xx: Client Error
  • 5xx: Server Error
This guide focuses on identifying and troubleshooting the most commonly encountered HTTP error codes, i.e. 4xx and 5xx status codes, from a system administrator's perspective. There are many situations that could cause a web server to respond to a request with a particular error code--we will cover common potential causes and solutions.

Client and Server Error Overview

Client errors, or HTTP status codes from 400 to 499, are the result of HTTP requests sent by a user client (i.e. a web browser or other HTTP client). Even though these types of errors are client-related, it is often useful to know which error code a user is encountering to determine if the potential issue can be fixed by server configuration.
Server errors, or HTTP status codes from 500 to 599, are returned by a web server when it is aware that an error has occurred or is otherwise not able to process the request.

General Troubleshooting Tips

  • When using a web browser to test a web server, refresh the browser after making server changes
  • Check server logs for more details about how the server is handling the requests. For example, web servers such as Apache or Nginx produce two files called access.log and error.log that can be scanned for relevant information
  • Keep in mind that HTTP status code definitions are part of a standard that is implemented by the application that is serving requests. This means that the actual status code that is returned depends on how the server software handles a particular error--this guide should generally point you in the right direction
Now that you have a high-level understanding of HTTP status codes, we will look at the commonly encountered errors.

400 Bad Request

The 400 status code, or Bad Request error, means the HTTP request that was sent to the server has invalid syntax.
Here are a few examples of when a 400 Bad Request error might occur:
  • The user's cookie that is associated with the site is corrupt. Clearing the browser's cache and cookies could solve this issue
  • Malformed request due to a faulty browser
  • Malformed request due to human error when manually forming HTTP requests (e.g. using curl incorrectly)

401 Unauthorized

The 401 status code, or an Unauthorized error, means that the user trying to access the resource has not been authenticated or has not been authenticated correctly. This means that the user must provide credentials to be able to view the protected resource.
An example scenario where a 401 Unauthorized error would be returned is if a user tries to access a resource that is protected by HTTP authentication, as in this Nginx tutorial. In this case, the user will receive a 401 response code until they provide a valid username and password (one that exists in the .htpasswd file) to the web server.

403 Forbidden

The 403 status code, or a Forbidden error, means that the user made a valid request but the server is refusing to serve the request, due to a lack of permission to access the requested resource. If you are encountering a 403 error unexpectedly, there are a few typical causes that are explained here.

File Permissions

403 errors commonly occur when the user that is running the web server process does not have sufficient permissions to read the file that is being accessed.
To give an example of troubleshooting a 403 error, assume the following situation:
  • The user is trying to access the web server's index file, from http://example.com/index.html
  • The web server worker process is owned by the www-data user
  • On the server, the index file is located at /usr/share/nginx/html/index.html
If the user is getting a 403 Forbidden error, ensure that the www-data user has sufficient permissions to read the file. Typically, this means that the other permissions of the file should be set to read. There are several ways to ensure this, but the following command will work in this case:
sudo chmod o=r /usr/share/nginx/html/index.html

.htaccess

Another potential cause of 403 errors, often intentinally, is the use of an .htaccess file. The .htaccess file can be used to deny access of certain resources to specific IP addresses or ranges, for example.
If the user is unexpectedly getting a 403 Forbidden error, ensure that it is not being caused by your .htaccess settings.

Index File Does Not Exist

If the user is trying to access a directory that does not have a default index file, and directory listings are not enabled, the web server will return a 403 Forbidden error. For example, if the user is trying to access http://example.com/emptydir/, and there is no index file in the emptydir directory on the server, a 403 status will be returned.
If you want directory listings to be enabled, you may do so in your web server configuration.

404 Not Found

The 404 status code, or a Not Found error, means that the user is able to communicate with the server but it is unable to locate the requested file or resource.
404 errors can occur in a large variety of situations. If the user is unexpectedly receiving a 404 Not Found error, here are some questions to ask while troubleshooting:
  • Does the link that directed the user to your server resource have a typographical error in it?
  • Did the user type in the wrong URL?
  • Does the file exist in the correct location on the server? Was the resource was moved or deleted on the server?
  • Does the server configuration have the correct document root location?
  • Does the user that owns the web server worker process have privileges to traverse to the directory that the requested file is in? (Hint: directories require read and execute permissions to be accessed)
  • Is the resource being accessed a symbolic link? If so, ensure the web server is configured to follow symbolic links

500 Internal Server Error

The 500 status code, or Internal Server Error, means that server cannot process the request for an unknown reason. Sometimes this code will appear when more specific 5xx errors are more appropriate.
This most common cause for this error is server misconfiguration (e.g. a malformed .htaccess file) or missing packages (e.g. trying to execute a PHP file without PHP installed properly).

502 Bad Gateway

The 502 status code, or Bad Gateway error, means that the server is a gateway or proxy server, and it is not receiving a valid response from the backend servers that should actually fulfill the request.
If the server in question is a reverse proxy server, such as a load balancer, here are a few things to check:
  • The backend servers (where the HTTP requests are being forwarded to) are healthy
  • The reverse proxy is configured properly, with the proper backends specified
  • The network connection between the backend servers and reverse proxy server is healthy. If the servers can communicate on other ports, make sure that the firewall is allowing the traffic between them
  • If your web application is configured to listen on a socket, ensure that the socket exists in the correct location and that it has the proper permissions

503 Service Unavailable

The 503 status code, or Service Unavailable error, means that the server is overloaded or under maintenance. This error implies that the service should become available at some point.
If the server is not under maintenance, this can indicate that the server does not have enough CPU or memory resources to handle all of the incoming requests, or that the web server needs to be configured to allow more users, threads, or processes.

504 Gateway Timeout

The 504 status code, or Gateway Timeout error, means that the server is a gateway or proxy server, and it is not receiving a response from the backend servers within the allowed time period.
This typically occurs in the following situations:
  • The network connection between the servers is poor
  • The backend server that is fulfilling the request is too slow, due to poor performance
  • The gateway or proxy server's timeout duration is too short

Conclusion

Now that you are familiar with the most common HTTP error codes, and common solutions to those codes, you should have a good basis for troubleshooting issues with your web servers or applications.
If you encounter any error codes that were not mentioned in this guide, or if you know of other likely solutions to the ones that were described, feel free to discuss them in the comments!

Sumber : https://www.digitalocean.com/community/tutorials/how-to-troubleshoot-common-http-error-codes

Cara Hapus Project di Google Console

  • Open the Settings page in the Google Cloud Platform Console.
  • Click Select a project.
  • Select a project you wish to delete, and click Open.
  • Click Delete Project.
  • Enter the Project ID and click Shut down.

Sabtu, 27 Januari 2018

Bootstrap Material Design

Ayo gan coba bootstrap material design (MDB):
https://mdbootstrap.com/components/bootstrap-footer/
https://mdbootstrap.com/getting-started/

Marquee Time Delay HTML 5

Beberapa scriptnya :
<marquee style="font-family:Book Antiqua; color: #FFFFFF" bgcolor="#000080" scrolldelay="90">This is an example of Marquee (Delay : 90 Milliseconds)</marquee>
<marquee style="font-family:Book Antiqua; color: #FFFFFF" bgcolor="#000080" scrolldelay="500">This is an example of Marquee (Delay : 500 Milliseconds)</marquee>
<marquee style="font-family:Book Antiqua; color: #FFFFFF" bgcolor="#000080" scrollamount="5">This is an example of Marquee (Amount : 5 pixels)</marquee>
<marquee style="font-family:Book Antiqua; color: #FFFFFF" bgcolor="#000080" scrollamount="20">This is an example of Marquee (Amount : 20 pixels)</marquee>   

Senin, 22 Januari 2018

Perbedaan addon domain dan sub domain

Pengertian Add-on Domain adalah nama domain yang diarahkan ke sub-direktori sebuah nama domain utama. Misalnya kita mempunyai sebuah nama domain yaitu indositehost.com, kita bisa Add-on namadomainbaru.com dan diarahkan untuk menampilkan apa saja yang hanya ada di folder indositehost.com/namadomainbaru/.

Ketika http://namadomainbaru.com diakses dari internet, pengunjung tidak akan merasakan adanya perbedaan,namadomainbaru.com akan tampil layaknya seperti nama domain biasa bagi pengunjung. Apa yang ditampilkan sebenarnya berada di indositehost.com/namadomainbaru/index.html. Add-On Domain pun dengan sendirinya akan menjadi subdomain dari domain utama tersebut, yaitu namadomainbaru.indositehost.com.

subdomain maupun add-on domain tidak terpisah dari nama domain utama, sehingga saling berbagi (share) dengan domain utama dalam segala hal, termasuk diskspace, bandwith & cPanel. kita tidak akan mendapatkan cPanel untuk setiap add-on domain yang ditambahkan, semua diatur dalam satu cPanel main account (contoh: dalam cPanel indositehost.com). Pembuatan FTP account & Email Account untuk namadomainbaru.com dapat dilakukan di cPanel indositehost.com.

Kesimpulannya: Sub Domain dan Add-on Domain tidak mendapat cpanel tersendiri, tapi secara fungsi & fitur, sama saja dengan nama domain / account biasa.

Add-on Domain bisa diakses dengan 3 cara, dan untuk contoh di atas yaitu:
1. http://namadomainbaru.com/ (Langsung)
2. http://namadomainbaru.indositehost.com (Sub Domain)
3. http://indositehost.com/namadomainbaru/ (Directory)
Dan umumnya cara 2 dan 3 secara otomatis menjadi domain redirect ke alamat utama.
Sumber : http://klien.indositehost.com/knowledgebase.php?action=displayarticle&id=3

Jumat, 19 Januari 2018

Materi belajar Laravel

Salah satu URL materi laravel berbahasa Indonesia :
http://id-laravel.com/post/memodifikasi-default-login-laravel-5-1

Minggu, 14 Januari 2018

Sabtu, 13 Januari 2018

Selasa, 09 Januari 2018

Bootstrap datatable

Bro bagi yang suka design tabel ada link kece nih buat yang pengen nampilin data dalam tabel :
https://datatables.net/extensions/buttons/examples/initialisation/export.html

Jumat, 05 Januari 2018

Problem Openssl di laravel

Halo bro kalau ada beberapa problem openssl di laravel, seperti :
   Karena  extension=php_openssl.dll
   ada 2 maka aktifkan 1 saja bro
1). module openssl already loaded in unknown on line 0
     Solusi :
  1. Go to your php.ini file
  2. add the semicolon before extension=php_openssl.dll jadi ;extension=php_openssl.dll
  3. Restart your Apache 
2). Call to undefined function openssl_encrypt()
     Solusi :
   
  1. Go to your php.ini file
  2. Remove the semicolon before extension=php_openssl.dll
  3. Restart your Apache  

 

Kamis, 04 Januari 2018

SUBSTRING

ini salah satu syntax query substring between 2 date di mysql :
SELECT energy_kwh_total,date_created,SUBSTRING(date_created,1,10) FROM register_value where (date_created BETWEEN '2017-12-01 15:04:05' AND '2017-12-12 15:04:05' )

untuk date kalau dari form bisa di ubah menjadi variabel dengan syarat variabel tersebut sudah bernilai

Rabu, 03 Januari 2018

Mengatasi Terjadi kesalahan saat mencoba menyimpan atau memublikasikan pos Anda

Ada beberapa faktor penyebab tidak terpublikasinya posting yang kita buat.

1. Koneksi Internet yang Lambat
Koneksi yang lambat tentunya akan membuat posting susah dipublikasikan. Jika loading terlalu lama maka yang akan terjadi adalah "timeout" dan muncul error "Terjadi kesalahan saat mencoba menyimpan atau memublikasikan pos Anda". Jadi pastikan internet anda sedang dalam kondisi yang bagus ketika anda menekan tombol "Publikasikan" atau "Perbarui" postingan.

Untuk jaga-jaga sebelum anda publikasi atau perbarui posting di blog, sebaiknya anda lakukan copy posting yang anda buat dengan menekan Ctrl + C pada keyboard.


2. Terlalu cepatnya Koneksi Internet tetapi Device lemot
Loh kok internet telalu cepat jadi penyebabnya? Ini yang harus anda tahu, setiap halaman web yang anda akses termasuk Blogger akan menggunakan memori penyimanan sementara RAM dari device anda. Halaman website modern yang menggunakan background proccess sehingga akan terjadi sambungan internet walaupun tanpa ada aktivitas, contohnya penggunaan Ajax pada blogger. Nah hal ini yang dapat menjadikan device anda lemot dan browser anda tidak merespon ketika anda mempublish posting.

Solusi :  
"Jangan buka terlalu banyak tab di browser, dan gunakan device yang mempunyai RAM yang lebih besar.".
FindLyrics.top

3. Penulisan Karakter atau kata yang terlalu banyak.
Tulisan yang terlalu banyak juga sangat mempengaruhi terpublikasinya posting anda, jika posting anda terlalu panjang sampai puluhan ribu kata ini juga akan menyebabkan munculnya error seperti tadi. Saya sarankan untuk meng-copy tulisan yang sudah anda buat untuk jaga-jaga, lalu kita Publish.

4. Anda menambahkan Objek Gambar dengan cara Drag & Drop.
Bagi anda yang biasa memasukan gambar pada posting dengan cara drag & drop, sebaiknya cara tersebut ditinggalkan. Cara tersebut akan menjadikan alamat gambar yang anda upload menjadi panjang, sangat panjang :
data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wCEAAkGBhQSEBATEBAREBIQFhQUEBAWFxYPFRARGBQZGRUWFRcXGycgFxkkGRQSIi8gIycpLCwtFR89NTArNSYrLCkBCQoKBQUFDQUFDSkYEhgpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKSkpKf/AABEIAOMA3gMBIgACEQEDEQH/xAAcAAEAAwADAQEAAAAAAAAAAAAABQYHAQMECAL/xABKEAABAwIDBQQGBQcICwAAAAABAAIDBBEFEiEGBzFBURMiYXEIFDKBkaEjQmJyghUzUpKiscE0U3ODk7KzwxYYJCVDRGNkwtHw/8QAFAEBAAAAAAAAAAAAAAAAAAAAAP/EABQRAQAAAAAAAAAAAAAAAAAAAAD/2gAMAwEAAhEDEQA/ANxREQEREBERAREQF5cSxOKnifNPI2KKMXe9xsAP4m+gHE3XqWFbyqiXF8bhwqB5ZDTkdq7iA/LmlkI5lrDlAP1r/pIJTFd/pkl7LCqCWrdr33B3etzbFGC4jxJB8FHv304tT3fWYPlj6mKopgPxvzD5LW9m9l6eggbDSxCNotmdxfI79KR3Fzv/AIWGilrIKRsjvfoa/KwSerTusOwmszM7ox/sv14C4PgruqVtZuioK4OJhFNMeE8IEZv1e0d1/vF/EKhx49iezsjI63NX4cTljmFyWDkGudqx1v8AhvNjbuniUG4oo/AsdhrIGT00gkjfwI0IPNrhxa4cwVIICIiAiIgIiICIiAiIgIiICIiAiIgIiICIiAsV3PRdrjuN1B1cHStHgJKlx/dGAtqWM7ondnjuOwHQl8rh91lS4f5jUGzIiIC89fQRzxPimY2SOQZXscLhw8QvQiDDeyk2YxNpzPfhNcbG93difH7bL3+0y/MabfFKHNa5pDmuALXA3DgRcEEcRZRe1ezMVfSS00w7sg7r7XMUg9h7fEH4i44FUPcztDLG6owisNqigJ7G/wBaAGxaCeIaS0j7LxyCDU0REBERAREQEREBERAREQEREBERAREQEREBYr2nqW2RvZrK9gA8e0iFvjNFb3raljPpAULoZMNxGIWfBJ2Zd9pru1h+bZfig2ZF0UFY2aKOVhuyVjZGHq1zQ4fIhd6AiIgLGt7f+78XwvFI9A89nU2HtNZYOv1LopHN/qwtlWTekbY4fSD6xqRlHM/QyX+Zag1gFcrpooi2ONp4ta0HzAAK7kBERAREQEREBERAREQEREBERAREQEREBVLergnrWEVrALuYzto+ZzRd/TxIa4fiVtX5kjDgWuFw4EEdQdCEFI3LYv2+DUtzd0GeB3hkd3B/ZmNXlZB6P0piOK0buNNOCB4nNG7/AAWq57abzaPDC1tQ575nDM2CMB78vJzrkBov1NzyBQWxFjLvSUgvpQTEdTIwH4W/ivTF6SFJ9ekqh5GJ373BBrqyreCz13H8HoRq2nzVc/MZQ7MA7ppDb+tC0PZ7H4q2lhqYCTHMLtzDK5pBLXNcOocHA2005qjbr4fW6/FcVdq2aU01If8At4rAkeBDYve1yDS0REBERAREQEREBERAREQEREBERAREQEREBERBj2wDOw2pxqG9hK2SW3iZI5B8pnK2bT7oqCvqfWZ2yiR2XtMkhY2XKABmBBt3QB3bcFXKdnZ7ZS/9ekB+EbB/lLWEEFgmw1DSNApqOFn2y0SPPm993H4qUfhkR9qGI+bGn+C9KIK5vAxQ0uF1kkYs4RGOEN5SSERx5QOjnt+C9ex+AiioaWmFvoY2h5HOQ96Q+95cfevFtvSmUUEdrtdXUxk6FjC6Sx8C6Ng96sqAiIgIiICIiAiIgIiICIiAiIgIiICIiAiIgIigNqtuaTD2F1VM1rrXZC2z5ZPus4+82HigptU2+2MNvq0Rv+3/AOwtRXzJSbyaubGpa6jou3lkj7GOmtJMWRd0A/R2Obu3J4d4rR4KfaOuA7WWmwmI8QxofLbwF3EH8TSg0ytxCOFpfNLHCwcXvc2NvxcQFT8V3zYZCcoqTUv5RwMdMXeTtGH9ZeCi3H0pcJK+oqsSl5umkc1p8g05vcXFXXCdnKalFqamhg5EsY1hPm4C595QUWXeZWVFvVNnqyVtw5j5z6sLg3aRdpHT6yk8P2rxckdtgNmniWVdPmA+68i/xCvKIOmknL2NcY3xE8Y35czT0OVxHwJC5qapkbS6R7Y2iwLnEMAJNhqdNSQu1VnENrYmYi3DqljQ2rhDqeR2rJnFz2yQuB0vYNI5HNbja4WVrgRcG4PA9QuVlm0mCVWCudW4SXS0QJdV4Y4lzI28XSQc2N5m3s8dW6NvWye1cGIUzKimddp0ew+1FIOLHjkRceYII4oJlERAREQEREBERAREQEREBERAVU263jU2FxgzEyTPF4qdls7xwzG+jGX5nobA2KsGLYk2ngmnk9iCN8j+uVjS428dFjO7bYs4vUS4tig7Rkkh9XgOrHlptqDxiZYNDeZab8O8Clx7Hsb1pQMOpHcJheK7fCUgyPPHWMAeSseAbhqSM9pXSS4hM43cXkxsLuuUHM78TjfotNa0AAAAAaADQAdAuUHkw7CoadmSnhjgYPqRtbGPg0aletEQEREBERAWf76NlzVYeZ4rtqMPJnieNHZBYygHkbNDh4xhaAuqpgD2PYeD2uaeehFj+9BF7IYsavD6Sd4GaeFjpBbTOW2fp0zXWT1Y/wBHcdY5ndw3EvbZwbF3rOt/RucHD7D7LZsJw1lPBDBFfs4GMjZfU5WtAF+p0VQ3z7NirwmcgXkpf9ojPOzAe0HvjL9OoCC9Aoqjupx01eE0kjjd7GmGQ8SXRHICfEtDT+JW5AREQEREBERAREQEREBERBT972b8i1+S9+zbe36Pasz/ALOZfjc/icc2D0fZWBhb2UrRxbK096/ibh341a8RoGTwywytzRzMdHI3qxwII+BXzrsNNUYPtD6kXFzJZm08reDZWP1hltyIDmu8AXDmUH0kiIg/Ek7W+05rb8LkC/xXLXg8CD4jVYrvV3N1VVVSVdE8T9rbPTveGOYQAPo3POUs04Ei3K/KlU+47FjxgZH5zR/+Dig+majEI4wTJLGwDiXOa0D4lQtdvFw6H85iFLpybI2U/BlysUpvR1r3fnJ6OPr3pJD8o7fNT1B6NQ07fECRzbHFb4Oc8/3UFqr9/WFx+xLNP/RxOH+LkUFVekjBe0FBUSHkHPZET7m51O4RuGwyEgvjlqiP52Q2v92MNB8jdXfDcCp6cWp6eGAdI2Nj+OUaoMvp98+IS6wbP1D2ngQZXC3mIbKzYHtniUrm9vgMsTDxeKiEFo65JMpPxV4RB01VWyNhfK9sbG+09xDWt8ydAPFcXZNGbFskcrSLghzXscLGxGhFivxT4nFJJNEyRj5IMomYCCYy4XaHDkSAVTsd2Ilpnuq8EcKeYHNNQ8KWs6jJe0chHBwt7rkoIT0fiY6fEKZ3Gnq3DyuwNPziWrLJtwz3SHF5nsMTpqq7oze8b++5zDcA3Ge3DktZQEREBERAREQEREBERAREQdNZWMijfJK4MjjaXvedA1rRck+4LHtgcPOLY3UYw6MspoXZKUO4ySNjDGk/db3j0c5oF7FWbeoH1T8PwqN5j/KErnVDxxbTQDO8eZNreLFdsJwqOmgjggYI4omhrGDkB16km5J5klB60REBERAREQEREBEQoMN3NYq447i8bj+f7eR3i9lTp8pXrclgm4+nM2NYjVMH0TWzd7lmmnDmD9Vj/gt7QZlj9X+Ssdpp292lxj6Gqbwa2pYQGTdAe+y/hnK01Zh6QtHmwpkg4wVEbr9A5r2n5ub8FoOB1pmpaaU8ZYopD5vYHfxQe5ERAREQEREBERAREQEREGRb5q+WhxDCMSY0vZAZI3jgDfUsJ5F0bpbfdWnYHjcVXTx1FO8SRSi7TzHVrhycDcEciExzA4ayCSCpjEkUgs5p0IPJzTycDqCFhtHPUbMYoIZHulw6rN7ngWXAMgHASsuMwHtC3VuUPoFFwCuUHTVVbI25pXsjaLAue4MaCeGpNl+45Q4AtIcDwINwfeFD7YbKRYjSSU09wHWcx41dFIPZeOtrnTmCRzXzbjG73FMPmc2OGqc0HuT0wkex45G8erT4GxQfVqL5aw7DtoX2EX5Xb0Lnzwt+L3AKwxbp8dq22q6xzGni2eqkn/ZYXg/FBtuI7X0cBInraaIji10rA79W9/koSXfDhLTY18Z8mSv+bWFUTDfRrboamvcerYowz4Oe4/3VasO3D4XH7cU1Qeskrh8o8gQT+FbxsOqXBsNdA5ztGsc7snOPQCQAk+AUtjWGGogkhE0kAlGV0keUPDD7QaXAgEi4va4vpqoim3aYYwWbh1KfvRiX5vup6np2QxhjA2OOMd1o0axo5DoB8kEfsxsrT4fAIKSPIy+ZxJzPkfaxc9x4nQeA5WUuoutxJ7qZtRRhlSC0Ssjvb1iIi9o3fVeRq24sTobXuOdndooa2Bs9M/Ox2hB0dG8e0x7fquHTy4ggoKbv7lAwaQH60sIHic1/3NKtexQthuHg8RS01/7FqzP0isWzMoaGPvSSydsWjjoDHF8XPk/UWvYdSCKGKJvCJjGDya0NH7kHoREQEREBERAREQEREBERAWcb+sKjlwh8j/zlPJG6AjiXPeI3N8i1xPm0dFo6z/bk+uYpheHN1ZG/1+s8IoiRE0+Dn5h7wgvNDEWxRtdxaxrT5hoBXeiICIiAiIgIiIC6qqnEjHsdwe1zT5EWP712ogyHcdtU5pqMJqT9LRuk7AnmxryJI/NrtR4OPJqgtqMbkwDaCWWIF1LXBs00A0Dw4kPLb6B4kbI4fetwK9uBbOSP2vq5YRaGle6Sd/IOmp7ZPFznvdp0a7oun0l6YZsNfpcioYTzIBiI/vO+KCM3f082N466vqG2hpnNlI4tYW/yeFp52IDj1yuJ4r6HVW3Y0UUeE0PYRNiEkMckgH15XMGdzidSSevKw4AK0oCIiAiIgIiICIiAiIgIiICyPZbaZrNp8Viqvo5ajJFSl2gyxgZWA8s7S1w6kdSFrizfe5u1bWxGrpz2VZTMLg4aCdjBmDXEcHixyu9x0sWhpCKl7pNsXYjhzHy6zwOMMzv5xzWgtf8Aia5t/EOV0QEREBFgm8DD8WwipmqqOrqX0cz3SE5jO2FznXLZY33aBc2D7cLagrpwb0j6hgAq6SKf7cbjTu8yCHAnysg+gUWQ/wCsjSZf5HVZrcLx2v55v4KArvSIq5XZaKhiYToA7PVPPkGZRf3FBvqLBqHGNqas3jY+Bp5vhgpmgdR2zcxHldXjZ3A8eaQavE6QjT6PsBP7iWCI/NBe6eijjLzHGxhldnkLWhpkfYDM63tOsALnovn70g8Z9YxCmpIhndTMsQNT20xaQzxOVsX6y2PbnG6qjoTPSwMqpIi0zMs5v0Vjne1rSTocptc2F+Nlju5TAm4hiU9fVzMklgf2whPtvmebiUj9Bp4W+tl4WFw3XZzDPVqOlg4mCGKMnqWMDSfiCpFEQEREBERAREQEREBERAREQFGbTPIoqwtF3CCYtHUiJ1lJrgi+h1B5IMz9HzD8mEmQ8aieR/4WhsYHxY74rTVG4Ds/DRxGKmaWRF7ntjuXNjLjdwZfg29zblcqSQEREHDmggggEHQg6gjoVUq7dLhUri59BECdTkL4Bf7sbgB8FbkQVSi3V4XEbsw+A/fDp/lISrHR4fHE3LDFHE39FjWxj4NAXoRAREQFgm1NCMJ2mo5qX6OKsdG58bdGgSSGKZoHQ+2BwBOnALe1g+J1YxjaqmbD34KAtzPGrXNgeZJHeRkIYDz06oN4REQEREBERAREQEREBERAREQEREEPtdT1D6KcUL+zqgGvgdpq9j2vyG+lnBpbrp3tVSdit9cVRIKXEI/UqsO7M3u2J8gNi3vaxOvpldp430WnKqbYbsqLEu9PEWTWsKiMiOS3IO0IePvA+FkFrRdFDTGOKOMvdIY2NYZHe08taBmdbmbXPmo/EtqYIL9sZWW59hO4e4tjIKCXRUas304XH/zEjiPqtgnB/aYFXsQ9IukaD6vSVUx+1kgafeC4/JBrS81fiMUEbpJ5WQxt9p73BjR7ysBxbfjilRcUlKKZp4Fkb6mQficMv7KpNfh+KV0meaDEKp/Iujmky+Qy2aPKwQfTeyu20OIuqDSte6CnLWesEZGyyEEuEYOtmjJqbe2NOa7NpNuqKgaTVVLGOtpEDnld0tG3X3mw8VimCbKbQvp46aBjsPpm30zMpC5x9p0haTK4nny5AWFlPYF6OQuH4hWOkJ1dHCMtz4yv1P6oPighdq979Xij/U8KgliZN3Tl71RM3nct0iZbjY8OLrXC0vdVu5GF07jJlfVT2M7xqGNHsxMPQXJJ5nwAVj2e2TpaFmSkp2Qg+04avf8Afebud7ypdAREQEREBERAREQEREBERAREQEREBERAREQcWSyIg5siIgIiICIiAiIgIiICIiAiIg//2Q==
 
Format alamat gambar tersebut disebut dengan format base64, kode tersebut berisi informasi gambar, tentu saja kalau ukuran gambarnya besar maka format tersebut akan lebih panjang. Hal ini tentu sangat tidak efektif dan berpengaruh pada saat menulis posting.

Solusinya adalah dengan mengupload gambar ke server google, dengan memilih menu "Insert Image", lalu pilih gambar yang ingin anda masukan klik upload, terakhir masukan ke dalam posting. Dengan metode ini gambar akan di simpan di server Google dengan alamat yang jelas dan singkat.