Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. Open a file from server

Open a file from server

Scheduled Pinned Locked Moved Web Development
questionphphtmldatabasecom
30 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H hiral_shah

    Hi, Actually what I am doing is: 1> The user will upload a file to the server 2> I am storing that file information like, server path with file name and extension, associated text(show to the user by clicking on which it will show the file on that path that is stored for that text) 3> Now the another user wants to open that uploaded file so he will search by associated text and will get some link with them. 4> Now when he will click on some associated text, the path for that text will be there and the file should display over there or in another window to that user. upto 3rd point is working properly but 4th point is not. Hope you can get better idea from this what I want to do. I am waiting for your reply.:)

    B Offline
    B Offline
    Bradml
    wrote on last edited by
    #8

    Hmm, well when they file is uploaded could you not store the file type when they upload it?


    Brad Australian - Captain See Sharp on "Religion" any half intelligent person can come to the conclusion that pink unicorns do not exist.

    H 1 Reply Last reply
    0
    • B Bradml

      Hmm, well when they file is uploaded could you not store the file type when they upload it?


      Brad Australian - Captain See Sharp on "Religion" any half intelligent person can come to the conclusion that pink unicorns do not exist.

      H Offline
      H Offline
      hiral_shah
      wrote on last edited by
      #9

      well I can store the type too.

      B 1 Reply Last reply
      0
      • H hiral_shah

        well I can store the type too.

        B Offline
        B Offline
        Bradml
        wrote on last edited by
        #10

        Wit, now i think i know what the problem is: is it that you don't know how to get the file for the user?


        Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.

        H 2 Replies Last reply
        0
        • B Bradml

          Wit, now i think i know what the problem is: is it that you don't know how to get the file for the user?


          Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.

          H Offline
          H Offline
          hiral_shah
          wrote on last edited by
          #11

          :-D You got the problem that I am having

          1 Reply Last reply
          0
          • B Bradml

            Wit, now i think i know what the problem is: is it that you don't know how to get the file for the user?


            Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.

            H Offline
            H Offline
            hiral_shah
            wrote on last edited by
            #12

            Have you any idea how can I get the file from server and show it to the user as per its format???

            B 1 Reply Last reply
            0
            • H hiral_shah

              Have you any idea how can I get the file from server and show it to the user as per its format???

              B Offline
              B Offline
              Bradml
              wrote on last edited by
              #13

              Ok do you mean just send it to them as if they have requested it from the server normally or do you mean in a way that the browser will save it to disk?


              Brad Australian - Captain See Sharp on "Religion" any half intelligent person can come to the conclusion that pink unicorns do not exist.

              H 1 Reply Last reply
              0
              • B Bradml

                Ok do you mean just send it to them as if they have requested it from the server normally or do you mean in a way that the browser will save it to disk?


                Brad Australian - Captain See Sharp on "Religion" any half intelligent person can come to the conclusion that pink unicorns do not exist.

                H Offline
                H Offline
                hiral_shah
                wrote on last edited by
                #14

                I want that dialogbox that will ask the user to save or open the file he is asking for. The dialogbox that is appears for normally we are downloading some attachment from the mail which asking to open file temporary or want to save it.

                B 1 Reply Last reply
                0
                • H hiral_shah

                  I want that dialogbox that will ask the user to save or open the file he is asking for. The dialogbox that is appears for normally we are downloading some attachment from the mail which asking to open file temporary or want to save it.

                  B Offline
                  B Offline
                  Bradml
                  wrote on last edited by
                  #15

                  The code I gave you before (Content-disposition) will do that for you.


                  Brad Australian - Captain See Sharp on "Religion" any half intelligent person can come to the conclusion that pink unicorns do not exist.

                  H 1 Reply Last reply
                  0
                  • B Bradml

                    The code I gave you before (Content-disposition) will do that for you.


                    Brad Australian - Captain See Sharp on "Religion" any half intelligent person can come to the conclusion that pink unicorns do not exist.

                    H Offline
                    H Offline
                    hiral_shah
                    wrote on last edited by
                    #16

                    Its give me an error "Warning: Cannot modify header information - headers already sent" on following line, header("Content-type: {$fileType}"); do you have any alternative??

                    B 1 Reply Last reply
                    0
                    • H hiral_shah

                      Its give me an error "Warning: Cannot modify header information - headers already sent" on following line, header("Content-type: {$fileType}"); do you have any alternative??

                      B Offline
                      B Offline
                      Bradml
                      wrote on last edited by
                      #17

                      Ok this error is because you have not started the document with the <?php tag. Although this is a common mistake it is made by many people. Make sure there is no blank space in the file before the php tag and make sure that you don't echo or print anything to the browser before the header function executes.


                      Brad Australian - Captain See Sharp on "Religion" any half intelligent person can come to the conclusion that pink unicorns do not exist.

                      H 1 Reply Last reply
                      0
                      • B Bradml

                        Ok this error is because you have not started the document with the <?php tag. Although this is a common mistake it is made by many people. Make sure there is no blank space in the file before the php tag and make sure that you don't echo or print anything to the browser before the header function executes.


                        Brad Australian - Captain See Sharp on "Religion" any half intelligent person can come to the conclusion that pink unicorns do not exist.

                        H Offline
                        H Offline
                        hiral_shah
                        wrote on last edited by
                        #18

                        Well I have used only one php file for the whole application So php tags are there as per they should. I just use cases for doing different things. I wrote : associatedText And there is no echo after the linked text is clicked.

                        B 2 Replies Last reply
                        0
                        • H hiral_shah

                          Well I have used only one php file for the whole application So php tags are there as per they should. I just use cases for doing different things. I wrote : associatedText And there is no echo after the linked text is clicked.

                          B Offline
                          B Offline
                          Bradml
                          wrote on last edited by
                          #19

                          can you please email me the source code so i can see what is going on.


                          Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.

                          B 1 Reply Last reply
                          0
                          • H hiral_shah

                            Well I have used only one php file for the whole application So php tags are there as per they should. I just use cases for doing different things. I wrote : associatedText And there is no echo after the linked text is clicked.

                            B Offline
                            B Offline
                            Bradml
                            wrote on last edited by
                            #20

                            OK two problems that jump out at me from the scripts you sent is that you have a character before the first tag in the library and also you have a blank line at the end of it. Because of this it will send all headers down before you can modify them.


                            Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.

                            H 1 Reply Last reply
                            0
                            • B Bradml

                              can you please email me the source code so i can see what is going on.


                              Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.

                              B Offline
                              B Offline
                              Bradml
                              wrote on last edited by
                              #21

                              OK two problems that jump out at me from the scripts you sent is that you have a character before the first tag in the library and also you have a blank line at the end of it. Because of this it will send all headers down before you can modify them.


                              Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.

                              1 Reply Last reply
                              0
                              • B Bradml

                                OK two problems that jump out at me from the scripts you sent is that you have a character before the first tag in the library and also you have a blank line at the end of it. Because of this it will send all headers down before you can modify them.


                                Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.

                                H Offline
                                H Offline
                                hiral_shah
                                wrote on last edited by
                                #22

                                I can not open the file from server yet. Please tell me how can I open it??

                                -------------------------------------------------------------------------------------------------- Hiral Shah India If you think that my question is good enough and can be helpful for other then don't forget to vote. :)

                                B 1 Reply Last reply
                                0
                                • H hiral_shah

                                  I can not open the file from server yet. Please tell me how can I open it??

                                  -------------------------------------------------------------------------------------------------- Hiral Shah India If you think that my question is good enough and can be helpful for other then don't forget to vote. :)

                                  B Offline
                                  B Offline
                                  Bradml
                                  wrote on last edited by
                                  #23

                                  Ok I have been reading the function where you get data from the database. One thing that really strikes me is that you don't validate the data before you pass it to the database. This is incredibly important because otherwise people can execute any SQL commands they want (including stealing other people's files). Please go to http://www.phpsec.org[^] to learn more. I have now emailed you an updated copy of the script which should fix the problem you have but will not fix the security problem.


                                  Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.

                                  H B 7 Replies Last reply
                                  0
                                  • B Bradml

                                    Ok I have been reading the function where you get data from the database. One thing that really strikes me is that you don't validate the data before you pass it to the database. This is incredibly important because otherwise people can execute any SQL commands they want (including stealing other people's files). Please go to http://www.phpsec.org[^] to learn more. I have now emailed you an updated copy of the script which should fix the problem you have but will not fix the security problem.


                                    Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.

                                    H Offline
                                    H Offline
                                    hiral_shah
                                    wrote on last edited by
                                    #24

                                    With your changes if I am saving the file then it is giving me perfact result but as I choose Open option it is showing the result like: ÐÏࡱá>þÿ giþÿÿÿfÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ&yu ml;ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ&yu ml;ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿì¥Áq` ø¿óbjbjqPqP .2::óÿÿÿÿÿÿ¤HHHHHHHÐÔì+ì+ì+ì+,,4¤ ˜bjX,\,\,\,\,\,&‚, Ž,bbbbbbb$dhjf„=bH.\,\,..=bHH\,\,Rb000.²H\,H\,b0.b00 ^DHHß`\,L, P*ÍÎ\Çì+Ã.‚O_&bhb0˜bu_jîfE/ÄîfLß`îfHß`8–,Zð,@00-4d-­–,–,–,=b=b 0–,–,–,˜b....¤ ¤ ¤ ¤H¤¤ ¤ ¤ H\D ,ÌHHHHHHÿÿÿÿ Case Studies for abc.com Currently we have three cases in our web site. Case Study Format About the client Application target users Business sensitivity. System Before What the client want? The most important benefit we have is a satisfied client.   #RŽ–¨©¹ºÓü  , - . š ª ½ Ô Õ Û â æ ë     6 D G H I X Y Z óïëïçãëÙãÕãÑÍÑÉÅÁÑÕÉÕ½¹µ±µÑ±ÑɵŪ¹Õ¦’m&hS Çh¹lH56>*B*CJaJph™3f hCw‹56>*B*CJ aJ ph™3f&h¹lHhv”56>*B*CJ aJ ph™3fhv” hCw‹hCw‹h¹SdhöhCw‹hî7ñhU+h>\hdkàh«Zh•JÛhÅh¢{×h¢{×5>*h¢{×heBÕhÎh¢h6oh6oh6o5CJ$aJ$' !"#RSczŽ‘’“”•–¨©ºý. ] s ÷õõõõõõõíííèèèèèèèèèèààààà & FgdÅgd¢{× & FgdeBÕ$a$gd6oóýs ˆ « ½ Õ  6 7 8 9 : ; < = > ? @ A B C D E F G H Y Z ÷÷÷÷÷÷òòòòòòòòòòòòòòòòòòêågd¹lH & Fgdv”gdCw‹ & FgdÅZ a d  Ž   ‘ Ê Ë  † ‡ ˆ ‰ ± ² ³ À Á Â Ä Ú ìÚ̽µ­¥›ˆ„ˆ€ˆ€ˆ€rdrSKAhµ1hµ15>*hµ1hµ15 hGš56>*B*CJ aJ ph™3fhaWhaW6>*B*phÿhaWhGš6>*B*phÿhGšhÜZ% hGšhGšhághDû>*CJ aJ hághDû5>*h0{hDû5h8ÕhDû5hGšCJ aJ hS ÇhS Ç56>*CJaJh˜ƒh˜ƒ5CJ\aJ#hS ÇhS Ç56B*CJaJph™3f&hS ÇhS Ç56>*B* CJaJph€€Z Ž  Ë ² Á Â Û Ü # $   Äůר²¿)*úõõõõúúúíèßÚßßßÒÍĻĶgd¨bü„p^„pgd•2„ ^„ gd4Tgd¾y› & Fgd¾y›gdƒ6n„ ^„ gdƒ6ngd‘?½ & Fgd¹lHgdGšgd¹lHÚ Û Ü õ ù ! " # $ ´ Ó Ô Õ ÃÄÆÖרðøù')*?@AçùïâØÑÍÉžº¾º¾¶²¨¡¨–Ž–ƒ{–ƒ–wmf\U h‚p™h‚p™h‚p™5B*phÿ h‚p™h¨büh¨bü5B*phÿh¾y›h4TB*phh•2hM'ÒB*phhM'ÒB*phh•2h•2B*

                                    1 Reply Last reply
                                    0
                                    • B Bradml

                                      Ok I have been reading the function where you get data from the database. One thing that really strikes me is that you don't validate the data before you pass it to the database. This is incredibly important because otherwise people can execute any SQL commands they want (including stealing other people's files). Please go to http://www.phpsec.org[^] to learn more. I have now emailed you an updated copy of the script which should fix the problem you have but will not fix the security problem.


                                      Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.

                                      B Offline
                                      B Offline
                                      Bradml
                                      wrote on last edited by
                                      #25

                                      That is peculiar. There is one thing that jumps to mind, you haven't stated that the "Content-type" header is "application/pdf". Can you confirm if you have done this or not? You can check by stopping the file from going down and then printing the value of the $fileType variable. You could also try making sure that the file name ends in .pdf, this is very important on a windows machine.


                                      Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.

                                      1 Reply Last reply
                                      0
                                      • B Bradml

                                        Ok I have been reading the function where you get data from the database. One thing that really strikes me is that you don't validate the data before you pass it to the database. This is incredibly important because otherwise people can execute any SQL commands they want (including stealing other people's files). Please go to http://www.phpsec.org[^] to learn more. I have now emailed you an updated copy of the script which should fix the problem you have but will not fix the security problem.


                                        Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.

                                        B Offline
                                        B Offline
                                        Bradml
                                        wrote on last edited by
                                        #26

                                        That is peculiar. There is one thing that jumps to mind, you haven't stated that the "Content-type" header is "application/pdf". Can you confirm if you have done this or not? You can check by stopping the file from going down and then printing the value of the $fileType variable. You could also try making sure that the file name ends in .pdf, this is very important on a windows machine.


                                        Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.

                                        1 Reply Last reply
                                        0
                                        • B Bradml

                                          Ok I have been reading the function where you get data from the database. One thing that really strikes me is that you don't validate the data before you pass it to the database. This is incredibly important because otherwise people can execute any SQL commands they want (including stealing other people's files). Please go to http://www.phpsec.org[^] to learn more. I have now emailed you an updated copy of the script which should fix the problem you have but will not fix the security problem.


                                          Brad Australian - Christian Graus on "Best books for VBscript" A big thick one, so you can whack yourself on the head with it.

                                          B Offline
                                          B Offline
                                          Bradml
                                          wrote on last edited by
                                          #27

                                          That is peculiar. There is one thing that jumps to mind, you haven't stated that the "Content-type" header is "application/pdf". Can you confirm if you have done this or not? You can check by stopping the file from going down and then printing the value of the $fileType variable. You could also try making sure that the file name ends in .pdf, this is very important on a windows machine.


                                          Brad Australian - Bradml on "MVP Status" If this was posted in a programming board please rate my answer

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups