Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I am running Ubuntu 6.06 dual booted with Windows XP. I am an insurance agent by day and the site that I have to use for my livelihood is a hardcore "IE ONLY" site. Can NOT be accessed with Firefox (even with switcher agents, etc.).
I installed Wine and IE6 which gets me onto the site just fine and I can navigate around and do whatever I need to do - (claps and cheers).
But alas I digress - I can do anything EXCEPT print customer documents (proof of insurance, receipts for payments, etc). These "open in new window" in a ".asp" file format. In Windows this equates to a pop up Adobe Acrobat file that I print and hand to the client. In Linux with Wine/IE6 nothing happens at all except I get an option to "open" or "save". If I save the file and then try to open it, it just look like gibberish code. If I open it I sit and wait and wait and nothing ever happens (kinda like working in Windows 98).
Any idea where I can find a solid written procedure for integrating the Windows version of Adobe Acrobat into Wine?
I am running Ubuntu 6.06 dual booted with Windows XP. I am an insurance agent by day and the site that I have to use for my livelihood is a hardcore "IE ONLY" site. Can NOT be accessed with Firefox (even with switcher agents, etc.).
Have you tried other browsers -- Konqueror, Opera etc? A site that only works on certain browser, especially IE, is pretty much the most stupid thing I've ever heard of Maybe you should ask the webmaster to do something about it..
ASP stands, if I recall right, for "active server page". No idea why Adobe opens it, or if it's something else, but what if you saved the file and opened it in Linux' Adobe Reader (or does it need the "big" Adobe Acrobat suite?)
What you want to do sounds a bit difficult, even if you could make it work with some tape-glue-cadget thing, it's irritating in the long run. I'll say this straight: don't ask to, but make the webmaster of the site understand he's a jerk and make it clear the site ought to be changed so it can be used with every platform. It shouldn't be too difficult (especially with these user-friendly software things) to make the site create the doc in a pdf or dvi format..in fact I think it's more difficult to make the doc come out in asp format than in pdf.
Internet should be something that is not restricted to platforms, operating systems or applications; instead it should just provide information in common formats that can be used anywhere. Companies working against this are working against their customers.
Is the site private or can it be accessed publicly - i.e. can somebody else than you test the site to see if it works with something else than IE?
IE is so full of holes the size of a small planet that I really wonder who would want to use it..
From what I'm reading it doesn't seen that you are downloading a pdf file. But just to let you know. You can link a linux native application and ie6. For example to link kpdf with ie6 make the following registry entries
********
[HKEY_CURRENT_USER\\Software\\Classes\\.pdf]
@="AcroExch.Document"
"Content Type"="application/pdf"
Distribution: multi booting whatever I feel like. Grub rocks!
Posts: 85
Rep:
I may be totally wrong about this, but isn't there a way in firefox or konqueror that you can fool the site into thinking you are using IE? Pretty sure I saw that somewhere.
I may be totally wrong about this, but isn't there a way in firefox or konqueror that you can fool the site into thinking you are using IE? Pretty sure I saw that somewhere.
User Agent Switcher works for SOME sites but not the one I have to use, it relies heavily on ActiveX controls. I have not been able to access it and actually do my work in anything but IE6 or IE7. I am making headway with IE6 and Wine except for this nasty pdf file printing/reading issue. I will try the suggestion from above though perhaps it will work.
and since IE will send a windows path to openoffice I made a script to give it the correct path.
#!/bin/bash
cd /home/myhomefolder
echo "***** Input String *****"
echo $1
echo "$1">doc-file
file=$(sed -e 's@\\@/@g' -e 's@[cC]:/windows@.ies4linux/ie6/drive_c/windows@g' -e 's@[a-zA-Z]:/@\ @g' doc-file)
echo "$file">doc-file
file=$(sed 's/^[ \t]*//' doc-file)
echo "***** Output String *****"
echo "$file"
/usr/bin/openoffice.org-2.0 "$file"
rm -f doc-file
To test it, I launched IE6 from a terminal,and opened a .doc file from the net. It launched openoffice and opened the .doc file. The terminal output.
***** Input String *****
C:\windows\profiles\myhomefolder\Local Settings\Temporary Internet Files\Content.IE5\OHWZYRST\This%20is%20a%20test%20doc[1].doc
***** Output String *****
.ies4linux/ie6/drive_c/windows/profiles/myhomefolder/Local Settings/Temporary Internet Files/Content.IE5/OHWZYRST/This%20is%20a%20test%20doc[1].doc
This is probably not what you want to hear, but if I were you, I would just get VMWare Workstation, install a virtual Windows and browse the site like that.
Not only will it be the final solution for ALL those IE-on-Windows only sites, but you will also be to stop bloating up your system with IE/Windows/Whatever compatabillity libraries and plugins.
You will never need to boot the real windows ever again unless you want to run windows-only 3D games/software. That is the last and only disadvatange of a virtual Windows.
You can delete/rename .wine and then move/copy .ies4linux/ie6 to .wine. Then reinstall office as you did before.
or you can leave .wine an .ies4linux as they exist, and use the method I used to open open office, with the registry entries and script, but in your case you would open the .doc files using the script with
wine "C:\Program Files\Microsoft Office\Office\WINWORD.EXE" "$file"
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.