I hereby claim:
- I am wmandai on github.
- I am wmandai (https://keybase.io/wmandai) on keybase.
- I have a public key ASBFkPa7PkUR5WCyP5FA57qhQmagPBATt-CnJapIJ_gKeAo
To claim this, I am signing this object:
| /** | |
| * Bootstrap any application services. | |
| * | |
| * @return void | |
| */ | |
| public function boot() | |
| { | |
| Component::macro('notify', function ($message, $title = '', $type = 'success') { | |
| $this->dispatchBrowserEvent('notify', ['message' => $message, 'title' => $title, 'type' => $type]); | |
| }); |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| namespace App\Http\Livewire\Forum; | |
| use Illuminate\Support\Facades\Auth; | |
| use Illuminate\Support\Facades\DB; | |
| use Livewire\WithPagination; | |
| use Livewire\Component; | |
| use App\Message; | |
| use App\User; | |
| class Chat extends Component |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration> | |
| <system.webServer> | |
| <rewrite> | |
| <rules> | |
| <rule name="Index"> | |
| <match url="^(.*)$" /> | |
| <conditions> | |
| <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> | |
| <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> |
| <?php | |
| // Add this to your config.php file | |
| if (stripos($_SERVER["REQUEST_URI"],'/controller/method') === FALSE) { | |
| $config['csrf_protection'] = TRUE; | |
| }else{ | |
| $config['csrf_protection'] = FALSE; | |
| } | |
| //the rest of the code |
| FROM php:7.2-fpm | |
| COPY app /var/www/ | |
| EXPOSE 9000 |
| <?php | |
| namespace App\Http\Livewire; | |
| use App\Contact; | |
| use Livewire\Component; | |
| class ContactSearchBar extends Component | |
| { | |
| public $query; |
| <?php | |
| use Livewire\Component; | |
| class Download extends Component | |
| { | |
| public function download() | |
| { | |
| // get the path to the file | |
| $path = ""; |
| <?php | |
| //check for referal links | |
| function referal() | |
| { | |
| $CI =& get_instance(); | |
| $cookie_value_set = $CI->input->cookie('_tm_ref', TRUE) ? $CI->input->cookie('_tm_ref', TRUE) : ''; | |
| if ($CI->input->get('ref', TRUE) AND $cookie_value_set == '') { | |
| // referred user so set cookie to ref=username | |
| $cookie = array( | |
| 'name' => 'ref', |
| Filename: /etc/apache2/sites-available/yoursite.conf | |
| <VirtualHost *:80> | |
| ServerAdmin youremail@yahoo.com | |
| ServerName yoursite.com | |
| ServerAlias www.yoursite.com | |
| DocumentRoot "/var/www/yoursite.com/public" | |
| <Directory /var/www/yoursite.com/public> | |
| Options Indexes FollowSymLinks MultiViews | |
| AllowOverride All |