This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mon Mar 24 13:43:38 2014 OpenVPN 2.3.2 x86_64-w64-mingw32 [SSL (OpenSSL)] [LZO] [PKCS11] [eurephia] [IPv6] built on Aug 22 2013 | |
Enter Management Password: | |
Mon Mar 24 13:43:38 2014 MANAGEMENT: TCP Socket listening on [AF_INET]127.0.0.1:25340 | |
Mon Mar 24 13:43:38 2014 Need hold release from management interface, waiting... | |
Mon Mar 24 13:43:38 2014 MANAGEMENT: Client connected from [AF_INET]127.0.0.1:25340 | |
Mon Mar 24 13:43:38 2014 MANAGEMENT: CMD 'state on' | |
Mon Mar 24 13:43:38 2014 MANAGEMENT: CMD 'log all on' | |
Mon Mar 24 13:43:38 2014 MANAGEMENT: CMD 'hold off' | |
Mon Mar 24 13:43:38 2014 MANAGEMENT: CMD 'hold release' | |
Mon Mar 24 13:43:39 2014 Socket Buffers: R=[8192->8192] S=[8192->8192] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Users\polson>ipconfig /all | |
Windows IP Configuration | |
Host Name . . . . . . . . . . . . : polson-THINK | |
Primary Dns Suffix . . . . . . . : oca-domain.lan | |
Node Type . . . . . . . . . . . . : Hybrid | |
IP Routing Enabled. . . . . . . . : No | |
WINS Proxy Enabled. . . . . . . . : No | |
DNS Suffix Search List. . . . . . : oca-domain.lan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Users\lappy>ipconfig /all | |
Windows IP Configuration | |
Host Name . . . . . . . . . . . . : lappy-PC | |
Primary Dns Suffix . . . . . . . : | |
Node Type . . . . . . . . . . . . : Hybrid | |
IP Routing Enabled. . . . . . . . : No | |
WINS Proxy Enabled. . . . . . . . : No |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mon Mar 24 21:07:03 2014 OpenVPN 2.3.2 x86_64-w64-mingw32 [SSL (OpenSSL)] [LZO] [PKCS11] [eurephia] [IPv6] built on Aug 22 2013 | |
Enter Management Password: | |
Mon Mar 24 21:07:03 2014 MANAGEMENT: TCP Socket listening on [AF_INET]127.0.0.1:25340 | |
Mon Mar 24 21:07:03 2014 Need hold release from management interface, waiting... | |
Mon Mar 24 21:07:04 2014 MANAGEMENT: Client connected from [AF_INET]127.0.0.1:25340 | |
Mon Mar 24 21:07:04 2014 MANAGEMENT: CMD 'state on' | |
Mon Mar 24 21:07:04 2014 MANAGEMENT: CMD 'log all on' | |
Mon Mar 24 21:07:04 2014 MANAGEMENT: CMD 'hold off' | |
Mon Mar 24 21:07:04 2014 MANAGEMENT: CMD 'hold release' | |
Mon Mar 24 21:07:04 2014 Socket Buffers: R=[8192->8192] S=[8192->8192] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace OCA\Blasts\Models; | |
use Model; | |
/** | |
* Contact Model | |
*/ | |
class Contact extends Model | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# =================================== | |
# Form Field Definitions for Contact | |
# =================================== | |
fields: | |
firstname: | |
label: First Name | |
lastname: | |
label: First Name | |
name: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace OCA\Blasts\Updates; | |
use Schema; | |
use October\Rain\Database\Updates\Migration; | |
class CreateContactsTable extends Migration | |
{ | |
public function up() | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//----------------- error | |
Symfony\Component\Debug\Exception\FatalErrorException thrown with message "Class 'diquoterequests' not found" | |
Stacktrace: | |
#1 Symfony\Component\Debug\Exception\FatalErrorException in C:\xamppPHP5.4\htdocs\diqc-laravel\vendor\krafthaus\bauhaus\src\KraftHaus\Bauhaus\Field\HasManyField.php:36 | |
#0 Illuminate\Exception\Handler:handleShutdown in <#unknown>:0 | |
(copied from error) | |
Symfony \ Component \ Debug \ Exception \ FatalErrorException (E_ERROR) | |
Class 'diquoterequests' not found |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
DOCKERFILE="/home/ubuntu/dockerfiletest/Dockerfile" | |
ENVFILE='/home/dokku/oca/ENV' | |
env_list='ENV' | |
# itterate through ENV file to make a single line for use in Dockerfile | |
while read line; do | |
# Remove the 'export ' at the beginning of each line |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
# see: http://wiki.nginx.org/Pitfalls | |
# see: http://wiki.nginx.org/IfIsEvil | |
listen 80; | |
root /app; | |
index index.html index.htm index.php; | |
error_page 404 /index.php; | |
# Make site accessible from http://set-ip-address.xip.io |
OlderNewer