472,958 Members | 1,956 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,958 software developers and data experts.

PHP + IE Embed problem

Hello thanks for your help..
I try to reference a PHP module from within a HTML file, see below
----------------------------------------
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
<head>
<titleMy title </title>
</head>
<body>
on place un embed
<embed id="embed1" alt="ne marche pas..." src="ws.php?
projet=ppp&mode=mmm&fichier=fff.xml&fichierxsl=xxx .xsl" type="image/svg
+xml" WIDTH="300" HEIGHT="300"></embed>
on place un embed
<embed id="embed2" src="ppp.svg" type="image/svg+xml"
WIDTH="500" HEIGHT="500"></embed>
etc....
</body>
</html>
--------------------------------------
I run an Apache web server and unfortunatly, the first embed
(name="embed1") is never requested by IE. The second one
(name="embed2") is load correctly.
Can anyone explain me why ? Maybe IE doesn't recognise a correct file
extension, what else ???
I have been testing lots and lots of changes, but never work with IE.
It works fine with Firefox...
Thanks

Mar 5 '07 #1
6 2339
qu************@free.fr wrote:
<embed
Try validating. HTML has never had an element called EMBED -- it's a
proprietary element invented by Netscape.

Use OBJECT instead:

<object data="foo.svg" type="image/svg+xml">Alt text here</object>

--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact
Geek of ~ HTML/SQL/Perl/PHP/Python*/Apache/Linux

* = I'm getting there!
Mar 5 '07 #2
Use OBJECT : I did it too, but same result, IE says "2 remaining files
to load" and never ends the upload. Apache detects 2 upload requests,
it's fine. May be I have another pb : the HTML file is in fact
generated by an XSLT transformation from a XML data file. Difficult
for me to debug all this!!! Do you know how to log the content of the
data flow exchanged between Apache and the IE browser ?
Thanks

Mar 5 '07 #3
On 2007-03-05 15-40-46, qu************@free.fr wrote:
Do you know how to log the content of the data flow exchanged between
Apache and the IE browser ?
A logging HTTP proxy would be one method.
Mar 5 '07 #4
Rik
qu************@free.fr <qu************@free.frwrote:
Use OBJECT : I did it too, but same result, IE says "2 remaining files
to load" and never ends the upload. Apache detects 2 upload requests,
it's fine. May be I have another pb : the HTML file is in fact
generated by an XSLT transformation from a XML data file. Difficult
for me to debug all this!!! Do you know how to log the content of the
data flow exchanged between Apache and the IE browser ?

Well, easiest it to mimique data that should be there on some places. If a
file is created with an XSLT tranformation, store the expected result and
use that instead, etc. untill you found the source of the problem.

Enough proxies to display raw data to and from browsers, for MSIE I've
always relied on the user-friendly Fiddler.
<http://fiddlertool.com/fiddler/>
--
Rik Wasmus
Posted on Usenet: any site claiming this as original content or me as an
contributing member is wrong.
Ask Smart Questions: http://tinyurl.com/anel
Mar 5 '07 #5
Simon Stienen wrote:
qu************@free.fr wrote:
>Do you know how to log the content of the data flow exchanged between
Apache and the IE browser ?

A logging HTTP proxy would be one method.
Alternatively, Wireshark (formerly known as Ethereal).

--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact
Geek of ~ HTML/SQL/Perl/PHP/Python*/Apache/Linux

* = I'm getting there!
Mar 5 '07 #6
Here is the answer : http://joliclic.free.fr/html/object-tag/object-svg.html

<object type="image/svg+xml" data="data/test.svg" width="320"
height="240">
<param name="src" value="data/test.svg">
alt : <a href="data/test.svg">test.svg</a>
</object>

In fact this method loads the svg file twice.
Use this instead :
<object type="image/svg+xml" width="320" height="240">
<param name="src" value="data/test.svg">
alt : <a href="data/test.svg">test.svg</a>
</object>

It works fine with IE and Firefox.
Thanks for your help !!!

Mar 5 '07 #7

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

Similar topics

0
by: Wolfgang Schwanke | last post by:
Dear usenet, I'm having the following small problem. I've been ask to add some Quicktime panoramas to a website. The author of the panoramas has made two versions of each: One in MOV format,...
2
by: Cris Curtis | last post by:
When I use an embed tag that uses a dynamic aspx page, the dynamic aspx page appears to get called 2 times instead. Below is code that adds an embed tag to a placeholder control that will use...
8
by: Cowan Services | last post by:
My apologies if this has been covered before, but I was unable to download messages before 11/23/05. I am trying to bring some HTML pages w/embedded .WMV files into W3C compliance. Right now,...
1
by: snicks | last post by:
I have a series of XLS files which I need to embed into a PowerPoint presentation on an IIS server. I’ll be using VB.NET. I’ve tried using an ASPOSE.PowerPoint control to do this and it does...
1
by: Andrew Poulos | last post by:
With "normal" SWF HTML there's an EMBED tag nested within an OBJECT tag. How can I check which tag is actually displaying the SWF? I'm using CSS on them and the style on the OBJECT affects the...
13
by: windsorben | last post by:
I have some javascript that checks whether or not an answer is correct. It was working fine when the question was asked with text but now that I'm asking the question with audio, the javascript no...
1
by: MoroccoIT | last post by:
Greetings - I have a CF Form that uploads news articles, at times, I like to paste Youtube Videos with my articles. I noticed that on one server, it works fine, but on a different hosting company,...
1
by: movieking81 | last post by:
This really isn't an ASP question, but the code is ASP so feel free to move this to the right place if necessary. I have two ASP pages with some embed code on them on two different hosting...
1
by: movieking81 | last post by:
I have some html pages with some embed code on them on two different hosting platforms. First one (Win2003,IIS) <object> <param name='movie' value='st1.mov'> <embed src='st1.mov' width='725'...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
4
NeoPa
by: NeoPa | last post by:
Hello everyone. I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report). I know it can be done by selecting :...
3
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
1
by: Teri B | last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course. 0ne-to-many. One course many roles. Then I created a report based on the Course form and...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...
2
by: GKJR | last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...

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.