*Latest Youtube Woking Script* 10/08/2010

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    Originally posted by something else View Post
    The download stops sometimes and needs refreshing for it to continue
    Naaaah.....i reload my Nokia Browser 10Times But Not Even Single Time Video..get downloaded
    Even I try Every Format...

    Comment


      #17
      Warning: simplexml_load_file(http://gdata.youtube.com/feeds/mobil...os/RI-l0tK8Ok0) [function.simplexml-load-file]: failed to open stream: HTTP request failed! HTTP/1.0 503 Service Unavailable in /home/wapmaza/public_html/demo/ytube/details.php on line 177

      Warning: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load external entity "http://gdata.youtube.com/feeds/mobile/videos/RI-l0tK8Ok0" in /home/wapmaza/public_html/demo/ytube/details.php on line 177

      Fatal error: Call to a member function children() on a non-object in /home/wapmaza/public_html/demo/ytube/details.php on line 101
      Nice Effects

      Comment


        #18
        Please can you post the database..

        Comment


          #19
          Originally posted by jnetwensu View Post
          Please can you post the database..
          PHP Code:
          -- 
          -- 
          Table structure for table ``
          -- 

          CREATE TABLE `` (
            `` 
          int(100NOT NULL auto_increment,
            
          PRIMARY KEY  (``),
          ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=;

          -- 
          -- 
          Dumping data for table ``
          -- 

          INSERT INTO `` VALUES (''); 

          Comment


            #20
            Originally posted by something else View Post
            PHP Code:
            -- 
            -- 
            Table structure for table ``
            -- 

            CREATE TABLE `` (
              `` 
            int(100NOT NULL auto_increment,
              
            PRIMARY KEY  (``),
            ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=;

            -- 
            -- 
            Dumping data for table ``
            -- 

            INSERT INTO `` VALUES (''); 

            when I try insert that it says this

            Error

            SQL query:

            --
            -- Table structure for table ``
            --
            CREATE TABLE `` (
            `` int( 100 ) NOT NULL AUTO_INCREMENT ,
            PRIMARY KEY ( `` ) ,
            ) ENGINE = MYISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT =1;



            MySQL said:
            #1103 - Incorrect table name ''

            sorry it seems im even a bigger newb than i thought

            Comment


              #21
              sorry that was a joke there is no database needed

              Comment


                #22
                Originally posted by jnetwensu View Post
                when I try insert that it says this

                Error

                SQL query:

                --
                -- Table structure for table ``
                --
                CREATE TABLE `` (
                `` int( 100 ) NOT NULL AUTO_INCREMENT ,
                PRIMARY KEY ( `` ) ,
                ) ENGINE = MYISAM DEFAULT CHARSET = latin1 AUTO_INCREMENT =1;



                MySQL said:
                #1103 - Incorrect table name ''

                sorry it seems im even a bigger newb than i thought

                its just the structure no database or table name mentioned on it since you asked as database structure some thing else as give it to you you didnt ask what database you want you just asked for structure.
                Nice Effects

                Comment


                  #23
                  lol funny funny hope you all laughed hard.. now help please lol why does it say this after i search something?

                  Warning: mysql_query() [function.mysql-query]: Access denied for user 'nobody'@'localhost' (using password: NO) in /home/findwap/public_html/ytube/search.php on line 39

                  Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /home/findwap/public_html/ytube/search.php on line 39

                  Comment


                    #24
                    Originally posted by jnetwensu View Post
                    lol funny funny hope you all laughed hard.. now help please lol why does it say this after i search something?

                    Warning: mysql_query() [function.mysql-query]: Access denied for user 'nobody'@'localhost' (using password: NO) in /home/findwap/public_html/ytube/search.php on line 39

                    Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /home/findwap/public_html/ytube/search.php on line 39


                    Hi there try inserting this

                    CREATE TABLE IF NOT EXISTS `search` (
                    `id` int(100) NOT NULL auto_increment,
                    `keyword` varchar(100) NOT NULL default '',
                    PRIMARY KEY (`id`)
                    ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;

                    --
                    -- Dumping data for table `search`
                    --

                    and make sure you have entered the config details correctly on config.php

                    regards.
                    Last edited by pretend; 10.08.10, 21:48.
                    Nice Effects

                    Comment


                      #25
                      Thank you very much it works

                      Comment


                        #26
                        still working right now?..
                        com site: http://vampist.net
                        download site: http://wapdloads.net
                        fb: http://www.facebook.com/pmplx

                        Comment


                          #27
                          details.php
                          Search header("Content-Disposition: attachment; filename

                          Add on TOP
                          Code:
                                header("Pragma: public");
                                header("Expires: 0");
                                header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
                                header("Cache-Control: public"); 
                                header("Content-Description: File Transfer");

                          Add at buttom
                          Code:
                               header("Content-Transfer-Encoding: binary");

                          Sample

                          Code:
                                $fu = "$vn-(Coding-talk.com).3gp";
                                $fsize = filesize($fu);
                                header("Pragma: public");
                                header("Expires: 0");
                                header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
                                header("Cache-Control: public"); 
                                header("Content-Description: File Transfer");
                                header("Content-Type: video/3gp");  
                                header("Content-Disposition: attachment; filename=\"$vn-(Coding-talk.com).3gp\""); 
                                header("Content-Transfer-Encoding: binary");
                                header("Content-Length: " . $fsize);
                                echo file_get_contents("$vn-(Coding-talk.com).3gp");
                          If i know where the right link is i will get the file size from that link
                          Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
                          Visit: WapMasterz Coming Back Soon!
                          _______
                          SCRIPTS FOR SALE BY SUBZERO
                          Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
                          FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
                          _______
                          Info & Tips
                          php.net
                          w3schools.com

                          Comment


                            #28
                            whats the use of config.php in this script????????????????

                            Comment


                              #29
                              it adds last search thing lol
                              Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
                              Visit: WapMasterz Coming Back Soon!
                              _______
                              SCRIPTS FOR SALE BY SUBZERO
                              Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
                              FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
                              _______
                              Info & Tips
                              php.net
                              w3schools.com

                              Comment


                                #30
                                script is work

                                this is working script, i using free host.

                                Comment

                                Working...
                                X