Newest Post
Tampilkan postingan dengan label Tricks. Tampilkan semua postingan
Tampilkan postingan dengan label Tricks. Tampilkan semua postingan

Kamis, 02 Mei 2019

Docker and Laradock Setup Successful Notes (MAC)(WIN)

Docker and Laradock Setup Successful Notes for MAC (tested)(8 GB RAM)
- For windows you might need extra memory more than 4 GB RAM.
My PC Test Specs :
- iMac (21.5-inch, 2017) i5 - 8GB RAM DDR4
- macOS (High Sierra) v10.13.6

Before starting with laradock, make sure you are creating 1 directory

example setup :

+ laraveldocker
+ + laradock (put laradock inside laraveldocker folder)
+ + yourproject_1
+ + yourproject_2
+ + yourproject_3
+ + yourproject_......

// register that laravel folder in docker preferences
right click docker
> Preferences
> File Sharing
> click "+" / Add
> add that folder (laraveldocker)
- - - in my dir is : /Applications/XAMPP/xamppfiles/htdocs/laravel
> Apply & Restart

// install docker
// error notes ? vm cannot be create
// make sure your memory is big enough
// # # and read this notes : https://sharezone47.blogspot.com/2019/05/docker-unable-to-create-ErrorActionPreference.html

// docker compose build (this is the most fatal things in docker)
$> docker-compose 

// docker compose up
$> docker-compose up -d nginx mysql phpmyadmin redis workspace
$> docker-compose up apache2 php-fpm mysql phpmyadmin
$> docker-compose up nginx php-fpm mariadb adminer

// restart every edit laradock
$> docker-compose restart nginx
$> docker-compose restart apache2

// shutdown all docker laradock instance
$> docker-compose down

// to stop docker // example
docker-compose stop nginx


// see running container (docker and docker-compose)
docker ps
docker-compose ps

// edit host os /etc/hosts and add IP/Hostname mapping
127.0.0.1  laravel.test
127.0.0.1  sheezy.local
127.0.0.1  nonlaravelapp.local

// sites nginx
$> cp laravel.conf.example yoursites.conf

// go inside mysql
docker-compose exec mysql bash
docker-compose exec mysql mysql -u homestead -psecret

// go inside

$> docker-compose exec workspace bash

// reference
https://sharezone47.blogspot.com/2019/05/docker-unable-to-create-ErrorActionPreference.html
# https://sudonull.com/posts/332-Laravel-Docker-Our-Successful-Experience

Rabu, 01 Mei 2019

Docker Unable to create "ErrorActionPreference" (Solved)(Windows)

Come to the New Docker, I get a new error Unable to create: The running command stopped because the preference variable "ErrorActionPreference", and here is the solution (2 solution).
First of all, don't lazy to read the error :
Unable to create: The running command stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: The computer 'AKPC-DESKTOP' could not be resolved. Make sure you typed the machine name correctly and that you have network access.
at New-MobyLinuxVM, <No file>: line 218
at <ScriptBlock>, <No file>: line 375
   at Docker.Backend.HyperV.RunScript(String action, Dictionary`2 parameters)
   at Docker.Backend.ContainerEngine.Linux.Start(Settings settings)
   at Docker.Core.Pipe.NamedPipeServer.<>c__DisplayClass8_0.<Register>b__0(Object[] parameters)
   at Docker.Core.Pipe.NamedPipeServer.RunAction(String action, Object[] parameters)
1. If you are seeing "Make sure you typed the machine name correctly and that you have network access"

Solution: you need internet. please turn on your network.

2. After That, Oops we got another error, hahaha. no need to worry.
Unable to execute Start: Unable to create: The running command stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: Failed to create the virtual hard disk.

The system failed to create 'C:\Users\Public\Documents\Hyper-V\Virtual Hard Disks\MobyLinuxVM.vhdx'.
at Ensure-VHD-Path, <No file>: line 306
at New-MobyLinuxVM, <No file>: line 208
at <ScriptBlock>, <No file>: line 411    at Docker.Backend.HyperV.RunScript(String action, Dictionary`2 parameters) in C:\workspaces\stable-18.09.x\src\github.com\docker\pinata\win\src\Docker.Backend\HyperV.cs:line 195
   at Docker.Backend.HyperV.Create(Settings settings) in C:\workspaces\stable-18.09.x\src\github.com\docker\pinata\win\src\Docker.Backend\HyperV.cs:line 125
   at Docker.Backend.ContainerEngine.Linux.Start(Settings settings, String daemonOptions) in C:\workspaces\stable-18.09.x\src\github.com\docker\pinata\win\src\Docker.Backend\ContainerEngine\Linux.cs:line 117
[13:43:17.016][NamedPipeClient][Error  ] Unable to send Start: Unable to create: The running command stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: Failed to create the virtual hard disk.

The system failed to create 'C:\Users\Public\Documents\Hyper-V\Virtual Hard Disks\MobyLinuxVM.vhdx'.
at Ensure-VHD-Path, <No file>: line 306
at New-MobyLinuxVM, <No file>: line 208
at <ScriptBlock>, <No file>: line 411
[13:43:17.016][Notifications  ][Error  ] Unable to create: The running command stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: Failed to create the virtual hard disk.

The system failed to create 'C:\Users\Public\Documents\Hyper-V\Virtual Hard Disks\MobyLinuxVM.vhdx'.
at Ensure-VHD-Path, <No file>: line 306
at New-MobyLinuxVM, <No file>: line 208
at <ScriptBlock>, <No file>: line 411

If you are seeing 'Unable to create: The running command stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: Failed to create the virtual hard disk.'

Solution :
- open Command Prompt, run as Administrator, then type this one.
MOFCOMP %SYSTEMROOT%\System32\WindowsVirtualization.V2.mof

- Then go to this folder : ( in my place The system failed to create 'C:\Users\Public\Documents\Hyper..... so in your side maybe different. ).
C:\Users\Public\Documents\Hyper-V\Virtual Hard Disks\....
You will see an administrator prompt there. (i forget what, but Windows will show you a Windows to prompt), just allowed that, so all content there can be seen public.

- Finally, run your docker like usual.

- Case Solved

More info  :
Docker not starting on windows 10 #214
Unable to create: The running command stopped because the preference variable "ErrorActionPreference" #1538
Can't run Docker for Windows after install for the first time #1177

Happy Wednesday
KG




Selasa, 06 November 2018

Wordpress - Debug.log is not working (SOLVED)


Have you guys ever experience this level when your wordpress debug log is not showing correctly @@"

As i go with Wordpress Framework, here what i found

First Write the files debug.log
in path /wp-content/debug.log
Then Check wp-config.php
// Enable WP_DEBUG mode
define('WP_DEBUG', true);
// Enable Debug logging to the /wp-content/debug.log file
define('WP_DEBUG_LOG', true);
// Disable display of errors and warnings
define('WP_DEBUG_DISPLAY', false);
// @ini_set('display_errors',1);
and if debug still not working, try to check in server side :
<?php phpinfo(); ?>
make sure track_errors is ON

if this still not working, then your only choice is move the error.log to shared folder,
Example : This server is old and does not have the latest configuration. By default, you do not have access to the nginx logs.
So moved the logs to share/logs/<yourwebsites>/* 
and also if you have time , take a look at this gist
https://gist.github.com/franz-josef-kaiser/4063197
Bonus : to track php error in your case directly
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);

references :
https://wordpress.stackexchange.com/questions/296942/debug-log-file-is-never-created/301298#301298
https://www.elegantthemes.com/blog/tips-tricks/using-the-wordpress-debug-log

Feeling Helped ? Comment below

Sabtu, 03 November 2018

Apa itu .nomedia pada Android


Sering kita temukan file pada beberapa android ada file namanya .nomedia, terutama pada folder thumbnail atau pada folder data di android. tapi apa  kegunaan file ini ?

Apa itu .nomedia ? 

.nomedia atau no media adalah file kosong yang berguna untuk memberitahu sistem kalau folder ini tidak boleh di ditampilkan pada gallery foto, video player, ataupun music player.

Bagaimana Cara membuat file .nomedia ini ? 
untuk gampangnya sih kita tinggal copy/salin saja file .nomedia yang sudah ada pada folder sistem /Android atau pada folder sistem /Data, lalu paste/tempel pada folder yang kita inginkan

Kita juga bisa membuat file ini dengan bantuan notepad editor, seperti ES File Explorer dsb.
kita cukup lakukan penamaan/rename ulang menjadi .nomedia. lalu meletakannya pada folder yang kita inginkan.

~ cukup mudah bukan.


common tags :
.nomedia, cara agar folder tidak terlihat pada gallery foto, video player, ataupun music player, sistem android.

Rabu, 13 September 2017

Cold Fusion : Starter Pack and Review

Talk about Cold Fusion, CF is really a nice product IF ONLY Adobe make it FREE for public use.

Unfortunately, this CF things are so rare right now and all about Business Oriented, so you might not find any alternate to make this stuff open source, You will only find 30 Days trial and after that only get free production test only and limited usage.

alternative (FREE)
after browse some , i found LUCEE
Recommended for those who seek like CF in free way.


Now lets talk more about CF

To be Honest , i am new to this CF things. So get some brave hearts and here we go.

First impression :
  • CF looks like javascript in front end nowadays. if you are Angular or React developer, u might see this almost the same. (but ya cf cf cf everywhere ya will go).
  • There less issue within the developer forums, so its a bit hard to find some references.
    the stackoverflow tag for cf
  • Cause its adobe, its a safe language to learn. (idk the future, just make sure CF survive its good to hear).
  • you must have an adobe id, so just create one. (for forums and download stuff).

Here is what they call to login in localhost.
Try to compile this online at : 
This some sites that i found useful, actually for starter like myself.
Have nice day, keep learning till ya bored and need rest for a while.

#work issues
~KG

Selasa, 04 Juli 2017

Error Code 10 (This Device Cannot Start) (SOLVED)

Today i am facing this weird issue, my PC suddenly disconnected from the internet.

Case : This Device Cannot Start - Error Code 10

in my testing here i'm using windows 10.



How to solve this issue ? :
  • First , click windows + R , it will open "run.exe" interface, 
  • Then type there : ncpa.cpl 
  • you will get redirected to your network connection.
  • You will see other internet connection that you dont use is being activated and your normal internet connection is shutdown/disable/ removed from there. 
  • Just turn it to disable (other internet connection that you dont use).
  • Next, go to control panel, and search device manager.
  • see your "network adapters" division
  • disable every network that you dont use ( do not uninstall , just disable it ).
  • click your usual network adapter there, and re-enable it. (if it's fail, then restart your PC ).
  • case solved.

    have a nice day. ~KG

    Minggu, 21 Mei 2017

    Sublime text 3 ( laravel artisan not found ) (SOLVED)

      As sublime user facing this laravel issue :
      "Artisan not found"

      that almost scared me to death.

      i'm using sublime text 3, and use laravel version 5,
      tested with laravel 4 too.


    luckly , i solve this one : 

    you can find sublime settings here : ( preferences > Package settings )

    > go to your sublime settings :
    > (choose whether "laravel 4 artisan" or "laravel 5 artisan")
    > select "Settings - default"
    > copy that text (it will be like this)

    {
        "php_path": "php",
        "artisan_path": "artisan"
    }

    >  go to your sublime settings
    > (choose whether "laravel 4 artisan" or "laravel 5 artisan")
    > select "Settings - users"
    > now paste the text here and modify the "php_path" and "artisan_path"

    {
        "php_path": "C:/xampp/php/php.exe",
        "artisan_path": "C:\\xampp\\htdocs\\myfirstapp\\artisan"
    }

    > restart your sublime
    > finish, wish you luck.

    NOTES

    > if you are using my trick you must change "artisan_path" if you use different project.

    ===================
    ===================

    for more info you can see this one : 

    https://github.com/gnarula/sublime-laravelgenerator/issues/30

    Sabtu, 08 April 2017

    Docker login Error / Stuck (SOLVED)(windows)

    Oh no Docker (windows) Stuck at login , why cannot login to my docker through cmd git


    Case :

    Warning: failed to get default registry endpoint from daemon (error during conne ct: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.27/info: open //./pipe/docker_e ngine: The system cannot find the file specified. In the default daemon configur ation on Windows, the docker client must be run elevated to connect. This error
    may also indicate that the docker daemon is not running.). Using system default:  https://index.docker.io/v1/
    Login with your Docker ID to push and pull images from Docker Hub. If you don't
    have a Docker ID, head over to https://hub.docker.com to create one.
    > error during connect: Post http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.27/auth: ope n //./pipe/docker_engine: The system cannot find the file specified. In the defa ult daemon configuration on Windows, the docker client must be run elevated to c onnect. This error may also indicate that the docker daemon is not running.
    > docker login
    Error: Cannot perform an interactive login from a non TTY device

    Solution :

    > docker-machine start default
    > docker-machine env default
    > @FOR /f "tokens=*" %i IN ('docker-machine.exe env --shell cmd') DO @%i
    > docker login
    Username: *
    Password: *
    Login Succeeded

    More info  :
    Trying to connect to Docker API for shell commands throws error

    Happy Saturday
    KG

    Jumat, 07 April 2017

    Docker for windows (BASIC guide)

    What is docker ? and why docker ?
    one bad day for dev is that "wait, this work in my machine"

    So, to prevent that we use docker


    Minggu, 02 April 2017

    7 things you must do when using torrent - Utorrent

    7 things you must do when using torrent

    utorrent
    Okay, Who doesnt know this green friendly things in 2017 ??

    Maybe some of you just using it as default, but dont you think that isn't so efficient.




    Today, i will give you 7 trick you must do when using torrent.



    1. Disable the "auto update" from utorrent
      yeah it's so annoying when you open your torrent app and it is installing every single x.x.1 version, (i hope they fix that update system soon and only update when major change not minor).

    2. Distinguish the completed files
      sometimes we are confused how to distinguish completed 100% files from common not 100% complete files. so here we tick "Append .!ut to incomplete files".
    3. Settings the download table
      sometimes we want to know how many percentage the file is and the remaining.
    4. Set your bandwidth priorityyou can set your download priority here , and set the limit of your upload and download.
    5. Shutdown after the download is complete
      not having enough quota and being limited only can download at night ?? no problem, you can try this solution.
    6. Setup your directory
      usually we want to separate the complete torrent from the uncompleted one. you can try to modify this tab menu.
    7. Set limit how many queue for active download
      just modify that maximum number of active download
    Thats all for today, enjoy :3

    Minggu, 05 Februari 2017

    Electronic Charger Tips



    Documentation Files of  Electronic Charger Tips and Issue
    for : handphone, laptop, powerbank, etc.

    Before buying the new one ?  ( skip this step if you’re rich af )
    Go and do some market research.
    -> Search the “model” in google / your fav search engine
    -> Seek for “Price” at your public market (see in amazon, bukalapak, tokopedia, or etc)

    Tips at buying : 
    -> Compare the Charger Ports (if it’s fit or not)
    -> Buy Only The Same Brand of the Charger cause they will works fine.


    Look For its “Output” the Voltage (V) symbol 
    ****(dont buy different voltage charger, or your phone will “boom” for sure).
    example : 19V, then you must buy the exact 19V (no less and no higher)

    See the “Output” Ampere (A)  
    ****(High “A” can make you charge so fast, ).
    example : 6A , then you can buy
    - i suggest you buy the sampe Ampere, or at least lower 10% of Ampere
    - seek more cheaper price ? (MINIMUM) lower 20% of Ampere (MINIMUM), dont dare lower than that, you will get hellish word after take it home.

    How to Maintenance : ( lembiru intensive files )
    -> Always fan/wind your Electronic Charger (cause of heat)
    -> Do not roll around your charger cable by force !!!
    -> Do not put it in your bag after use, fan it a while (cause of heat)(unless is urgent)

    ~ Credits by KG
    base on my experience of charger (not L4D)

    Senin, 12 September 2016

    How to direct / make your LAN internet into wifi

    Make your bolt modem E5372s as wifi router from PC,
    Okay guys, today we talk about how to direct / make your LAN internet connection into wifi,

    bolt modem E5372s
    in my test here you must have a wifi modem : (any wifi modem is fine)
    1. change your SIM card into other SIM card (that NOT have internet package or pulse )
    2. connect your modem via LAN connection
    3. click windows Logo + R , and type : "ncpa.cpl" (without quotes)
    4. now you see network connection windows
    5. go to your LAN internet connection, 
    6. right click , properties , at top you see "Sharing" tab
    7. choose "allow other network users to connect through this computer's internet connection"
    8. at "select a private network connection" choose your wifi LAN connection.
    9. then click ok
    10. after that , set your wifi LAN DNS to google DNS for faster connection.
    11. Good Luck ~~

    tested with : bolt modem E5372s
    bolt modem E5372s

    Rabu, 22 Juni 2016

    Malware Removal Process (TESTED)

    Please note that below are All tested by Myself. All malware that explained are collected from the deep web. <(“) Note : 
    This is a removal / cure from malware *Malware = virus that hide in some app/program

    ===============================================================
    #26Dec2015 #AMH2015 #Tested Duel with Android malware, I aint expect it can install itself in-ROM with No-Root Option.. sasuga malware Nowadays Best Detection so far by: Dr.web with 14 Day Activation Behavior : install itself and download the other malware friends. Malware Apps Varian : engrik, engriks, ikeyboards, adobeair, txvpn, data-manager v2.00 System Modiffy : /xbin/ /bin/ /data/ I have 3 solution here , you can choose:
    1. Solution Version 1 : 
      1. Just Scan it first with 360 security (Free) and malwarebytes (Free) 
      2. Scan twice , reboot , and scan again,
      3. if after reboot you still have your malware detected, then u need  other solution below.
    2. Solution Version 2:  
      1. go to factory reset, and reset Phone 
      2. or you can try my solution version 2.
    3. Solution Version 3: (Root is a must)
      1. Prepare www.kingroot.net (kingroot.apk)
      2. Root the phone
      3. unistall the bloatware with it (dont empty the recycle, cause malware detect and install again if their child removed).
      4. scan with android antivirus (Dr.web , 360 security, malwarebytes),
      5. try first with malware bytes, then 360 security, then Dr.web (Remember this Scanning Step, dont be too rush).
      6. Repeat the Step “5”,
      7. After that, restart your phone, Rescan with Step “5”.
      8. Goodluck
    4. Solution Version 4
      1. Flashing your ROM , (remember this last solution is your worst case scenario).

    copyright@AK47works @ShareZone47

    Minggu, 19 Juni 2016

    NVDIA Driver Crash ??? (Solved)

    Today we talk more about NVDIA,
    You know, most of us doesn't aware about it when our driver get crash and only "intel graphic driver" survived ... ho !!!!!

    This is my experience. having PC formated cause NVDIA driver not working.. ahahaha  too damn lame right >_<

    Now let me share you some of my solution OwwO.



    #1ST Solution

    Reinstall your own Nvdia driver / get your own updatemanually through the NVDIA website

    #2ND Solution

    Reinstall Direct X , 
    you might forget install the most latest Direct X for your System ???  Nope , this not.

    Some of Direct X version might issuing you when installing a game RIGHT !!!!
    as if hahaha. After Restarting your NVDIA get trouble and changed to intel driver survivor ... <(") Wutt.

    Ok for this one am not sure why, but for some apps and games that get different Direct X , might get Crash issue !!!

    Just Download this (Direct X) from my google drive.
    Maybe just version 2005-2007 but this works fine , LOL isnt it @@

    =======================

    PS : remember to restart your PC after each solution.

    =======================

    I might forget another solution, maybe add more in future
    Have a nice Day

    #KG

    Sabtu, 18 Juni 2016

    Speaker is too low / small volume ??? (SOLVED)

    Having your PC Speaker / loudspeaker with full volume, 
    but weak in sound ? too small to be heard by ear ?



    Solution :
    1. go to "Speaker Properties"
    2. you will see 4 tabs there (General,level,Echancement,advanced)
    3. go to "Echancement" tab
    4. Turn ON "Disable all sound Effect"
    5. Enjoy ^^

    OR if you still have too small sound ???
    just reverse it, it works fine  (TESTED) : 
    1. go to "Speaker Properties"
    2. you will see 4 tabs there (General,level,Echancement,advanced)
    3. go to "Echancement" tab
    4. Turn OFF "Disable all sound Effect"
    5. Next is optional :
      Turn ON "Loudness Equalization"
      Turn ON "Virtual Surround"
    6. Enjoy ^^
    Notes : if the sound you hear are broken ? just turn on Loudness Qualization to keep it good. 

    Case : Speaker is too low / small volume ??? (SOLVED)

    Sabtu, 13 Februari 2016

    Host Undetected ???? (SOLVED)

    Experiencing HOST file like undetected from your OS / PC that would be a big issue for some of us.

    HOST file protect us from unwanted program or websites to be accessed from our OS / PC.

    Ok, back to topic,
    now i want to share sometricks about this issue.

    take example i want to block www.facebook.com
    Step#1 - Lets Check first
    1. Open the "cmd" (you can search this)
      or for shortcut : "windows logo" + "R" then type "cmd"
    2. Type "ipconfig /flushdns"
    3. Type "ping www.facebook.com"
    4. You will get 100% lost or  request timeout for that website page. 
    5. if not, try restarting your Modem / internet connection after it.
    Step#2 - Still fail ?
    Take it easy, still more way to rome, >_<
    1. run "cmd" as administrator
    2. type "nbtstat -R"
    3. system reseting the NetBios Cache
    4. test the "ping www.facebook.com"
    Another fail ? (XDDD you might be the worst one)
    Dont Worry Sob, maybe your placing at host files get typography error

    Host files located in C:\windows\system32\drivers\etc\
    go there ok.

    1. edit with notepad / notepad++
    2. at the very bottom
      see ,is there any blocked sites OR comments like this ? "#"
    3. the correct way to type in host is :

              "127.0.0.1 www.facebook.com"
      Format :
      TheWebsiteIP www.thewebsite.com
    4. Save it. (if you fail check please check this out)
    5. Now Check it with the very first step (See "Step#1 - Lets Check First")

    Have a nice day sob. KG 


    #Host #Undetected #SOLVED

    Sabtu, 08 November 2014

    saving file without extension

    Cara membuat file tanpa extensi di notepad ?
    How to save file without ANY extension ?




    ENG :
    1. open notepad
    2. fill with your content
    3. save like this :
    • File name : "yourfilename." (without quotes)
    • Save as type , choose : "all files(*.*)" 
    4. save, good luck ^^
    IND :
    1. buka notepad
    2. isi  apa aja
    3. save seperti ini :
    • File namenya : "namafilenya." (tanpa tanda petik)
    • Save as type pilih : "all files(*.*)"
    4. save, selamat mencoba