Jump to content

matthewb987

Member
  • Posts

    62
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Contact Methods

Profile Information

  • Gender
    Male

Recent Profile Visitors

438 profile views
  1. Thats but this is not on youtube its on another platform that does not have tha feature
  2. i added the path for php and everything but it doesnt work in powershell, works in cmd.
  3. Thanks. hopefully they will reach out now to get this resolved as we dont want people freeloading on our platform
  4. Thanks @LogicalDrmfor the response how can i tag some admins/ mods in this post so they can see it as i would rather not post the link on the site
  5. We offer this as a service to our customers it costs no more than $20 normally we also mod mice to let them charge wireless while not in use
  6. @Skiiwee29I did this a few months ago but not sure my emails are getting through. is there any other way to contact them ?
  7. Hi guys how can i contact a LMG staff member regarding a issue where someone is reuploading there content? Thanks in advanced matthew
  8. fix this issue by placing the code in a for each loop
  9. i am using this script https://github.com/laravelista/comments to create comments on my site but i cant seem to get it working any idea on what i am doing wrong Thanks in advanced I am getting the following error when i run @comments(['model' => $id]) ErrorException Attempt to read property "comments" on string (View: /var/www/html/resources/views/vendor/comments/components/comments.blade.php) my route : Route::get('/video/{creator}/{video}/{id}', [Videocontroller::class, 'viewvideo'])->middleware('App\Http\Middleware\Subscribed','auth'); my controller: `public function viewvideo($creator, $video, $id) { $videourl = Storage::url($video); return view("viewvideo", compact(['creator', 'video','id'])); }` my view: `<?php $title = DB::table('videos') ->where('url', '=', $creator.'/'.$video)->get(); DB::table('videos') ->where('url', '=', $creator.'/'.$video) ->increment('views', 1); $detect = new Mobile_Detect; if( $detect->isAndroidOS() ){ echo "android is not yet fully supported"; } ?> </x-slot> <div class="py-12"> <div class="max-w-7xl mx-auto sm:px-6 lg:px-8"> <div class="bg-white overflow-hidden shadow-sm sm:rounded-lg"> <div class="p-6 bg-white border-b border-gray-200"> @foreach($title as $t) <div class="video-title"><h2>{{$t->title}}</h2></div> <p> </p> <details> <summary>Description</summary> <?php echo $t->description; ?> Views: views; ?> @Endforeach @comments(['model' => $id]) </div> </div> </div> </div> `
  10. another way you can do this is to place the drives back in back up the data then reimport it when you have the new drives in in my opinion this is best as you still have 2 copies of the data
  11. go through the devices right click and check for update make sure windows is up to date first though that way you know any updates are genuine
×