I hereby claim:
- I am eduardocruz on github.
- I am eduardocruz (https://keybase.io/eduardocruz) on keybase.
- I have a public key ASAidBvvQajmmymeh8bQjxGX2MEsdtgxPMA3kn5xCojXJQo
To claim this, I am signing this object:
alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" |
Verifying that "eduardocruz.id" is my Blockstack ID. https://explorer.blockstack.org/name/eduardocruz.id |
Verifying my Blockstack ID is secured with the address 15hWzLfCT9vumEb1wpDVWJBxvfmguuPUSX https://explorer.blockstack.org/address/15hWzLfCT9vumEb1wpDVWJBxvfmguuPUSX |
I hereby claim:
To claim this, I am signing this object:
//BEFORE | |
function myFunction() | |
{ | |
if(userAuthorized()) | |
{ | |
execute(); | |
execute(); | |
execute(); | |
execute(); | |
} else { |
messageButton.addEventListener("click",function(event){ | |
alert(messageText.value); | |
},false); |
Config::set('database.connections.dbconnection', array( | |
'driver' => 'mysql', | |
'host' => $host, | |
'database' => $nome_banco, | |
'username' => $login, | |
'password' => $senha, | |
'charset' => 'utf8', | |
'collation' => 'utf8_general_ci', | |
'prefix' => '', | |
)); |
wmic os get osarchitecture |
1.Copy files on Laravel's public folder into a folder you want to put them on public_html. | |
2.Copy Laravel's other folders anywhere your want to put them. Rename if you wanted. | |
3.Open index.php on your public folder with text editor , and change "require '../paths.php';" to fit your directory structure. | |
4.Open paths.php with text editor, and change "path['xxxx'] = 'xxxxx';" format lines to fit your directory structure. | |
5.Don't forget set permition for your 'storage' directory. | |
Source: http://forums.laravel.com/viewtopic.php?id=1685 |