# Remove index.php$
if ($request_uri ~* "^(.*/)index\.php$") {
return 301 $1;
}
location / {
try_files $uri $uri/ /index.php?$query_string;
# Remove from everywhere index.php
if ($request_uri ~* "^(./)index.php(/?)(.)") {
# Remove index.php$
if ($request_uri ~* "^(.*/)index\.php$") {
return 301 $1;
}
location / {
try_files $uri $uri/ /index.php?$query_string;
# Remove from everywhere index.php
if ($request_uri ~* "^(./)index.php(/?)(.)") {
<?php | |
namespace App\Http\Middleware; | |
use Closure; | |
use \Illuminate\Support\Facades\Redirect; | |
class LowercaseRoutes | |
{ | |
/** |
# Change to the project directory | |
cd /home/forge/domain.com | |
# Turn on maintenance mode | |
php artisan down || true | |
# Pull the latest changes from the git repository | |
# git reset --hard | |
# git clean -df | |
git pull origin master |
pacemaker on | |
# | |
# There are lots of options in this file. All you have to have is a set | |
# of nodes listed {"node ...} one of {serial, bcast, mcast, or ucast}, | |
# and a value for "auto_failback". | |
# | |
# ATTENTION: As the configuration file is read line by line, | |
# THE ORDER OF DIRECTIVE MATTERS! | |
# | |
# In particular, make sure that the udpport, serial baud rate |
<?php | |
namespace App; | |
use Illuminate\Database\Eloquent\Builder as EloquentBuilder; | |
use Illuminate\Database\Eloquent\Relations\HasMany; | |
use Illuminate\Database\Eloquent\Relations\HasOneOrMany; | |
use Illuminate\Database\Eloquent\Relations\Relation; | |
use Illuminate\Database\Query\Builder as QueryBuilder; | |
use Illuminate\Database\Query\Expression; |
$value = array( | |
"deep"=>1, | |
"data"=>null, | |
"node"=>array( | |
"deep"=>2, | |
"data"=>null, | |
"node"=>array( | |
"deep"=>3 | |
) | |
), |
# -*- coding:utf-8 -*- | |
# Author : JEANNENOT Stephane | |
# Mail : [email protected] | |
# History | |
# + 10 january 2008 | |
# --> Version : 0.1 : first try of creating a program that feets my objectives : convert | |
# easily xls sheets into csv with my favorite language ;) | |
# + 24 may 2009 |
<script> | |
const medium = 'https://medium.com/linedevth/'; | |
const queryString = decodeURIComponent(window.location.search).replace("?liff.state=", ""); | |
const params = new URLSearchParams(queryString); | |
const id = params.get('id'); | |
if (id != null && id != '') { | |
window.location.assign(medium + id); | |
} else { | |
window.location.assign("https://developers.line.biz"); | |
} |
本範例使用 PHPMailer (http://sourceforge.net/projects/phpmailer/) 發送 email。 | |
首先需要注意的是,下載時有可能讓人困惑,我下載的是 http://sourceforge.net/projects/phpmailer/files/phpmailer%20for%20php5_6/PHPMailer%20v5.1/ 這個版本。 | |
執行方式:使用 command line php 直接執行 `$ php ezgmail.php` | |
範例中包含設定方式、訊息樣板 (msg)、簡單樣板引擎 (fill_template)、名單的 parser (parse_name_list_tsv)與自動根據名單發信的範例,皆相當容易修改。 | |
需注意的是,Gmail 有發送郵件相關的限制,若超過限制,帳號會被暫時停用一天。 |