Go Back  DVD Talk Forum > Feedback > Forum Feedback and Support
Reload this Page >

Why not just fix the site?

Community
Search
Forum Feedback and Support Post forum feedback and related problems, here.

Why not just fix the site?

Thread Tools
 
Search this Thread
 
Old 02-08-18, 05:02 PM
  #101  
DVD Talk Legend
 
Norm de Plume's Avatar
 
Join Date: Dec 2000
Location: Toronto
Posts: 20,047
Received 799 Likes on 567 Posts
Re: Why not just fix the site?

I can confirm that I do have 400 now. Thanks, IBJoel.
Old 02-08-18, 05:20 PM
  #102  
DVD Talk Godfather
 
davidh777's Avatar
 
Join Date: Oct 2003
Location: Home of 2013 NFL champion Seahawks
Posts: 52,705
Received 1,026 Likes on 846 Posts
Re: Why not just fix the site?

And I'm up to 1000. Thanks!
Old 02-28-18, 07:01 AM
  #103  
DVD Talk Hero
 
Nick Danger's Avatar
 
Join Date: Mar 2001
Location: Albuquerque
Posts: 30,650
Received 1,472 Likes on 936 Posts
Re: Why not just fix the site?

Originally Posted by IBtyen
Instead of removing these blank threads, can you alert us in this thread or send one of us a PM? It will help us to have a live example so we can take it to our tech team.
https://forum.dvdtalk.com/dvd-review...l#post13279426
Old 08-05-18, 07:34 AM
  #104  
DVD Talk Hero
 
Nick Danger's Avatar
 
Join Date: Mar 2001
Location: Albuquerque
Posts: 30,650
Received 1,472 Likes on 936 Posts
Re: Why not just fix the site?

Originally Posted by IBtyen
Instead of removing these blank threads, can you alert us in this thread or send one of us a PM? It will help us to have a live example so we can take it to our tech team.
https://forum.dvdtalk.com/dvd-review...l#post13384255
Old 08-06-18, 03:59 PM
  #105  
Administrator
 
Join Date: Sep 2015
Posts: 3,022
Received 1,069 Likes on 622 Posts
Re: Why not just fix the site?

Thanks Nick, I've deleted those threads.
Old 09-03-18, 06:31 AM
  #106  
DVD Talk Hero
 
Nick Danger's Avatar
 
Join Date: Mar 2001
Location: Albuquerque
Posts: 30,650
Received 1,472 Likes on 936 Posts
Re: Why not just fix the site?

Originally Posted by IBJoel
Thanks Nick, I've deleted those threads.
Have you addressed the underlying problem?

https://forum.dvdtalk.com/dvd-review...l#post13400886
Old 09-03-18, 07:16 AM
  #107  
DVD Talk Reviewer/ Admin
 
Adam Tyner's Avatar
 
Join Date: Sep 1999
Location: Greenville, South Cackalack
Posts: 28,842
Received 1,889 Likes on 1,241 Posts
Re: Why not just fix the site?

Originally Posted by Nick Danger
Have you addressed the underlying problem?

https://forum.dvdtalk.com/dvd-review...l#post13400886
My copy of the codebase is extremely old, but it's a simple fix. In login/post.php, instead of:

Code:
  if (is_array($dailyReviews))
  {
     ... 
  }
Change it to:

Code:
  if (is_array($dailyReviews) && count($dailyReviews))
  {
     ... 
  }
  else
  {
     die("Nothing to post!\n");

     // Or, alternatively, just a plain ol' exit;
  }
I get the sense that the site and forum are what they are, and unless something truly critical is getting in the way of usability, it's not going to be updated or fixed.

Last edited by Adam Tyner; 09-03-18 at 07:31 AM.
Old 09-03-18, 07:17 AM
  #108  
Challenge Guru & Comic Nerd
 
Trevor's Avatar
 
Join Date: Apr 1999
Location: spiritually, Minnesota
Posts: 36,891
Received 680 Likes on 456 Posts
Re: Why not just fix the site?

Why are we worried about fixing a non-problem? The blank threads are actually useful, verifying that there are no new reviews that morning.
Old 09-03-18, 07:21 AM
  #109  
DVD Talk Reviewer/ Admin
 
Adam Tyner's Avatar
 
Join Date: Sep 1999
Location: Greenville, South Cackalack
Posts: 28,842
Received 1,889 Likes on 1,241 Posts
Re: Why not just fix the site?

Originally Posted by Trevor
Why are we worried about fixing a non-problem? The blank threads are actually useful, verifying that there are no new reviews that morning.
That could be better accounted for as well. Again, instead of:

Code:
  if (is_array($dailyReviews))
  {
       ...
  }
Use:

Code:
  if (is_array($dailyReviews) && count($dailyReviews))
  {
       ...
  }
  else
  {
       $post = "No new reviews have been published today.  Sorry!";
  }
Old 09-03-18, 08:18 AM
  #110  
Challenge Guru & Comic Nerd
 
Trevor's Avatar
 
Join Date: Apr 1999
Location: spiritually, Minnesota
Posts: 36,891
Received 680 Likes on 456 Posts
Re: Why not just fix the site?

Why can’t we just put Adam in charge?
Old 09-03-18, 09:06 AM
  #111  
Moderator
Thread Starter
 
story's Avatar
 
Join Date: Mar 2000
Location: Hope.
Posts: 13,977
Received 1,933 Likes on 1,141 Posts
Re: Why not just fix the site?

"Why not just fix the site? (Why can’t we just put Adam in charge?)" could make for a good thread title change.
Old 09-03-18, 10:58 AM
  #112  
DVD Talk Hall of Fame
 
Join Date: Apr 2001
Location: East of Ypsi
Posts: 8,905
Received 5 Likes on 5 Posts
Re: Why not just fix the site?

Originally Posted by Trevor
Why can’t we just put Adam in charge?
I’ve been thinking this for years.
Old 09-03-18, 10:58 AM
  #113  
DVD Talk Legend
 
hdnmickey's Avatar
 
Join Date: Jul 2014
Location: Cygnus
Posts: 12,524
Likes: 0
Received 2 Likes on 2 Posts
Re: Why not just fix the site?

Originally Posted by Trevor
Why can’t we just put Adam in charge?
Far too much liberal bias?
Old 11-18-18, 06:16 AM
  #114  
DVD Talk Hero
 
Nick Danger's Avatar
 
Join Date: Mar 2001
Location: Albuquerque
Posts: 30,650
Received 1,472 Likes on 936 Posts
Re: Why not just fix the site?

Originally Posted by Trevor
Why are we worried about fixing a non-problem? The blank threads are actually useful, verifying that there are no new reviews that morning.
It was an experiment to see how responsive IB would be. In December 2017, IByen asked for examples so they could fix a bug that Adam says can be handled with one line of code. Today, eleven months later, another blank thread was posted.

https://forum.dvdtalk.com/dvd-review...l#post13445934

I'm done with the experiment.
Old 11-18-18, 07:58 AM
  #115  
Challenge Guru & Comic Nerd
 
Trevor's Avatar
 
Join Date: Apr 1999
Location: spiritually, Minnesota
Posts: 36,891
Received 680 Likes on 456 Posts
Re: Why not just fix the site?

Yep, dozens of those blank threads in the past year. There are almost a dozen blank threads in that forum’s first page right now. Possible easy and quite useful fix offered by Adam over two months ago. IB response?
Old 11-19-18, 09:56 AM
  #116  
Administrator
 
Join Date: Sep 2015
Posts: 3,022
Received 1,069 Likes on 622 Posts
Re: Why not just fix the site?

The blank threads are an indication of no new reviews being posted for that day, just as Trevor said. The reason it has not been "fixed" is because it is not a bug.
Old 11-19-18, 10:01 AM
  #117  
DVD Talk Reviewer/ Admin
 
Adam Tyner's Avatar
 
Join Date: Sep 1999
Location: Greenville, South Cackalack
Posts: 28,842
Received 1,889 Likes on 1,241 Posts
Re: Why not just fix the site?

As the person who originally wrote that script, it is a bug. The blank threads don’t even have titles to click on.
Old 11-19-18, 10:02 AM
  #118  
DVD Talk Legend
 
Join Date: Jan 2001
Posts: 19,538
Received 924 Likes on 683 Posts
Re: Why not just fix the site?

Originally Posted by IBJoel
The blank threads are an indication of no new reviews being posted for that day, just as Trevor said. The reason it has not been "fixed" is because it is not a bug.
So you're saying they're a "feature"?
Old 11-19-18, 10:10 AM
  #119  
Challenge Guru & Comic Nerd
 
Trevor's Avatar
 
Join Date: Apr 1999
Location: spiritually, Minnesota
Posts: 36,891
Received 680 Likes on 456 Posts
Re: Why not just fix the site?

The new definition of ‘facts’ is having a trickle down effect on the country. A way to fix it was detailed by Adam months ago. It’d be a nice fix for the community, and looks pretty simple. Can you either fix it, or tell us that some technical reason prohibits it?
Old 11-19-18, 10:16 AM
  #120  
DVD Talk Reviewer/ Admin
 
Adam Tyner's Avatar
 
Join Date: Sep 1999
Location: Greenville, South Cackalack
Posts: 28,842
Received 1,889 Likes on 1,241 Posts
Re: Why not just fix the site?

I can stop the blank threads from being created. The cron was wiped out during a server change a few years back, so I’m executing these scripts remotely from my own server. I can’t update the code, but I control when things run. I can have a script check the RSS feed for new reviews and only execute the daily review script when needed.

That won’t fix the other issue where Ultra HD Blu-ray reviews don’t appear in the list. Maybe I can write something to simulate a login and create these threads differently.
Old 11-19-18, 10:19 AM
  #121  
DVD Talk Legend
 
Join Date: Jan 2001
Posts: 19,538
Received 924 Likes on 683 Posts
Re: Why not just fix the site?

That seems like a lot of effort for something that isn't a bug.
Old 11-19-18, 12:19 PM
  #122  
DVD Talk Reviewer/ Admin
 
Adam Tyner's Avatar
 
Join Date: Sep 1999
Location: Greenville, South Cackalack
Posts: 28,842
Received 1,889 Likes on 1,241 Posts
Re: Why not just fix the site?

I have an improved daily recap system in place now.

Example with review content
Example without review content
Old 11-19-18, 12:42 PM
  #123  
Challenge Guru & Comic Nerd
 
Trevor's Avatar
 
Join Date: Apr 1999
Location: spiritually, Minnesota
Posts: 36,891
Received 680 Likes on 456 Posts
Re: Why not just fix the site?

Thank you Adam. Joel, pay the man.
Old 11-19-18, 12:48 PM
  #124  
Premium Member
 
The Cow's Avatar
 
Join Date: Jan 2000
Location: Grazing in a field somewhere...
Posts: 23,654
Received 708 Likes on 469 Posts
Re: Why not just fix the site?

While we're at it... There's a nice "Buy Stuff Here" link at the top-right corner of the site (link below). Most of the links on that page are dead and have been for a long time. If there are actually some affiliate links that work, it would be nice to update that page (get rid of the dead crap), and maybe promote that once in a while to help with revenue.

https://www.dvdtalk.com/support.html
Old 11-20-18, 12:01 PM
  #125  
Administrator
 
Join Date: Sep 2015
Posts: 3,022
Received 1,069 Likes on 622 Posts
Re: Why not just fix the site?

Originally Posted by The Cow
While we're at it... There's a nice "Buy Stuff Here" link at the top-right corner of the site (link below). Most of the links on that page are dead and have been for a long time. If there are actually some affiliate links that work, it would be nice to update that page (get rid of the dead crap), and maybe promote that once in a while to help with revenue.

https://www.dvdtalk.com/support.html
I'll go through those links today/tomorrow and let tech know which ones to remove. I also opened an official tech ticket for the zero reviews and 4K reviews issues, so that can be handled with a little more oomph.

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



Archive - Advertising - Cookie Policy - Privacy Statement - Terms of Service -

Copyright © 2024 MH Sub I, LLC dba Internet Brands. All rights reserved. Use of this site indicates your consent to the Terms of Use.