Don't recommend this script

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #515778
    BOGDAN
    Participant

      Hey,
      I don’t recommend this script. It’s posting NextScript ad.
      I sent a ticket, but they didn’t answer so ….
      https://imgur.com/a/EzCbY

      #515779
      Hil
      Participant

        The image posted is too small.
        Can you post a larger image and highlight the place where you see the AD

        #515781
        BOGDAN
        Participant

          NextScript posting ads on my google plus wall.
          https://imgur.com/a/iIQWF

          #515798
          NextScripts.com
          Participant

            Please DO NOT CONFUSE PEOPLE!

            Nextscripts SNAP does not post any NextScripts ads.

            You just used our demo code that has a demo link to our site. Please change that link to your own or remove it

            #515893
            BOGDAN
            Participant

              No I don’t
              this is my code…

              $url = $post->getUrl();
              $nt = new \nxsAPI_GP();
              $loginError = $nt->connect(’email@email.com’, ‘pass’);
              if (!$loginError) {
              $nt->postGP($post->getTitle(), $url, ‘102714641469955361550’);
              }

              #515894
              BOGDAN
              Participant

                And I know for sure that I don’t have your url in my database.

                #515920
                NextScripts.com
                Participant

                  and what exactly function getUrl() does????

                  Please change the code to

                  $url = ‘https://www.foxnews.com’;
                  $nt = new nxsAPI_GP();
                  $loginError = $nt->connect(’email@email.com’, ‘pass’);
                  if (!$loginError) {
                  $nt->postGP(‘FOX NEWS SITE’, $url, ‘102714641469955361550’);
                  }

                  and watch the Fox News link shared on your G+ page.

                  Then please check your getUrl function

                  #516083
                  BOGDAN
                  Participant

                    Im using symfony so getUrl(doctrine function) calling url column from database…. And im sure in database I dont have netscripts url

                    #516084
                    BOGDAN
                    Participant

                      $posts = $em->getRepository(‘WebAdminBundle:SchedulePost’)->findBy([‘isPosted’ => false]);
                      foreach ($posts as $post) {
                      $date = $post->getPostDate()->format(‘U’);
                      $url = $post->getUrl();
                      if ($date <= date(‘U’)) {
                      $nt = new \nxsAPI_GP();
                      $loginError = $nt->connect(’email’, ‘pass’);
                      if (!$loginError) {
                      $nt->postGP($post->getTitle(), $url, ‘102714641469955361550’);
                      }
                      $em->remove($post);
                      $em->flush();
                      }
                      }

                      #516180
                      NextScripts.com
                      Participant

                        Have you tried my code with foxnews link?

                        What did it share foxnews.com or nextscripts.com?

                      Viewing 10 posts - 1 through 10 (of 10 total)
                      • You must be logged in to reply to this topic.