473,804 Members | 2,747 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

get a pdf file from server

Hello.

Im new to php and i had experience in ASP.

IM trying to get a pdf file from a remote folder and what happens is
that opens a new page.

Here is the code:

<a href="./uploads/files/<?php echo $pdf ?>">Get File!</a>

The $pdf has the value from the field 'file_pdf' and the type is
varchar. Example: "test.pdf".

Any help? THanks in advance
Jun 27 '08 #1
10 1497
..oO(Pépê)
>IM trying to get a pdf file from a remote folder and what happens is
that opens a new page.

Here is the code:

<a href="./uploads/files/<?php echo $pdf ?>">Get File!</a>

The $pdf has the value from the field 'file_pdf' and the type is
varchar. Example: "test.pdf".
Looks OK.
>Any help? THanks in advance
What do you get? Does your browser display the PDF as plain text? Then
the server doesn't deliver it with the correct content type.

Micha
Jun 27 '08 #2
Thanks for the answer Micha.

Well, when i try it on my local server i go to another page and what i
see is a page with a link with the name of the pdf file.

How can i see if it is the correct content type?
Best Regards

On 19 Jun, 19:18, Michael Fesser <neti...@gmx.de wrote:
.oO(Pépê)
IM trying to get a pdf file from a remote folder and what happens is
that opens a new page.
Here is the code:
<a href="./uploads/files/<?php echo $pdf ?>">Get File!</a>
The $pdf has the value from the field *'file_pdf' and the type is
varchar. Example: "test.pdf".

Looks OK.
Any help? THanks in advance

What do you get? Does your browser display the PDF as plain text? Then
the server doesn't deliver it with the correct content type.

Micha
Jun 27 '08 #3
Thanks for the answer Micha.

Well, when i try it on my local server i go to another page and what i
see is a page with a link with the name of the pdf file.

How can i see if it is the correct content type?
Best Regards

On 19 Jun, 19:18, Michael Fesser <neti...@gmx.de wrote:
.oO(Pépê)
IM trying to get a pdf file from a remote folder and what happens is
that opens a new page.
Here is the code:
<a href="./uploads/files/<?php echo $pdf ?>">Get File!</a>
The $pdf has the value from the field *'file_pdf' and the type is
varchar. Example: "test.pdf".

Looks OK.
Any help? THanks in advance

What do you get? Does your browser display the PDF as plain text? Then
the server doesn't deliver it with the correct content type.

Micha
Jun 27 '08 #4
..oO(Pépê)
>Thanks for the answer Micha.

Well, when i try it on my local server i go to another page and what i
see is a page with a link with the name of the pdf file.
The script just prints a URL with the filename of the PDF. In the
resulting HTML source code it should look like

<a href="./uploads/files/test.pdf">Get File!</a>

You should check that. If for whatever reason the URL would be just

../uploads/files/

then you would probably get a server-generated index page containing a
list of the directory content. This would mean the problem is your PHP.
>How can i see if it is the correct content type?
If it's online, you can use <http://web-sniffer.net/>, for a local check
the "Live HTTP Headers" extension for Firefox is probably the easiest
way to examine the answer from the server. What matters is the Content-
Type header in the response, it describes of what type the returned data
is and how the browser should handle it. For PDFs the returned content
type should be "applicatio n/pdf", which will allow browsers to either
show the PDF inline (if a plugin is available) or to launch an external
viewer.

Micha
Jun 27 '08 #5
Yes, it shows

./uploads/files

What can i do to change that???

On 19 Jun, 22:16, Michael Fesser <neti...@gmx.de wrote:
.oO(Pépê)
Thanks for the answer Micha.
Well, when i try it on my local server i go to another page and what i
see is a page with a link with the name of the pdf file.

The script just prints a URL with the filename of the PDF. In the
resulting HTML source code it should look like

<a href="./uploads/files/test.pdf">Get File!</a>

You should check that. If for whatever reason the URL would be just

./uploads/files/

then you would probably get a server-generated index page containing a
list of the directory content. This would mean the problem is your PHP.
How can i see if it is the correct content type?

If it's online, you can use <http://web-sniffer.net/>, for a local check
the "Live HTTP Headers" extension for Firefox is probably the easiest
way to examine the answer from the server. What matters is the Content-
Type header in the response, it describes of what type the returned data
is and how the browser should handle it. For PDFs the returned content
type should be "applicatio n/pdf", which will allow browsers to either
show the PDF inline (if a plugin is available) or to launch an external
viewer.

Micha
Jun 27 '08 #6
On Jun 20, 9:57*am, Pépê <josemariabar.. .@gmail.comwrot e:
On 19 Jun, 22:16, Michael Fesser <neti...@gmx.de wrote:
.oO(Pépê)
>Thanks for the answer Micha.
>Well, when i try it on my local server i go to another page and what i
>see is a page with a link with the name of the pdf file.
The script just prints a URL with the filename of the PDF. In the
resulting HTML source code it should look like
<a href="./uploads/files/test.pdf">Get File!</a>
You should check that. If for whatever reason the URL would be just
./uploads/files/
then you would probably get a server-generated index page containing a
list of the directory content. This would mean the problem is your PHP.
>How can i see if it is the correct content type?
If it's online, you can use <http://web-sniffer.net/>, for a local check
the "Live HTTP Headers" extension for Firefox is probably the easiest
way to examine the answer from the server. What matters is the Content-
Type header in the response, it describes of what type the returned data
is and how the browser should handle it. For PDFs the returned content
type should be "applicatio n/pdf", which will allow browsers to either
show the PDF inline (if a plugin is available) or to launch an external
viewer.
MichaYes, it shows

./uploads/files

What can i do to change that???
The first thing to do is to please stop top posting (top posting
fixed).

Next I would suggest reporting the bug you have found as it is pretty
much impossible for the output to show:
./uploads/files
However, if I assume that you have made a copy'n'paste error and teh
output actually shows:
./uploads/files/
then you should look at why you are getting nothing output by your
echo statement, which is most likely because there is nothng in the
variable $pdf.

Since you do not tell us how $pdf is supposed to get populated, there
is not much more we can tell you.

BTW, <?php echo $pdf ?should really say <?php echo $pdf; ?>

Jun 27 '08 #7
On 20 Jun, 12:35, Captain Paralytic <paul_laut...@y ahoo.comwrote:
On Jun 20, 9:57*am, Pépê <josemariabar.. .@gmail.comwrot e:
On 19 Jun, 22:16, Michael Fesser <neti...@gmx.de wrote:
.oO(Pépê)
Thanks for the answer Micha.
Well, when i try it on my local server i go to another page and whati
see is a page with a link with the name of the pdf file.
The script just prints a URL with the filename of the PDF. In the
resulting HTML source code it should look like
<a href="./uploads/files/test.pdf">Get File!</a>
You should check that. If for whatever reason the URL would be just
./uploads/files/
then you would probably get a server-generated index page containing a
list of the directory content. This would mean the problem is your PHP.
How can i see if it is the correct content type?
If it's online, you can use <http://web-sniffer.net/>, for a local check
the "Live HTTP Headers" extension for Firefox is probably the easiest
way to examine the answer from the server. What matters is the Content-
Type header in the response, it describes of what type the returned data
is and how the browser should handle it. For PDFs the returned content
type should be "applicatio n/pdf", which will allow browsers to either
show the PDF inline (if a plugin is available) or to launch an external
viewer.
MichaYes, it shows
./uploads/files
What can i do to change that???

The first thing to do is to please stop top posting (top posting
fixed).

Next I would suggest reporting the bug you have found as it is pretty
much impossible for the output to show:
./uploads/files
However, if I assume that you have made a copy'n'paste error and teh
output actually shows:
./uploads/files/
then you should look at why you are getting nothing output by your
echo statement, which is most likely because there is nothng in the
variable $pdf.

Since you do not tell us how $pdf is supposed to get populated, there
is not much more we can tell you.

BTW, <?php echo $pdf ?should really say <?php echo $pdf; ?>
The problem was solved when i uploaded from local to internet....
In the internet it is running normally but locally dont..strange..
Jun 27 '08 #8
On Jun 20, 3:16*pm, Pépê <josemariabar.. .@gmail.comwrot e:
On 20 Jun, 12:35, Captain Paralytic <paul_laut...@y ahoo.comwrote:


On Jun 20, 9:57*am, Pépê <josemariabar.. .@gmail.comwrot e:
On 19 Jun, 22:16, Michael Fesser <neti...@gmx.de wrote:
.oO(Pépê)
>Thanks for the answer Micha.
>Well, when i try it on my local server i go to another page and what i
>see is a page with a link with the name of the pdf file.
The script just prints a URL with the filename of the PDF. In the
resulting HTML source code it should look like
<a href="./uploads/files/test.pdf">Get File!</a>
You should check that. If for whatever reason the URL would be just
./uploads/files/
then you would probably get a server-generated index page containing a
list of the directory content. This would mean the problem is your PHP.
>How can i see if it is the correct content type?
If it's online, you can use <http://web-sniffer.net/>, for a local check
the "Live HTTP Headers" extension for Firefox is probably the easiest
way to examine the answer from the server. What matters is the Content-
Type header in the response, it describes of what type the returneddata
is and how the browser should handle it. For PDFs the returned content
type should be "applicatio n/pdf", which will allow browsers to either
show the PDF inline (if a plugin is available) or to launch an external
viewer.
MichaYes, it shows
./uploads/files
What can i do to change that???
The first thing to do is to please stop top posting (top posting
fixed).
Next I would suggest reporting the bug you have found as it is pretty
much impossible for the output to show:
./uploads/files
However, if I assume that you have made a copy'n'paste error and teh
output actually shows:
./uploads/files/
then you should look at why you are getting nothing output by your
echo statement, which is most likely because there is nothng in the
variable $pdf.
Since you do not tell us how $pdf is supposed to get populated, there
is not much more we can tell you.
BTW, <?php echo $pdf ?should really say <?php echo $pdf; ?>

The problem was solved when i uploaded from local to internet....
In the internet it is running normally but locally dont..strange..- Hide quoted text -

- Show quoted text -
Well you do not show us where you get the value of $pdf from (as I
already said), but is it possible that you have register_global s set
on on the internet? If so you need to fix the program without
register_global s.
Jun 27 '08 #9
On 20 Jun, 15:35, Captain Paralytic <paul_laut...@y ahoo.comwrote:
On Jun 20, 3:16*pm, Pépê <josemariabar.. .@gmail.comwrot e:
On 20 Jun, 12:35, Captain Paralytic <paul_laut...@y ahoo.comwrote:
On Jun 20, 9:57*am, Pépê <josemariabar.. .@gmail.comwrot e:
On 19 Jun, 22:16, Michael Fesser <neti...@gmx.de wrote:
.oO(Pépê)
Thanks for the answer Micha.
Well, when i try it on my local server i go to another page and what i
see is a page with a link with the name of the pdf file.
The script just prints a URL with the filename of the PDF. In the
resulting HTML source code it should look like
<a href="./uploads/files/test.pdf">Get File!</a>
You should check that. If for whatever reason the URL would be just
./uploads/files/
then you would probably get a server-generated index page containing a
list of the directory content. This would mean the problem is your PHP.
How can i see if it is the correct content type?
If it's online, you can use <http://web-sniffer.net/>, for a local check
the "Live HTTP Headers" extension for Firefox is probably the easiest
way to examine the answer from the server. What matters is the Content-
Type header in the response, it describes of what type the returned data
is and how the browser should handle it. For PDFs the returned content
type should be "applicatio n/pdf", which will allow browsers to either
show the PDF inline (if a plugin is available) or to launch an external
viewer.
MichaYes, it shows
./uploads/files
What can i do to change that???
The first thing to do is to please stop top posting (top posting
fixed).
Next I would suggest reporting the bug you have found as it is pretty
much impossible for the output to show:
./uploads/files
However, if I assume that you have made a copy'n'paste error and teh
output actually shows:
./uploads/files/
then you should look at why you are getting nothing output by your
echo statement, which is most likely because there is nothng in the
variable $pdf.
Since you do not tell us how $pdf is supposed to get populated, there
is not much more we can tell you.
BTW, <?php echo $pdf ?should really say <?php echo $pdf; ?>
The problem was solved when i uploaded from local to internet....
In the internet it is running normally but locally dont..strange..- Hide quoted text -
- Show quoted text -

Well you do not show us where you get the value of $pdf from (as I
already said), but is it possible that you have register_global s set
on on the internet? If so you need to fix the program without
register_global s.
THe register_global s is set to off.

I get the value of $pdf from the database. Is that it?sorry but i dont
understand..new bie here
Jun 27 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

20
2516
by: CHIN | last post by:
Hi all.. here s my problem ( maybe some of you saw me on other groups, but i cant find the solution !! ) I have to upload a file to an external site, so, i made a .vbs file , that logins to the site, and then i have to select the file to upload.. i used sendkeys.. and i worked perfect.. BUT ... the computer must be locked for security ( obviusly ) reazons.. so..i think this probable solutions to unlock the computer and run the...
23
2914
by: Lamberti Fabrizio | last post by:
Hi all, I've to access to a network file from an asp pages. I've red a lot of things on old posts and on Microsoft article but I can't still solve my problem. I've got two server inside the same NT domain, each one has its own web server. The web server is always IIS 5.0.
1
2767
by: BW | last post by:
I am creating an upload/download function for an extranet site. Files will be uploaded to directory based upon the users login and associated project. The function works as long as I use "c:\Temp" as the directory. When I use any other hard coded directory or even Server.MapPath() the upload function fails and returns the error: "Exception has been thrown by the target of an invocation." Once I change the root directory to "c:\Temp",...
18
4362
by: Jen | last post by:
I'm using Microsoft's own VB.NET FTP Example: http://support.microsoft.com/default.aspx?scid=kb;en-us;832679 I can get the program to create directories, change directories, etc., but I can't get it to upload a file to the FTP server. I just get a "Cannot connect to remote server" error after this TRY: s = New Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp)
8
9765
by: Sarah | last post by:
I need to access some data on a server. I can access it directly using UNC (i.e. \\ComputerName\ShareName\Path\FileName) or using a mapped network drive resource (S:\Path\FileName). Here is my problem: my vb.net program has problems with UNC. If the UNC server is restarted or goes off-line, my VB.net program crashes. The code for UNC access to the file is included below and is put in the tick event of a form timer control running every...
4
4489
by: Matt Jensen | last post by:
Howdy I've got a rather strange issue occuring. I used forms based .NET authentication, although I'm also setting some session variables when people login. However, I've found when people use one of my webform pages which includes a button that pops up a window where you can upload files, if you upload files in this popup window, it seems to somehow clear out all of the session variables and the users get logged out. However, if...
9
2418
by: CGW | last post by:
I asked the question yesterday, but know better how to ask it, today: I'm trying to use the File.Copy method to copy a file from a client to server (.Net web app under IIS ). It looks to me that when I give a path like @"C:\holdfiles\myfile.txt" it looks on the server C drive. How do I pull from the client? Do I need a different class and/or method? Filestream? -- Thanks,
1
6513
by: laredotornado | last post by:
Hi, I'm using PHP 4.4.4 on Apache 2 on Fedora Core 5. PHP was installed using Apache's apxs and the php library was installed to /usr/local/php. However, when I set my "error_reporting" setting to be "E_ALL", notices are still not getting reported. The perms on my file are 664, with owner root and group root. The php.ini file is located at /usr/local/lib/php/php.ini. Any ideas why the setting does not seem to be having an effect? ...
4
6918
by: Vlad | last post by:
I am having problems using the file.create method within a function that is called when looping through an array of filepaths. If I call my function with a hardcoded file path --C:\Temp.txt the function creates the file as expected. When I loop through my array I get the error - "ArgumentException was unhandled - Illegal characters in path" The value "C:\Temp.txt" is the first value in the array - as it works
3
4439
by: premprakashbhati | last post by:
hi, good evening.. i am going to upload an image in a web form .....for that iam using HTML input(file) control and one web control button i.e., Upload_Button() here is the code ...its work fine when iam using a normal web page... but can't in content page.... Code in Master Page <%@ Master Language="C#" AutoEventWireup="true" CodeFile="submaster.master.cs" Inherits="submaster" %> <%@ Register Assembly="AjaxControlToolkit"...
0
9591
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10343
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10331
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10087
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9166
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5667
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4306
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3831
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3001
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.