Software :: Firefox And Http Post ?

Sep 10, 2010

There are a few web databases (also including my own php-based pdf manipulator), where I need to fill a html form, and upload file attachments.

About one year ago, these sites stopped to work correctly, when using Firefox (but they work from Internet Explorer). The problem concerns file upload.
Other users here also experienced this, and no firefox update corrected the problem in the past year (I am using Firefox 3.6.9 now, and the problem is still there).

When debugging my pdf creator, I found that the attachment-type of any file upload made by firefox is "text/html", irrespectively of what is the type of the uploaded file. Whilst files uploaded by IE have the correct attachment-type.

View 1 Replies


ADVERTISEMENT

Ubuntu :: Cisco - Firefox - HTTP Post ?

Aug 7, 2010

I am using the following software stack:Linux version 2.6.32-21-generic (buildd@yellow) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #32-Ubuntu SMP Fri Apr 16 08:09:38 UTC 2010 (Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2) (Kubuntu) cisco anyconnect vpn client 2.3.2016, Mozilla Firefox 3.6.8

The problem I have is that once I join my company vpn, I have full access to corporate services confluence, jira, servers, etc. However when I use firefox to try and resolve a jira and post a body of text the connection timesout.

If i use any other browser it works fine, if slow, if i transition workflows it works fine, and if i use windows and firefox with the same cisco client it works fine.

This appears to be a specific issue with Firefox. I have noticed that in general firefox is slower on ubuntu than on any other platform.

View 3 Replies View Related

General :: Using Curl And WGet To Send HTTP Post

Oct 11, 2010

I would like to find out how I would use both curl and wget to sent an http post to get the hostnames of a few servers. I know am not even given any work of anything I have done, but the reason is that I am really lost, and I do not even know how to start it.

View 4 Replies View Related

Server :: Lighttpd - Slow HTTP POST Attack

Jan 31, 2011

[url]

I ran across the above article, which described a DoS attack in which requests are sent very slowly to the Web server. I'm running lighttpd 1.4.28 on a Gentoo Linux server, and I'm wondering if there is anything I could do in preparation to defend against such an attack.

A bug report [url] seems to indicate that there was a patch in place already against this sort of attack, but I wanted to be sure that was the same thing and if there was anything else I needed to do.

View 3 Replies View Related

Ubuntu Networking :: Cannot POST Http - Unable To Send Mail Via Squirrelmail

Nov 23, 2010

I have a really weird (but consistent) problem with my Kubuntu 10.10 install: I cannot post some HTTP forms.

First off, this is a client PC problem. My squirrelmail on the server works fine. I just use squirrelmail 1.4.17 to troubleshoot the ubuntu desktop problem

I used an old (07.04) Ubuntu install which worked fine. Then I wiped the disk and installed Kubuntu 10.10 on the same hardware. Everything works but **some** HTTP post does not work (I can log in but not send mail or save draft). I noticed I cannot log in to Yahoo, for example.

My webhosting account can display the apache access_log. When I hit the <Send> button the POST request never arrives to the web server.

I use a router (Dlink DL-604) behind a DSL modem and ooma box. There is a Windows 7 PC and a Kubuntu PC connected to the router. I can use squirrelmail just fine from the Windows PC.

I tried several steps:
- reinstalled Kubuntu
- installed Firefox and Chromium (on top of reconq)
- ran from a CD on my other (Windows 7) PC
- installed Wireshark and compared the traffic (but was unable to pinpoint a problem)

The result was the same: the <Send> button just keeps waiting; the POST request never makes it to the web server.

This sounds (and is) scary and suspect. The fact that the "demo" Kubuntu install (from the CD on my other Windows PC) using the reconq exhibits the same problem on a totally different hardware leads me to believe this may be related to Kubuntu. For example, I had to type this very message on the Windows PC as I could not post it on the forum from my Kubuntu box.

View 2 Replies View Related

Software :: CURL Post Data Command From Shell - HTTP Error Code 408

Jan 29, 2011

I am trying to connect to the web interface found at [URL] using curl. This first requires login information to be entered at [URL], but I am having an issue with the login process. I am trying to submit the following form via POST:

Code:
<form action="j_security_check" method="post" id="login_form" name="login_form">
<center> <table style="background: #cac1cf;FONT-SIZE: 12px;">
<tr> <td align="center" colspan="2">Please enter your username and password:</td>
</tr> <tr> <td align="right">Username</td>
<td> <input name="j_username" style="width: 250px" id="j_username" type="text"/> </td>
</tr> <tr>
<td align="right">Password</td>
<td> <input style="width: 250px" name="j_password" id="j_password" type="password"/> </td>
</tr> <tr> <td colspan="2" align="center">
<input value="Enter" name="enter" type="submit"/>
<input value="Clear" name="Clear" type="reset"/>
</td> </tr> </table> </center> </form>
The command that I am using for this is the following:

Code:
curl -c cookies -b cookies -L -d "j_username=user%40domain.com&j_password=pass" [URL]
The command is properly formatted as far as I can tell. I tested it with another website using a similar authentication scheme using different POST variables specific to the form and it worked fine.

When I run the above command with the -v tag, it reveals this:
Code:
* Connected to lcl.uniroma1.it (151.100.4.74) port 80 (#0)
> POST /sso/j_security_check HTTP/1.1
> User-Agent: curl/7.21.0 (i686-pc-linux-gnu) libcurl/7.21.0 OpenSSL/0.9.8o zlib/1.2.3.4 libidn/1.18
> Host: lcl.uniroma1.it
> Accept: */*
> Content-Length: 44
> Content-Type: application/x-www-form-urlencoded
>
} [data not shown]
< HTTP/1.1 408 The time allowed for the login process has been exceeded. If you wish to continue you must either click back twice and re-click the link you requested or close and re-open your browser
< Date: Sat, 29 Jan 2011 15:26:41 GMT
< Server: Apache-Coyote/1.1
< Content-Type: text/html;charset=utf-8
< Content-Length: 1554
< Connection: close
<
{ [data not shown]
103 1554 100 1554 0 52 5081 170 --:--:-- --:--:-- --:--:-- 10223*
Closing connection #0

I cannot tell why the login timeout is expired when I try to do this, and my investigation toward this end has been fruitless. I saw a brief snippet on Google that vaguely suggested that the underscores in the domain name were at fault, but replacing these with their encoded counterparts did nothing to resolve the issue (that, and underscores should be fine when sent unencoded according to the standards). I have extensively perused the man pages and have come up with nothing to adequately explain this behavior. I also talked to a friend who has worked with curl in his line of work, but he mostly has experience in the context of PHP and has not dealt with this issue before. I am running GNU/Linux 2.6.35-22-generic-pae.

View 3 Replies View Related

Ubuntu Networking :: HTTP POST File Uploads On PCs - Getting 500 Internal Server Error Message

Sep 23, 2010

We're having an issue with HTTP POST file uploads on our two Ubuntu PCs. For some reason, whenever one of our users attempts to submit a file in an HTML form, the request times out, usually with a 500 Internal Server Error message. This problem is not limited to one site, but occurs on all sites that use file uploads. Also, the problem does not appear to be with our network, as a Windows 7 PC on the same network can upload files to the same sites without any difficulties. The problem is not browser-specific; we have tested with Firefox, Epiphany, and Google Chrome and all produce the same results. The issue is relatively new, and was first observed within the last month; before this time, both machines had no problems uploading files.

Does anyone have ANY idea what could be causing this? I've tried a number of things, including rebooting the PCs, rebooting the network, disabling IPv6, etc. I'm not very experienced in Linux system administration, but I can use the terminal and am familiar with some terminal-based diagnostic tools, so if you need any additional info or want me to try something, please let me know! I've exhausted my own computer knowledge with regards to finding a solution to this problem.

View 3 Replies View Related

Fedora :: Try To Go Back To Add The Bug Report To This Post, Firefox Crashes, Every Single Time?

Jul 7, 2010

I'm running F 13 and today's updates included updates to Xorg, so I logged out and back in to let them take effect. Ever since then, Firefox has been repeatedly crashing, especially on certain sites. I managed to get the crash reporting tool to report it to Bugzilla, but when I try to go back to add the bug report to this post, Firefox crashes, every single time. Has anybody else found this? If somebody can get to bugzilla.redhat.com and find the report (The email address I use there is joe@zeff.us if it helps.) I'd appreciate having it added as a response to this, so that others can find it and,

View 14 Replies View Related

Ubuntu Networking :: Unable To Access Http://192.168.1.1 In Firefox 3.6.18?

Aug 2, 2011

In ubuntu 10.04 LTS I am currently unable to access the location http://192.168.1.1 I have accessed it earlier. This is necessary for modem configuration. I am at a loss why this is inaccessible at present. Can anybody please advise what to do? I am configuring firewall but I doubt if that has anything to do with my problem. Or in case this may be due to faulty firewall configuration, please indicate denial of possible service/program which may cause this. Also ping 192.168.1.1 reports 100% packet loss.

View 8 Replies View Related

Fedora Installation :: Upgrading Firefox Browser - HTTP Error 404

May 31, 2011

I have been windows using for over years and now after seeing Linux in couple of colleagues desk, I liked and have installed Linux in my home desktop (Fedora 14). After installing Fedora 14, I tried upgrading my browser Firefox from 3.6.17 (which came by default) to Firefox 4.0. I googled and got the procedure for upgrading tirefox. from this link [URL]. I followed the exact steps and while I tried to install I get the following error. I tried enough to get rid of this problem but all attempts in vain.

The Error that I get is:
[root@localhost yum.repos.d]# yum install firefox4
Loaded plugins: langpacks, presto, refresh-packagekit
Adding en_US to language list
Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora-firefox4. Please verify its path and try again

[root@localhost yum.repos.d]# yum install firefox4
Loaded plugins: langpacks, presto, refresh-packagekit
Adding en_US to language list
repos.fedorapeople.org/repos/spot/firefox4/fedora-15/i386/repodata/repomd.xml:
[Errno 14] HTTP Error 404 : repos.fedorapeople.org/repos/spot/firefox4/fedora-15/i386/repodata/repomd.xml
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora-firefox4. Please verify its path and try again
[root@localhost yum.repos.d]# ls

View 6 Replies View Related

Ubuntu Multimedia :: Firefox: No Way To Play An Application/x-ms-wmp Http://sanamluang.tv/asx/livetv4.asx?

Mar 19, 2010

We trie to watch tv on http://sanamluang.tv but there's no way to get any reaction from this site.Looking the source it's the following (part of it)

type="application/x-ms-wmp" param value="http://sanamluang.tv/asx/livetv4.asx"

With windows xp firefox or chrome everything is easy, no problem. ubuntu and firefox with "windows media player plugin" nothing works.I tried vlc, totem, mplayer ... no way.

View 2 Replies View Related

Fedora :: Open Firefox - Get Really Strange HTTP And HTTPS Connections Showing Up In Firestarter

Oct 22, 2009

I've noticed that when I open firefox I get really strange HTTP and HTTPS connections showing up in firestarter (which as I understand it is just a GUI for IPtables). They connect to various bits of a site listed as 1e100.net (when you use "lookup hostnames") such as wy-in-f18.1e100.net, they stay connected all the time as far as I can see unless I close firefox. I've heard people say they are connected to Google, but I can close all tabs after loging out of google and still see them... it's very odd.

View 3 Replies View Related

Networking :: Craft A Valid Http/1.1 Request For Getting Http Headers (not The Html File Itself)

Sep 27, 2010

Using netcat, nc(1), craft a valid http/1.1 request for getting http headers (not the html file itself!) for the main index page of www dot aalto dot fi. What request method did you use? Which headers did you need to send to the server? What was the status code for the request? Which headers did the server return? Explain the purpose of each header.

nc -v www dot aalto dot fi 8080
HEAD / HTML/1.1
host: www dot aalto dot fi
And it returns:
200 OK
Content-Length: 858
Content-Type: text/html
Last-Modified: Thu, 02 Sep 2010 12:46:01 GMT
[Code]....

I really don't know what does it mean. Question 2: Using netcat, nc(1), start a bogus web server listening on the loopback interface port 8080. Verify with netstat(, that the server really is listening where it should be. Direct your browser to the bogus server and capture the User-Agent: header "Direct your browser to the bogus server and capture the User-Agent: header" I don't understand this question.

View 2 Replies View Related

Ubuntu Servers :: Nagios On 10.04 Server Using Apt-get - HTTP WARNING: HTTP/1.1 404 Not Found

Aug 4, 2010

I installed Nagios on my Ubuntu 10.04 server using apt-get and when I accessed the web console, everything was OK. I made some changes to apache (creating some new virtual sites) and since then Nagios gives me a warning message for HTTP with the message, HTTP WARNING: HTTP/1.1 404 Not Found. The sites that I created are working perfectly. I noticed that the attemps are 4/4. Does this need to be reset or does Nagios automatically reset that once it detects the issue is resolved?

View 1 Replies View Related

Server :: Apache2 SVN Post-commit Script Certificate Error Post-commit Hook Failed (exit Code 1) With Output?

Oct 12, 2009

I am using apache2 with subversion and trying to get post commit script to run an svn update command. All svn commands seem to work fine manually

Everything used to work fine but then the server ip changed and I can no longer access it with the web name and have to use the ip directly

I am using tortoise svn with vista on my work machine

Here is the script

#!/bin/sh
export LC_CTYPE=en_US.UTF-8
/usr/bin/svn update /home/common/webroot/bob

Here is the result.

Command: Commit
Modified: C:UsersMattDesktopcheckout - bobindex.php
Sending content: C:UsersMattDesktopcheckout - bobindex.php
Completed: At revision: 63
Error: post-commit hook failed (exit code 1) with output:
code....

I think what i need to do is update the certifcate for the apache2, but I'm not sure how to do this, where to put it, and then which of the thousand apache config lines needs to be changed

View 5 Replies View Related

Fedora :: TOR Onion Routing - Set Proxy For HTTP And HTTPS In Firefox But Say's 'unknown Proxy'

Jul 7, 2010

I've been trying to make myself anonymous, but I cant find 'Tor' anywhere, tried 'yum & kpackagekit' neither have it. I did find 'Privoxy', installed it, set proxy for HTTP and HTTPS in Firefox, but it says 'unknown proxy' when I try to use it! I've been to the Privoxy web site and read through the 'User manual', but most of it is 'geek' to me!

View 8 Replies View Related

Ubuntu :: Cannot Post On Forum - Click On "submit" To Post A Thread The Page Will Just Say "loading..."

Sep 28, 2010

For some odd reason, I cannot post on the ubuntu forum and the LinuxMint forum. Yea, I know.... the irony... I am using Mozilla and have tried Chromium, but that did not fix my problem. When I click on "submit" to post a thread, the page will just say "loading..." and nothing happens for a really long time. Does anyone know what is up? I tried posting on one other forum that I go to often and it seems to work out fine. I haven't tried any other forums though.

View 7 Replies View Related

Fedora :: Firefox Failed To Execute Child Process "/usr/lib/firefox-3.5.4/firefox" (No Such File Or Directory)?

Apr 1, 2010

Here is the message:Failed to execute child process "/usr/lib/firefox-3.5.4/firefox" (No such file or directory)Firefox is installed and is there.

View 10 Replies View Related

Ubuntu :: Cannot Figure Out How To Post A Bug?

Feb 11, 2010

i think this is not the right place for this post, but i can not figure out how to post a bug. i am talking about the permissions of: /tmp/orbit-root. please don't tell me now "don't" log in as root if you once login as user root from the login screen the permissions of /tmp/orbit-root are set to: drwx root but if log out the permissions are not set back / or the entry will be deleted. this will end for the next login as a normal user that you will get a bulp of error messages. easy to reproduce. this is not a feature - it's a bug.

View 1 Replies View Related

Ubuntu :: Where Do I Post Bugs?

May 30, 2010

I've been using ubuntu almost exclusively for more than a year. I am now running 10.04. I was trying via launchpad to post some bugs I've run into in Ubuntu. None of the bugs relate directly to a certain process. And if they do, I have no idea how to find out their PIDs.

View 4 Replies View Related

General :: Awk/regex With A Post?

Apr 2, 2010

I have a data file with the following format 0 i j # # # # with other random lines of text to be filtered out.The following script works when there aren't many #s, but it shuffles long lists of data.

/^0/ {
split($0,token)
printf("%s %s ", $2, $3)

[code]...

View 4 Replies View Related

Programming :: PHP - POST Not Working?

Dec 29, 2010

The following script keeps telling me: Notice: Undefined index: name in /usr/files/www/rage.php on line 6 Name:

PHP Code:
<html>
<?php

[code]...

View 7 Replies View Related

Fedora :: Where Can Post My Desktop Theme?

Nov 12, 2010

I've been looking for a place to post my desktop theme. I remember seeing it before.

View 5 Replies View Related

Fedora Hardware :: CPU 1 Not Responding At Post?

Jan 2, 2011

Got a gigabyte ga-ma78g-ds3h mobo with an amd athlon dual core 5050e processor that occasionally causes this warning at post. Removed and replaced the processor but still occurs, possibly slightly less frequently so it might just be a bent pin and this will be tried again. However i am curious as to whether others have seen the warning in case it is software although i am assuming it must be hardware. I guess it could be a bios bug, the bios was updated about a year ago. Log files and system monitor confirm the missing cpu.

View 4 Replies View Related

Ubuntu :: Attaching An Image To A Post?

Mar 12, 2010

I can't, for the life of me see a way to attach an image to a forum post. Maybe it's time for a nap, it has been a very very long day. I've seen attached images on this forum in the past.

View 3 Replies View Related

Ubuntu :: Gwibber Does Not Post To Facebook

Jun 14, 2010

I have a problem with gwibber. It has emerged randomly for no apparent reason as I have not changed any settings. All of a sudden, when updating my status on Facebook, and I click send, gwibber appears to work for a while, and then just nothing happens. My status does not get updated. It works fine with Twitter. It's only facebook. I have checked my application settings in Facebook and gwibber has full permission to post.#

I tried setting up the account again in gwibber, but this just opened a can of worms, because I had to reinstall gwibber and delete all of the config files in order to reinstate my facebook account, (see URL...)due to a bug in gwibber, which was a pain.

View 9 Replies View Related

Ubuntu :: How To Delete Duplicate Post

Aug 19, 2010

How do you delete duplicate posts? Clicking on the edit button doesn't allow one to delete, just edit.

View 1 Replies View Related

Ubuntu :: Can't Post To Server Section

Aug 19, 2010

I can not post to Ubuntu Server section, I choose this section to post about this mysql general problem. I just checking mysql and trying to execute

[Code]...

you know what's the general or the common output? I've not found it yet through google until now. This is my result;

[code]...

but i realize, i never create debian-sys-maint and again, i never create root user until 3 times. Is this some error or missconcept or what? when if we do removing those users, and create 1 user (example: root) is it safe?

View 4 Replies View Related

Ubuntu :: Deleted Cookie / Able To Post This?

Feb 8, 2011

How am I able to post this?

View 2 Replies View Related

Ubuntu :: Any Way To Post Bugs In Launchpad Outside 11.04?

Apr 21, 2011

I have a problem with installing ubuntu 11.04 I get this message:
Code:
Hspell: can't open /usr/share/hspell/Hebrew.wgz.sizes
It's get stuck with the updating time from internet servers process but I can't find a way to report it to launchpad.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved