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 | |
session_start(); | |
if(!isset($_SESSION["WEBMAIL_AUTHORIZED"])) | |
{ | |
if(!isset($_COOKIE["WEBMAIL_AUTHKEY"])) | |
{ | |
$key=""; | |
$chars="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ012345678901234567890123456789012345678901234567890123456789"; | |
for($i=0;$i<30;$i++) | |
{ |
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 | |
session_start(); | |
if(!isset($_SESSION["WEBMAIL_AUTHORIZED"])) | |
{ | |
if(!isset($_COOKIE["WEBMAIL_AUTHKEY"])) | |
{ | |
$key=""; | |
$chars="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ012345678901234567890123456789012345678901234567890123456789"; | |
for($i=0;$i<30;$i++) | |
{ |
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 | |
session_start(); | |
if(!isset($_SESSION["WEBMAIL_AUTHORIZED"])) | |
{ | |
if(!isset($_SESSION["WEBMAIL_AUTHKEY"])) | |
{ | |
$key=""; | |
$chars="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ012345678901234567890123456789012345678901234567890123456789"; | |
for($i=0;$i<30;$i++) | |
{ |
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 { | |
listen 80; | |
root /usr/local/weld; | |
server_name yingatech.local; | |
location ^~ /assets/ { | |
} | |
location ~ { | |
include fastcgi_params; | |
fastcgi_pass 127.0.0.1:9000; | |
fastcgi_param SCRIPT_NAME "index.php"; |
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
case 'themeasseturl': | |
if(file_exists($this->themePath . '/assets/' . $value1[1])){ | |
$tpl = str_replace("{{themeasseturl:" . $value1[1] . "}}", '/assets/themes/' . $this->appConfig['theme'] . '/assets/' . $value1[1], $tpl); | |
}else{ | |
$this->error->fatal('Invalid theme asset requested, please check that the asset exists in your theme/assets folder. (Site:' . $this->site . ' // App:' . $this->app . ' // Page:' . $this->page . ')'); | |
$tpl = str_replace("{{" . $value1[0] . ":" . $value1[1] . "}}", "", $tpl); | |
} | |
break; |
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
try_files $uri /index.php; |
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 { | |
listen 80; | |
root /usr/local/weld; | |
server_name yingatech.local; | |
location ~ { | |
include fastcgi_params; | |
fastcgi_pass 127.0.0.1:9000; | |
fastcgi_param SCRIPT_NAME "index.php"; | |
fastcgi_param SCRIPT_FILENAME "${document_root}/index.php"; | |
fastcgi_param QUERY_STRING "url=$fastcgi_script_name&$query_string"; |
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
2015-07-30 14:09:59 -0400 | |
LD_LIBRARY_PATH=/usr/local/lib | |
./configure | |
--disable-debug | |
--disable-dependency-tracking | |
--disable-silent-rules | |
--prefix=/usr/local/Cellar/hubicfuse/2.1.0 | |
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
2015-07-29 19:51:44 -0400 | |
make | |
install | |
clang++ _internal/Source/internalJSONNode.cpp -o Objects_static/internalJSONNode.o -c -fast -ffast-math -fexpensive-optimizations -DNDEBUG | |
clang++ _internal/Source/JSONAllocator.cpp -o Objects_static/JSONAllocator.o -c -fast -ffast-math -fexpensive-optimizations -DNDEBUG | |
clang++ _internal/Source/JSONChildren.cpp -o Objects_static/JSONChildren.o -c -fast -ffast-math -fexpensive-optimizations -DNDEBUG | |
============================================================ | |
libjson version: 7.6.1 target: OS: Darwin |
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
2015-07-28 19:15:16 -0400 | |
./configure | |
--disable-debug | |
--disable-dependency-tracking | |
--prefix=/usr/local/Cellar/abiword/3.0.1 | |
CXX=/usr/local/bin/gcc-5 | |
checking build system type... x86_64-apple-darwin13.4.0 | |
checking host system type... x86_64-apple-darwin13.4.0 |