vps server changes
This commit is contained in:
@@ -11,12 +11,12 @@ use App\Http\Controllers\Controller;
|
|||||||
class ReportController extends Controller
|
class ReportController extends Controller
|
||||||
{
|
{
|
||||||
|
|
||||||
private $fromMail = "otter@w0bm.com";
|
private $fromMail = "bullshit@w0bm.com";
|
||||||
private $fromName = "w0bm";
|
private $fromName = "w0bm";
|
||||||
private $toMail = "admin@w0bm.com";
|
private $toMail = "admin@w0bm.com";
|
||||||
private $toName = "w0bm";
|
private $toName = "w0bm";
|
||||||
private $subject = "webm reported";
|
private $subject = "webm reported";
|
||||||
private $baseURL = "http://w0bm.com/";
|
private $baseURL = "https://w0bm.com/";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Made by klee
|
* Made by klee
|
||||||
@@ -49,7 +49,7 @@ class ReportController extends Controller
|
|||||||
"to" => array(
|
"to" => array(
|
||||||
array("name" => 'admin@w0bm.com', "email" => 'admin@w0bm.com')
|
array("name" => 'admin@w0bm.com', "email" => 'admin@w0bm.com')
|
||||||
),
|
),
|
||||||
"from_email" => 'otter@w0bm.com',
|
"from_email" => 'bullshit@w0bm.com',
|
||||||
"from_name" => 'from w0bm',
|
"from_name" => 'from w0bm',
|
||||||
"subject" => 'the subject',
|
"subject" => 'the subject',
|
||||||
"track_opens" => true,
|
"track_opens" => true,
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 180 KiB |
@@ -164,7 +164,7 @@ public function tesThumb() {
|
|||||||
set_time_limit(9899999999999999);
|
set_time_limit(9899999999999999);
|
||||||
$dat = $this->file;
|
$dat = $this->file;
|
||||||
#$in = public_path() . "/b"; // webm-input
|
#$in = public_path() . "/b"; // webm-input
|
||||||
$in = "/home/sirx/web/devw0bm/w0bm.com/public/b";
|
$in = "/home/w0bm/w0bm/public/b";
|
||||||
$out = public_path() . "/thumbs/beta"; //thumb-output
|
$out = public_path() . "/thumbs/beta"; //thumb-output
|
||||||
$tmpdir = str_replace("public", "app/Http/Controllers/tmp", public_path());
|
$tmpdir = str_replace("public", "app/Http/Controllers/tmp", public_path());
|
||||||
|
|
||||||
@@ -192,7 +192,7 @@ public function blurryThumb() {
|
|||||||
set_time_limit(9899999999999999);
|
set_time_limit(9899999999999999);
|
||||||
$dat = $this->file;
|
$dat = $this->file;
|
||||||
#$in = public_path() . "/b"; // webm-input
|
#$in = public_path() . "/b"; // webm-input
|
||||||
$in = "/home/sirx/web/devw0bm/w0bm.com/public/b";
|
$in = "/home/w0bm/w0bm/public/b";
|
||||||
$out = public_path() . "/thumbs/blurred"; //thumb-output
|
$out = public_path() . "/thumbs/blurred"; //thumb-output
|
||||||
$tmpdir = str_replace("public", "app/Http/Controllers/tmp", public_path());
|
$tmpdir = str_replace("public", "app/Http/Controllers/tmp", public_path());
|
||||||
|
|
||||||
|
@@ -54,7 +54,7 @@ return [
|
|||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
'from' => ['address' => 'otter@w0bm.com', 'name' => 'w0bm.com Staff'],
|
'from' => ['address' => 'bullshit@w0bm.com', 'name' => 'w0bm.com Staff'],
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
877
package-lock.json
generated
877
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -18,7 +18,7 @@
|
|||||||
<div class="main-item">
|
<div class="main-item">
|
||||||
<a href="/{{$video->id}}">
|
<a href="/{{$video->id}}">
|
||||||
{{-- MUSS UNBEDINGT NOCH ANGEPASST WERDEN!!! --}}
|
{{-- MUSS UNBEDINGT NOCH ANGEPASST WERDEN!!! --}}
|
||||||
@if(file_exists('/home/sirx/web/devw0bm/w0bm.com/public/thumbs/beta/'.$thumb.'.png'))
|
@if(file_exists('/home/w0bm/w0bm/public/thumbs/beta/'.$thumb.'.png'))
|
||||||
<img src="/thumbs/beta/{{$thumb}}.png">
|
<img src="/thumbs/beta/{{$thumb}}.png">
|
||||||
@else
|
@else
|
||||||
{{$video->tesThumb()}}
|
{{$video->tesThumb()}}
|
||||||
|
@@ -21,7 +21,7 @@
|
|||||||
<iframe src="https://w0bm.com/loop/index.html"></iframe>
|
<iframe src="https://w0bm.com/loop/index.html"></iframe>
|
||||||
@else
|
@else
|
||||||
<video id="video" loop controls preload="auto" crossorigin="anonymous">
|
<video id="video" loop controls preload="auto" crossorigin="anonymous">
|
||||||
<source src="/b{{ "/" . $video->file }}">
|
<source src="https://b.w0bm.com/b{{ "/" . $video->file }}">
|
||||||
<!-- rip fapple! <source src="//fapple.w0bm.com/{{str_replace(".webm","",$video->file)}}.mp4"> -->
|
<!-- rip fapple! <source src="//fapple.w0bm.com/{{str_replace(".webm","",$video->file)}}.mp4"> -->
|
||||||
</video>
|
</video>
|
||||||
@endif
|
@endif
|
||||||
|
@@ -7,8 +7,7 @@
|
|||||||
?>
|
?>
|
||||||
<div class="main-item">
|
<div class="main-item">
|
||||||
<a href="/{{$video->id}}">
|
<a href="/{{$video->id}}">
|
||||||
@if(file_exists('/home/sirx/web/devw0bm/w0bm.com/public/thumbs/beta/'.$thumb.'.png'))
|
@if(file_exists('/home/w0bm/w0bm/public/thumbs/beta/'.$thumb.'.png'))
|
||||||
|
|
||||||
<img src="/thumbs/beta/{{$thumb}}.png">
|
<img src="/thumbs/beta/{{$thumb}}.png">
|
||||||
|
|
||||||
@else
|
@else
|
||||||
|
@@ -7,8 +7,7 @@
|
|||||||
?>
|
?>
|
||||||
<div class="main-item">
|
<div class="main-item">
|
||||||
<a href="/{{$video->id}}">
|
<a href="/{{$video->id}}">
|
||||||
@if(file_exists('/home/sirx/web/devw0bm/w0bm.com/public/thumbs/beta/'.$thumb.'.png'))
|
@if(file_exists('/home/w0bm/w0bm/public/thumbs/beta/'.$thumb.'.png'))
|
||||||
|
|
||||||
<img src="/thumbs/beta/{{$thumb}}.png">
|
<img src="/thumbs/beta/{{$thumb}}.png">
|
||||||
|
|
||||||
@else
|
@else
|
||||||
|
@@ -7,8 +7,7 @@
|
|||||||
?>
|
?>
|
||||||
<div class="main-item">
|
<div class="main-item">
|
||||||
<a href="/{{$video->id}}">
|
<a href="/{{$video->id}}">
|
||||||
@if(file_exists('/home/sirx/web/devw0bm/w0bm.com/public/thumbs/beta/'.$thumb.'.png'))
|
@if(file_exists('/home/w0bm/w0bm/public/thumbs/beta/'.$thumb.'.png'))
|
||||||
|
|
||||||
<img src="/thumbs/beta/{{$thumb}}.png">
|
<img src="/thumbs/beta/{{$thumb}}.png">
|
||||||
|
|
||||||
@else
|
@else
|
||||||
|
@@ -18,8 +18,8 @@
|
|||||||
<div class="main-item">
|
<div class="main-item">
|
||||||
<a href="/{{$video->id}}">
|
<a href="/{{$video->id}}">
|
||||||
{{-- MUSS UNBEDINGT NOCH ANGEPASST WERDEN!!! --}}
|
{{-- MUSS UNBEDINGT NOCH ANGEPASST WERDEN!!! --}}
|
||||||
@if(file_exists('/home/sirx/web/devw0bm/w0bm.com/public/thumbs/beta/'.$thumb.'.png'))
|
@if(file_exists('/home/w0bm/w0bm/public/thumbs/beta/'.$thumb.'.png'))
|
||||||
<img src="/thumbs/beta/{{$thumb}}.png">
|
<img src="/thumbs/beta/{{$thumb}}.png">
|
||||||
@else
|
@else
|
||||||
{{$video->tesThumb()}}
|
{{$video->tesThumb()}}
|
||||||
<img src="/thumbs/beta/{{$thumb}}.png">
|
<img src="/thumbs/beta/{{$thumb}}.png">
|
||||||
|
Reference in New Issue
Block a user