Remove ads, unlock a dark mode theme, and get other perks by upgrading your account. Experience the website the way it's meant to be.

General Questions Help • Page 5

Discussion in 'Help and Feedback' started by Jason Tate, Mar 14, 2016.

  1. ranner

    Newbie

    in the review section, which are the the options to rate an album beside "Highly Recommended", etc?
     
  2. Yep. Most of the first ones are obviously all the reviewer's favorite albums, so they're gonna be very highly skewed to the favorites.

    Highly Recommended / Recommended / Neutral / Do Not Recommend / Stay Away
     
    ranner likes this.
  3. PandaBear!

    Trusted Prestigious

    How do I get the 7 Dwarves trophy?! :crylaugh: Sorry if this is the wrong place to ask, but still...
     
  4. Timmiluvs

    I play video games fast Prestigious

    Snow White as one of your favorite films? Idk, just a guess :p

    There's a lot of hidden trophies for things as your favorites though, I do know that.
     
    Jason Tate and Dirty Sanchez like this.
  5. Gotta have 'Snow White and the Seven Dwarfs' as a favorite movie. ;-)
     
    Dirty Sanchez and PandaBear! like this.
  6. Matt Chylak

    I can always be better, so I'll always try. Supporter

  7. Yeah, I need to do something about that. I am not sure what the best solution is yet, but I have it on my list to tackle.
     
  8. FTank

    Prestigious Prestigious

    What about Superman? Haven't figured that one out yet...
     
  9. I don't think there's a Superman one off the top of my head. There's a :batman:
     
  10. FTank

    Prestigious Prestigious

    The "it's a bird, it's a plane" one is what I'm looking at.
     
  11. Gotta be in the "books" section. :superman:
     
  12. FTank

    Prestigious Prestigious

    Ah, ok. I had guessed that but wasn't totally sure haha
     
    Jason Tate likes this.
  13. It's a pinned/sticky thread, so it'll stay at the top of that forum.
     
    Jason Tate and s12sim like this.
  14. TotesAndGoats

    Bear

    How are you injecting your amazon affiliate account into every amazon link? That's a pretty neat trick.
     
  15. rogerroger

    Newbie

    Perhaps it's already been asked, but i searched and didn't find anything...with AP i always had an RSS feed to check out the threads that i wanted to read. Can I also set this up for chrous.fm?
     
  16. An RSS feed to follow a specific forum and see when new threads were created? You can add "index.rss" on the end of any forum and it'll give you the RSS feed for that forum. So for example, this forum:

    https://forum.chorus.fm/forum/help-and-feedback.15/index.rss

    That would be the RSS feed url.
     
  17. Just wrote a little plugin to add it:

    if (preg_match_all("/\[URL\](https?:\/\/(?:[A-z0-9\.]+)?amazon\.(br|ca|cn|com|co.jp|co.uk|de|es|fr|in|it)\/(?:.+))\[\/URL\]/iU", $text, $out, PREG_SET_ORDER))
            {
                for ($i=0;$i<count($out);$i++)
                {
                    $out[$i][2] = str_replace('.', '_', $out[$i][2]);
                    $associate_id = ${'associate_id_' . $out[$i][2]};
                    $out[$i][4] = $out[$i][1];
       
                    if ($associate_id && !empty($associate_id))
                    {
                        // Look for ASIN number
                        if (preg_match("/\/[A-Z0-9]{10}(\/)?/", $out[$i][1], $asin) && strpos($out[$i][1], '/review') === false)
                        {                       
                            if (substr($asin[0], -1) != '/')
                            { 
                                $asin[0] .= '/';
                            }
                           
                            // prepare co.jp 
                            if ($out[$i][2] == 'co_jp')
                            {
                                $out[$i][2] = 'co.jp';
                            }                       
                           
                            // prepare co.uk 
                            if ($out[$i][2] == 'co_uk')
                            {
                                $out[$i][2] = 'co.uk'    ;
                            }                       
                           
                            // check if /dp/
                            $pos = strpos($out[$i][1], '/dp/');
                           
                            if (is_numeric($pos))
                            {
                                // check if http:
                                $pos = strpos($out[$i][1], 'http:');
                               
                                if (is_numeric($pos))
                                {                           
                                    $out[$i][1] = 'http://www.amazon.' . $out[$i][2] . '/dp' . $asin[0] . '?tag=' . $associate_id;
                                }
                               
                                // check if https:
                                $pos = strpos($out[$i][1], 'https:');
                               
                                if (is_numeric($pos))
                                {                           
                                    $out[$i][1] = 'https://www.amazon.' . $out[$i][2] . '/dp' . $asin[0] . '?tag=' . $associate_id;
                                }                           
                            }
                           
                            // check if /gp/
                            $pos = strpos($out[$i][1], '/gp/');
                           
                            if (is_numeric($pos))
                            {
                                // check if http:
                                $pos = strpos($out[$i][1], 'http:');
                               
                                if (is_numeric($pos))
                                {                           
                                    $out[$i][1] = 'http://www.amazon.' . $out[$i][2] . '/gp/product' . $asin[0] . '?tag=' . $associate_id;
                                }
                               
                                // check if https:
                                $pos = strpos($out[$i][1], 'https:');
                               
                                if (is_numeric($pos))
                                {                           
                                    $out[$i][1] = 'https://www.amazon.' . $out[$i][2] . '/gp/product' . $asin[0] . '?tag=' . $associate_id;
                                }                           
                            }
                        }
                        else
                        {
                            // find exsisting affiliate id
                            $pos1 = stripos($out[$i][1], '&tag=');
                           
                            if (is_numeric($pos1))
                            {
                                // remove affiliate id
                                $out[$i][1] = substr($out[$i][1], 0, $pos1);
                            }
    
                            // add affiliate id
                            $out[$i][1] = $out[$i][1] . '&tag=' . $associate_id;
                        }
       
                        $replace_src[] = '[URL]' . $out[$i][4] . '[/URL]';
                        $replace_str[] = '[URL]' . $out[$i][1] . '[/URL]';
                    }
                }
            }
    
     
  18. TotesAndGoats

    Bear

    Does that just run inside of the forum software itself and run on every post that is submitted?

    I've also noticed that it does a lot of URL cleaning. It's a very slick operation IMO.
     
  19. colorlesscliche

    Trusted Prestigious

    Not sure if others have the same issue, but I continue to get signed out of Chorus on my iPhone. I don't ever clear history, cookies, etc. I have the "Keep me logged in box", but frequently, when I browse away from the site, and come back to it, I'm signed out. My password is cached there, so it's as simple as signing back in, but I typically go to the site see if I have any notifications, and leave.
     
  20. Have any ad blockers installed?
     
  21. colorlesscliche

    Trusted Prestigious

    Not on my iPhone, I do on Chrome on my PC.
     
  22. I'm not sure why it would be clearing that cookie then ... it shouldn't be. It doesn't on mine. Maybe try logging out, clearing everything, then logging back in with the checkbox checked.
     
  23. colorlesscliche

    Trusted Prestigious

    Good idea, will give that a shot. If nobody else is complaining, don't mind me - it's not hard to sign back in. Thanks Jason, keep up the good work.
     
    Jason Tate likes this.
  24. Meerkat

    human junk drawer Prestigious

    @Jason Tate I'm having an avatar crisis. My file is 397x397 and whenever I try and upload it it either says "no file chosen" or that the file is too big. SOS this is a severe emergency
     
  25. Make sure it's under 5mb. That's the other error you'd get.