Gallery problem

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

    Gallery problem

    On have a gallery on my site, the problem i have is when i upload it, the image on the site doesn't appear, when i go and check in my FTP the image has been loaded correctly and is in there. Does anyone know how to fix this.


    thanks

    #2
    check chmod of that uploaded pic... i think its automatic chmod is protected 4 viewing....
    what i do is this
    PHP Code:
    @chmod ($file0644); 
    sigpiceeeeerrr....

    Comment


      #3
      ahh i see now, it goes in as chmod 600 where do i put that code?

      Comment


        #4
        in your upload.php file...
        or whatever its called...
        sigpiceeeeerrr....

        Comment


          #5
          ok try'd that and didn't work

          Comment


            #6
            watch out for variable $file

            $file = handle your just uploaded file (pic.gif)

            @chmod ($file, 0644);

            and also watch where you placed it...


            it was troubling me for some time...but at the end it was easy lol
            sigpiceeeeerrr....

            Comment

            Working...
            X