magento install on xampp ubuntu

1、crate virtualbox vm, install ubuntu 16 This step have many tech, just find on google ps: start Virtual Box in background make link, link content is vboxheadless -startvm “your vm’s name” check internet is ok~~ 2、Use account that when you install ubuntu, create user account. Now example username is “Ubuntu”. Login Ubuntu use “Ubuntu” account. see https://www.apachefriends.org/download.html choese 7.0.13 / PHP 7.0.13 wget https://www.apachefriends.org/xampp-files/7.0.13/xampp-linux-x64-7.0.13-1-installer.run chmod +x xampp-linux-x64-7.0.13-1-installer.run install ...

2017-01-03 · 2 min · 253 words · Me

免費 類pingendo

http://grapesjs.com/

2016-12-30 · 1 min · word · Me

[轉]使用Docker搭建Web漏洞测试环境

http://www.freebuf.com/sectool/123907.html http://www.freebuf.com/sectool/104524.html 在这个例子中,我直接在一个临时的容器上运行“remnux/metasploit”,退出的时候会消失(“rm”功能类似)。“-it”让你能够通过shell与容器进行交互。 为了保存容器的相关数据,我使用“-v”参数来将容器目录映射到我主机的目录上。我将使用”~/.msf4”目录来存放Metasploit Framework的配置文件。主机上的“/tmp/msf”目录将会存储其他数据,比如你可能从目标系统获取的数据。 参数“-p”对容器内部的端口进行映射。上面的例子用443端口来接收反弹shell的https连接。

2016-12-27 · 1 min · 6 words · Me

openattic linux web管理介面工具

http://openattic.org/home.html

2016-12-26 · 1 min · word · Me

angular2 ionic2 angularfire2 json <-> object

authstat json <-> object import { Storage } from ‘@ionic/storage’; import { FirebaseAuthState } from ‘angularfire2’; // authstate object -> json this._auth.signInWithEmailAndPassword(this.loginForm.value.email, this.loginForm.value.password) .then((authData: FirebaseAuthState ) => { this.storage.set(‘alluserinfo’, JSON.stringify(authData)); }); //json -> authstate object this.storage.get(‘alluserinfo’).then((t_value) => { let value: FirebaseAuthState; value = JSON.parse(t_value); });

2016-12-22 · 1 min · 45 words · Me