Ubuntu Networking :: Javascript Page Not Working?

Aug 19, 2010

i have an html page with a text box in a fourm, and am trying to change the value of it with javascript, but it not working. ive tried about everythin i can think of and find, but it just doesn't work. it all allways comes down to the <form>,</form> tags or the <input> tag doesn't exist. I know im getting the names right,(copy&paste)

View 1 Replies


ADVERTISEMENT

General :: Use Wget To Click A Javascript Button On The Page?

Jul 5, 2011

I like to use wget to click a javascript button on this page

page:

[URL]

button:

Update (Add to Queue)

bin trying

Code:

wget --post-data="updbutton" [URL]

But it aint working. I am not WinslowLee420 he is just the top player on the leaderboard.

View 3 Replies View Related

Programming :: Have The Javascript Include On The Page (it's A Php Template So That's Elsewhere In The Code?

Jun 6, 2011

this should have been a simple task, but for some reason one of my rollovers plain old isn't workingmy html sheet

Code:
<div style="background:#F5F5E9 url('/sites/all/themes/flossmoore1/images/bricks250.png');padding:1px;padding-

[code]....

View 1 Replies View Related

Fedora :: Javascript In Opera 10 Does Not Seem To Be Working / Enable It?

Jan 11, 2010

I just installed Opera 10 and javascript does not seem to be working. How do i enable it?

View 6 Replies View Related

CentOS 5 :: JavaScript For MPlayer Control Not Working

Sep 22, 2010

I'm on web developing and was trying to embed an audio file on one of my page. The audio was successfully tested and emebeded on all browser. Added on the said embedding are javascript for customize buttons, here is the part of the code for embedding:

<script language="javascript" type="text/javascript">
QT_WriteOBJECT('[filename]', '90%','16', '', 'obj#id', 'movie0', 'emb#name', 'movie0', 'enablejavascript', 'true', 'autoplay', 'false');
</script>

View 1 Replies View Related

CentOS 5 :: Javascript Menu Behind Flash - WMode Not Working

Dec 6, 2009

We're doing a web gui with extjs & flash chart. The problem is a drilldown menu from flash chart to some other page. The drilldown menu is working fine on all other os & browser, but not on 64bit centos 5.x & ff 3.0 or 3.5, which we need to support. It's always behind the flash chart. With the firefox coming with 64bit centos 5.x (which I believe it's a 64bit firefox), all of them are not working. But the weird thing is, with some newly installed centos 5.4, if I use a firefox 3+ downloaded from mozila/firefox official site (I guess it's a 32bit firefox).

The drilldown menu works fine. However with some other centos 5.4 which are upgraded from centos 5.2, the drilldown menu won't work. Please see the attached screenshots for the detailed info. I've tried many things, tried latest 32bit flash plugin, tried 64bit flash plugin, tried updating the nspluginwrapper (according to [URL]) and several other things. None of them works. From adobe tech note [URL].

"Note: The WMODE parameter is supported only on some browser/Flash Player version combinations. If the WMODE parameter is not supported, the Flash movie will always display on top. Refer to TechNote 14201 for details."

I understand that not all the os & browser & flash version combinations support WMODE, but it really bugs me that with almost the same os (64bit centos 5.4), the same firefox (32bit v3.5.5 downloaded from getfirefox.com), the same flash plugin (32bit v10.0.r32), why some of them can see the javascript menu on top of flash chart, but some of them will always be behind the flash chart?

View 5 Replies View Related

Programming :: Regular Expression Working Fine In JavaScript But Not In Python?

Jun 22, 2010

I have this regular expression

Code:

(@description ").*(";)

I want to match anything in between the quotes its working fine in JavaScript but its not working in my python program:

Code:

#!/usr/bin/python
# -*- coding: iso-8859-1 -*-
import re

[code]....

View 3 Replies View Related

Software :: Finding Textbrowser With JavaScript Support Or Elink Javascript Support?

Sep 1, 2009

I need a textbrowser with Javascript Support. I have compiled the elinks stable 0.11x and the unstable 0.12x version mit JavaScript Support (js moz dev). Both browsers can be started and showed websites normaly. But no javascript, even simple tests like [URL] failed. I started elink with ./elink and typed then the url.

View 4 Replies View Related

Ubuntu Installation :: Can't Get Last Fm. Via Their Web Page Working In Rythm Box / Fix It?

Apr 5, 2010

I am able to use Last fm. via their web page, but I can not get it working in Rythm box. I think I am missing a peice to the puzzle . when I select it, my user name appears in the login box , but when I enter the password nothing happens and the same password works fine on their web-site ..

View 1 Replies View Related

Ubuntu Servers :: 9.10 - Webmin Not Working (Page Cannot Be Displayed)

Jan 23, 2010

I installed ubu server 9.10 on my desktop, then I tried to install webmin and I was able to do that too. When I try to connect to webmin I get "page cannot be displayed" so I thought let's change the port...I changed to port 443 as recommended on the website.

Here is the miniserv.conf:
port=443
addtype_cgi=internal/cgi
realm=Webmin Server
logfile=/var/webmin/miniserv.log
errorlog=/var/webmin/miniserv.error
pidfile=/var/webmin/miniserv.pid
logtime=168 .....
Now I tried connecting using the ip address and the hostname. I also tried with http and https
https://hostname.com:10000 and 443 ... no go.

View 9 Replies View Related

General :: Page 2 - Get Basename Without Extension Not Working?

Mar 12, 2011

Quote:Originally Posted by SimonJM It almost smacks of your script being wrapped up in something elseGot it sorted, did the logic in PHP and linked directly to ffmpeg

View 2 Replies View Related

Programming :: Calling Script From Php Page Is Not Working?

Mar 2, 2011

I have typed the following code:

Code:
<html>
<form enctype="multipart/form-data" action="upload.php" method="POST">

[code]...

View 3 Replies View Related

General :: Page 2 - Scheduled Cron Job Stepped Working

Sep 8, 2011

The back.sh script is being run as user basil, whcih means that when it comes to copying the backup file to the target location you do not have the correct permissions to access the contents of the directory (it is rwx by root only).So, what do we do? Hoping it is ONLY the directory permissions which are fouling things up we have a range of options which, in not particular order of 'good', include:

a) change ownership/permission on target directory.
b) have the back.sh script run by the root user
c) set up sudo to permit the file copy to be done by root
d) use setuid on the back.sh to have it run, effectively, as root

A lot of the answer will depend upon what else the Dropbox directory is for. If it's JUST for your backups for this then I'd be inclined to:

Code:

chown basil /root/Dropbox
chmod g+rwx /root/Dropbox

which will permit the basil user full access and thus allow the file operations being done and give root access via the group permissions (not that the root user really needs this).Also, I'd be inclined to:

Code:

chown basil /home/xxxx/moo3/bin/back.sh
chmod u=rwx,g=rx,o= /home/xxxx/moo3/bin/back.sh

which will make things 'look' better, it just reinforces the point that the script is run (and owned) by the basil user.

View 3 Replies View Related

Ubuntu :: Open Office Writer - Page Moves Around When Working With Graphics / Charts?

Mar 16, 2010

I am using OO 3.1 on Karmic 9.10. When working with Open Office Writer and either graphics or charts, a couple of things happen. First of all, the page position moves around. For example, if I click on a graphic I have inserted or on a chart, the page on my screen may shift up or down by a half inch or so. If I click back out in a text area, the page moves back to where it was. This is very annoying. Has anyone else had a problem like this? I have tried turning off compiz completely but it doesn't fix it

View 1 Replies View Related

Ubuntu Installation :: 10.10 Netbook / Hitting Next On First Page Mouse Icon Changes But Next Page Never Loads?

Oct 12, 2010

i am able to try ubuntu and everything works fine until i try to install. the menu comes up to the first page where it tells you to plug in your machine and make sure there is enough disk space and network connectivity. when i hit next on this page the mouse icon changes but the next page never loads. the longest i let it hang there was 2 hours. ive tried multiple times with the same result.

im running from a flash drive on an ASUS Eee PC 1001P-PU17

View 4 Replies View Related

Ubuntu :: Firefox Font Sizes Vary From Page To Page?

Jul 11, 2010

10.04; 64 bit In Firefox, the size of the fonts varies greatly from site to site. Some are too small to read, others huge. Some headings and menus overlap.Screen size: 1152 x 864

My settings are:
Proportional: serif 14
Serif: Times New Roman
Sans serif: Arial
Monospace: Courier New 14

View 1 Replies View Related

Hardware :: Reload This Page Toshiba Satellite L645D - Touchpad Not Working In Fedora 14 - 64-bit

Jan 6, 2011

I am a very new Linux user (newb) so I could be missing something very obvious. I have a Toshiba Satellite L645D-S4056 and recently installed Fedora 14 (64-bit GNOME) with all sorts of updates and software.

I'm working my way through all of the hardware to get it all running properly. I figured out how to get the RealTek wireless-n adapter working. The webcam is working even with Skype which is tricky on the 64-bit version.

At the moment, my touchpad doesn't work. I see a lot of articles online about the touchpad not double-tapping, but mine doesn't work at all. I've been using a mouse for all my GUI stuff.

I went to SYSTEM --> PREFERENCES --> MOUSE and selected the touchpad tab, but I can't figure out how to make it work.

View 1 Replies View Related

Ubuntu :: How To Name Page Up & Page Down Buttons In Global-keybindings

Mar 26, 2011

Can anyone tell me how to name Page up & Page down buttons in global-keybindings to use the custom commands with these buttons?

View 1 Replies View Related

Fedora :: Npviewer Segfaults - Firefox Sometimes Shows The Title Of A Page In A Tab But The Page Is Blank

Nov 23, 2009

On FC11 64 bit with Adobe flash plugin for Linux installed, I see segfault errors from "npviewer" in /var/log/messages. The only browser I have tried yet, Firefox, has glitches every now and then. Sometimes it shows the title of a page in a tab, but the page is blank. This can even happen when I try the Google main page. Is it true that npviewer has something to do with Adobe flash? Is there a way to fix the problem? If it is caused by Adobe flash, is there a different plugin that will replace Adobe flash player?

View 1 Replies View Related

General :: Find Page Hit And Page Miss Ratio In Fedora Core 12?

May 10, 2010

How can I find page hit and page miss ratio in linux fedora core 12?

View 3 Replies View Related

Hardware :: HP Deskjet 940c On Linksys Printserver Prints Alternating Good Page And Bad Page

Mar 9, 2011

I have a problem printing to my HP printer.

What is my problem? I have a page (one page - text an graphic) to print. When I sent it to my printer it prints OK. When I sent it agian, the output is totally garbled. When I sent it again (a third time) it is OK. Sent it again (4th time) it is garbled. Sent it again ... you get the picture ;-). Alternating good and bad pages.

What is my setup? I run Fedora 14 with Cups 1.4.6. The printer is a HP Deskjet 940C. It is connected to a linksys wireless print server. It is configured in CUPS to use ipp printing. The driver I use in Cups is 'CUPS+Gutenprint v5.2.6 Simplified (color, 2-sided printing)'.

View 2 Replies View Related

Fedora Servers :: Copied The Web Page Files To Its Document Root <var/www/html> & Disabled The Default Web Page?

Jun 8, 2009

I have apache httpd server on my Fedora 10I got 2 problems:First : I copied the web page files to its Document Root <var/www/html> & Disabled the default web page. But when I visit http:/localhost ,it shows up the list of files in <var/www/html> as if a ftp server browsed in web page. So how can I set http://localhost load my default web page index.html ?Second :I want to set up a web server on Internet through my router . I applied for DDNS account & input it into router correctly . I set virtual host in server to redirect any access from port 80 to 192.168.1.2:80 in LAN . Just for in case , I also download and running the DDNS software & installed it on PC 192.168.1.2 in LAN . My DDNS provider is oray.cn . It's a Chinese server provider . I don't think there is anything wrong with oray.cn . But if you need its information just visit oray.cn (Google can translate it for you). So I want to know did I miss something to set up a web server in this kind of situation

View 2 Replies View Related

General :: Error - You Must Be Logged In To Access This Page, Go To Logon Page

Jul 26, 2010

All has been fine with my emails but today morning when i tried to log on I got an error message "You must be logged in to access this page, go to logon page" I dont understand why even when i supply my correct user name and password.

View 2 Replies View Related

Programming :: Executing Commands From Web Page And Outputing It Back To The Web Page?

May 8, 2009

wanted to know if i can execute commands on linux console through a web page and redirect it back to my web page !For example :if i send a query "ls"it should execute this command on my linux console and also redirect the list of the files to the web page from which i give the command !

View 8 Replies View Related

General :: Combine 4 Page To Single Page?

Jul 6, 2011

I want to combine 4 ps(or pdf) page to single page and for this i have try a2ps command as:

a2ps -4 1.ps 2.ps 3.ps 4.ps -o outfile.ps

Event through it divide the page into four section. But only give one output of my four input. other three section is blank. Is i am doing some wrong or Is their any other command to do so.

View 3 Replies View Related

General :: Vim: Substitute For Page Up And Page Down Keys?

Aug 11, 2011

Vim: substitute for Page Up and Page Down keys?

View 4 Replies View Related

Slackware :: Boot Process Page By Page?

Aug 14, 2010

When I boot slackware, I have all the boot process that run but too fast. I don't have time to read what's running. Is there a way to to go page by page. I didn't find any key in my keyboard to stop and go.

View 16 Replies View Related

Ubuntu Networking :: Shutdown Squid Via Web Page?

Feb 28, 2011

I would like to be able to shutdown squid (/etc/init.d/squid stop) via a web URL. Does anybody know if something exists like this, or do I need to write a CGI script or equivalent?FWIW: Yes, I have an 8 year old son that needs some persuasion to GET OFF THE COMPUTER .

View 1 Replies View Related

Ubuntu Networking :: Page Says Unsafe Wireless Network

Jun 4, 2010

for wireless when im out i can use some open wifi fine, but some give me a page that says the network is unsafe something about tunnel i think it was.

View 3 Replies View Related

Ubuntu Networking :: Vista Prints Test Page But Nothing Else?

Oct 18, 2010

I've installed Ubuntu 10.10 on an old box to use as an office print/fax and file server. I tried the server edition but I had no chance with command line programming so I've just used normal Ubuntu.

Ubuntu itself is working fine and I've installed my HP Officejet printer and it's fully working on the Ubuntu box. SAMBA and CUPS are installed.

I've then added the printer onto my Vista machine and here's where the fun starts. The Vista box sees the printer on Ubuntu, adds it with no problem and happily prints test pages, but I can't get it printing anything else.

I can't for the life of me find any reason why it would print a test page, but not print from Word, adobe or even a browser.

View 3 Replies View Related







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