|
-
toolbar & window customizations don't save
Date: 04/25/07
(Mozilla) Keywords: browser
Whenever I close firefox and re-open it, two settings are reset. The first one is all the icons i've changed around in the toolbar, that's reset to the default icons. The second thing that's reset is the browser's position and size. I had it how I liked it and now whenever I try to change it back, the customization only lasts as long as I don't close firefox.
I've tried un-install/re-install. I've tried getting rid of key folders but apparently I haven't gotten close to resolving this. Does anyone out there know what causes this and/or how to fix it?
Source: http://community.livejournal.com/mozilla/387476.html
-
colors
Date: 04/27/07
(WebDesign) Keywords: browser, html, web
I'm having a color problem on my new html web page design.
I'm using Dreamweaver. I chose my text, link and visited link colors. I loaded the page, and the link color displays wrong. Instead of the light purple color I picked from the "System Color Picker," I get some default-looking blue. But only on the borders of pictures that were links, not on text. And not in all browsers. So I remake the page from scratch, thinking maybe it's a glitch, and choose some new colors that look similar. When I load the page, none of the colors come in right. They all look like defaults - text is black, links are blue, v-links are purple.
Can someone tell me what's going on here?
Thanks in advance.
Source: http://community.livejournal.com/webdesign/1250586.html
-
javascript assistance
Date: 04/30/07
(Javascript Community) Keywords: browser, html, web
Hello, I joined because I need a little help with a website I'm working on as a part of an assignment for school.
All I need to be explained is how to create a pop-up window for a HTML site. I'm going to to hyperlink the word "Pictures" on my site so that when they click it, the URL it was linking to doesn't open in the same browser window or a completely new one, but a pop-up that is 400 x 300px appears with the flash content I have premade for it. It should be simple to shut by just clicking the X in the corner.
I'd be very grateful if anyone could give me the code to copy-paste, and some simple explanation :) thanks!
Source: http://community.livejournal.com/javascript/133272.html
-
Firefox double counter problem
Date: 05/01/07
(PHP Community) Keywords: browser, database
Hello again, everyone.
I'm implementing a very simple 'self-configuring' counter script that essentially creates a counter for every page it's used on with the option to update the counter or not and to return or display the page's counter. It interfaces to a simple, one-table database with only two columns.
define( "NOTSET",- 1024);
$server = "server";
$user = "user";
$password = "password";
$db = "db";
$link = mysql_connect( $server, $user, $password) or die( "Cannot establish connection with counter server");
mysql_select_db( $db) or die( "Cannot select database");
//returns the CID (table col) hash according to $id
// (id should be the SCRIPT_FILENAME of the requesting page)
function counterHash( $id) {
$md5 = md5( $id); // md5 is relatively surjective
return substr( $md5, 0, 10);
}
function getCount( $hash) {
global $link;
$safe = mysql_real_escape_string( $hash);
$query = "SELECT `count` FROM `counters` WHERE `CID`='". $safe. "'";
$result = mysql_query( $query);
if ( ! is_resource( $result) ) { print( "notset!"); return NOTSET; }
$row = mysql_fetch_array( $result,MYSQL_ASSOC);
return $row[ 'count'];
}
// If there isn't a row for $hash in the db, then one is
// created and false is returned.
// Otherwise, returns true.
function createRowForHashIfNotExists( $hash) {
global $link;
$safe = mysql_real_escape_string( $hash);
$q = "SELECT `count` FROM `counters` WHERE `CID`='$safe'";
$result = mysql_query( $q) or die( "Cannot get status because ". mysql_error() );
$n = mysql_num_rows( $result);
if ( $n === 0 ) { // no rows for our hash
$q = "INSERT INTO `counters` (`CID`,`count`) VALUES('$safe','0')";
mysql_query( $q) or die( "cannot create new counter because ". mysql_error() );
return false;
}
}
//sets the `count` col of $hash's row to $count
function setCount( $hash, $count) {
global $link;
createRowForHashIfNotExists( $hash);
$safehash = mysql_real_escape_string( $hash);
$safecount = ( int) mysql_real_escape_string( ( int) $count );
if ( ! is_int( $safecount) ) { die( 'setcount(hash,INTEGER)'); }
$query = "UPDATE `counters` SET `count` ='". $safecount. "' WHERE `CID` = '". $hash. "' LIMIT 1";
mysql_query( $query) or die( "Cannot update counter because " . mysql_error() );
}
$id = $_SERVER[ 'SCRIPT_FILENAME'];
$hash = counterHash( $id);
createRowForHashIfNotExists( $hash);
$visitorCounter = getCount( $hash);
function visitorCounter( $update= true, $show= true ) {
global $link, $visitorCounter, $hash;
if ( $update ) {
setCount( $hash,++ $visitorCounter);
}
if ( $show ) {
echo ''.$visitorCounter.' Visitors '. "\n";
} else { // don't show so return
return $visitorCounter;
}
return true;
}
?>
Everything works just fine in Safari (i.e. the page is visited and the counter increments only once), but in Firefox, the counter increments twice for no apparent reason. I figured this out only after wasting like three hours tracing through the program and reconstructing everything from scratch.
Is anybody familiar with what might be causing this? Is there a glaring problem with my code? Or, perhaps, most importantly, do you happen to see a fix or workaround? I could just do a browser detection and then not increment if firefox, but that's really more like a bad hack than an effective workaround...
Thanks in advance!
Source: http://community.livejournal.com/php/563403.html
-
Questionnaire
Date: 05/05/07
(WebDesign) Keywords: php, browser, css, html, xml, asp, java, web
Hi everyone! I'm new here, but expect to come back soon enough with real insight and input. In the meantime, I'm working on a tech report (whoever said going back to college would be easy needs to be shot on sight) and could use your help.
I've developed a questionnaire for web designers/developers and would love your input. It will be used for a feasibility report that will analyze and recommend a core set of web languages for training and hiring employees of, say, a small webdesign company. I am willing to forward to anyone the completed report if requested and am also willing to provide copies of other assignments that have been part of this report. After all, I look at unsolicited surveys like this with quite a bit of skepticism and usually want some background.
If you frequent other webdesign forums/communities, please excuse the likelihood of verbatim cross posting, as I am desperately in need of responses (I need quantifiable results within two weeks, yikes!) and don't much have the time to rewrite an introduction six times.
If you have additional input beyond what I'm asking in the survey, please feel free to give your opinions. Thanks in advance for your time and help.
~Ang
1.What web languages do you currently code in?
2.Do you prefer any web languages to others? If so, what? Why?
3.Please rate the learning curve of the following web languages; leave blank if you have not used the language. If you are currently learning the language, please note how long you expect it to take you to learn the language. If there are languages that have been omitted and you have input regarding the learning curve, please add it at the end of the question.
1.HTML (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
2.PHP (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
3.CSS (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
4.JavaScript (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
5.Java (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
6.ASP (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
7.XML (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
8.Flash (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
4.Do you feel that Internet Explorer hinders your designing effectiveness in any way? Explain.
5.Do you feel that Firefox hinders your designing effectiveness in any way? Explain.
6.Do you feel that any other browser hinders your designing effectiveness in any way? Explain.
7.How often do you adhere strictly to W3C standards? (a)All the time (b)most of the time (c)about half the time (d)occasionally (e)rarely
8.Is there one web language you use more than others? Which one, and why?
9.How long have you been doing web design or development?
10.Do you have any certifications? If so, which ones?
Again, thank you for taking the time to look at and hopefully answer this survey. It will be highly useful for my tech report.
Source: http://community.livejournal.com/webdesign/1252839.html
-
Questionnaire
Date: 05/05/07
(Web Development) Keywords: php, browser, css, html, xml, asp, java, web
Hi everyone! I'm new here, but expect to come back soon enough with real insight and input. In the meantime, I'm working on a tech report (whoever said going back to college would be easy needs to be shot on sight) and could use your help.
I've developed a questionnaire for web designers/developers and would love your input. It will be used for a feasibility report that will analyze and recommend a core set of web languages for training and hiring employees of, say, a small webdesign company. I am willing to forward to anyone the completed report if requested and am also willing to provide copies of other assignments that have been part of this report. After all, I look at unsolicited surveys like this with quite a bit of skepticism and usually want some background.
If you frequent other webdesign forums/communities, please excuse the likelihood of verbatim cross posting, as I am desperately in need of responses (I need quantifiable results within two weeks, yikes!) and don't much have the time to rewrite an introduction six times.
If you have additional input beyond what I'm asking in the survey, please feel free to give your opinions. Thanks in advance for your time and help.
~Ang
1.What web languages do you currently code in?
2.Do you prefer any web languages to others? If so, what? Why?
3.Please rate the learning curve of the following web languages; leave blank if you have not used the language. If you are currently learning the language, please note how long you expect it to take you to learn the language. If there are languages that have been omitted and you have input regarding the learning curve, please add it at the end of the question.
1.HTML (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
2.PHP (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
3.CSS (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
4.JavaScript (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
5.Java (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
6.ASP (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
7.XML (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
8.Flash (a)less than 1 week (b)1 to 2 weeks (c)2 to 4 weeks (d)more than 4 weeks
4.Do you feel that Internet Explorer hinders your designing effectiveness in any way? Explain.
5.Do you feel that Firefox hinders your designing effectiveness in any way? Explain.
6.Do you feel that any other browser hinders your designing effectiveness in any way? Explain.
7.How often do you adhere strictly to W3C standards? (a)All the time (b)most of the time (c)about half the time (d)occasionally (e)rarely
8.Is there one web language you use more than others? Which one, and why?
9.How long have you been doing web design or development?
10.Do you have any certifications? If so, which ones?
Again, thank you for taking the time to look at and hopefully answer this survey. It will be highly useful for my tech report.
Source: http://community.livejournal.com/webdev/405402.html
-
CSS problem in Firefox?
Date: 05/08/07
(WebDesign) Keywords: browser, css, html
I'm having an issue with the display of my div boxes, and I'm not sure what the problem is. The weird thing is that I've tested using the exact same browser as the client (Firefox v.2.0.0.3), but we are not seeing the same thing, so I can't even try to recreate the problem at my end.
I have several divs stacked on top of each other, with a grey border and two columns of text. It should look something like this:

and it looks fine in both IE and Firefox at my end. However, my client says that, while it looks fine in IE for her, in Firefox, it is looking like this:

She says that the grey lines are not static. They drag around as she scrolls up and down the page. However, they appear to be contained within the div (ex. they are not moving up to the header area or across the page)
Here is my CSS (.services is the container, .servicespic is the left column, and .servicesdesc is the right column): .services { width:90%; padding:10px; margin-left:30px; margin-bottom:20px; border:#CCCCCC solid thin; overflow:auto; }
.servicespic { text-align:center; vertical-align:middle; }
.servicesdesc { width:60%; float:right; font:0.9em Tahoma, Arial, Helvetica, sans-serif; text-align:left; }
and here is an example of the HTML for the divs:
People with learning difficulties are capable performers in the employment market. Everyone needs the right tools and training to do their job at work and at school. Learn about our expertise
EMPLOYMENT SUPPORT
Going back to school is an exciting, yet challenging time! Learning By Strengths can help ease your transition by helping you learn essential skills. Adults and mature students returning to school are suddenly faced with reading vast amounts of information from textbooks, taking notes from lectures, working independently, and expressing ideas and understanding in written format, including pen and paper tests. For those who haven't previously acquired such important academic skills, or for those that have learning difficulties, the task of mastering content can be overwhelming, and sometimes meet with failure. Learning By Strengths can help ease your transition by helping you learn essential skills. We won't do your homework for you, but we'll help you get it done! In response to this challenge, many students with learning problems including those with learning disabilities have acquired and use specific learning strategies to become successful despite their knowledge and skill deficits. Learn about our expertise
CONTINUOUS LEARNING SUPPORT
Any suggestions? Thanks in advance.
Source: http://community.livejournal.com/webdesign/1253373.html
-
A question concerning tables..
Date: 05/10/07
(HTML Help) Keywords: browser, html, web
I recently joined this community to see if I could get some help or advice with my new website. It's been a few years since I've built a website, and there is one issue that keeps nagging at me.
I was wondering if there was a way to keep a level top to a table, or a way to attach a scrollbar without the use of iframes. In the past, I used iframes for everything, but I know now all of the problems and annoyances they can make for browsers. My problem is that my middle bottom td needs to expand down to accomodate more information and images on certain pages, but I would like the top of the table level with the sidebars. When the information expands, it pushes upwards and makes the table uneven.
My case in point is here http://www.studiopsycho.com/art.html.
Thank you in advance for any help or advice you may have!
Source: http://community.livejournal.com/htmlhelp/2395893.html
-
help with a:hover and IE
Date: 05/10/07
(WebDesign) Keywords: browser, css
I'm using CSS to create a simple rollover effect with borders on this page. The usual: works fine in all other browsers except IE (6 or 7).
Any suggestions?
Page Here CSS Here
As I understand it, browser versions prior to ie7 did not support the :hover selector on anything but anchors... well, these are applied to an anchor pseudo class, so I'm not sure why they're not working....
Source: http://community.livejournal.com/webdesign/1254787.html
-
Rich Text Cut/Copy/Paste on GoogleDocs and LJ
Date: 05/13/07
(Mozilla) Keywords: browser, java, security, web, google
If you've ever edited a document in the word processor of docs.google.com and right clicked to select "copy" or "paste"; you've likely seen a message telling you that Firefox/Mozilla doesn't support the copy/cut/paste functionality. You can see a similar error message in LJ's post/comment web interface: copy and paste isn't allowed?
Well, it just ain't true! Our preferred browser simply has some security settings that must be modified to allow clipboard functions from Javascript. Just add the following to your user.js file:
user_pref("capability.policy.policynames", "allowclipboard");
user_pref("capability.policy.allowclipboard.sites", "http://docs.google.com");
user_pref("capability.policy.allowclipboard.Clipboard.cutcopy", "allAccess");
user_pref("capability.policy.allowclipboard.Clipboard.paste", "allAccess");
The same technique can also be used to activate the copy/paste right click in the rich text editor on LJ, but I'll leave that as an exercise for the reader.
Qvacks.
Source: http://community.livejournal.com/mozilla/388287.html
-
How To Update To Firefox 2.0.x in Fedora Core / Linux
Date: 05/14/07
(Java Web) Keywords: browser
Fedora Core 6 ships with Firefox 1.5.x version. Firefox 2.0.x is currently in development repository of Fedora Core 6. So the command to update to Firefox 2.0.x browser is:
yum -y –enablerepo=development update firefox
It also updates fedora-bookmarks and yelp. At around 21M it is a must upgrade. The current version as of today is 2.0.0.3-4.
BTW: I [...]
Source: http://blog.taragana.com/index.php/archive/how-to-update-to-firefox-20x-in-fedora-core-linux/
-
Beware of SearchStatus Firefox Extension
Date: 05/14/07
(Java Web) Keywords: browser, google
SearchStatus extension for Firefox is a cool extension which shows Google as well as Alexa rankings for each page. However it synchronizes between rank updates in each tab and literally hangs your browser for extended periods when you are working with multiple tabs. In short it simply makes multi-tabbing unusable. The cpu utilization isn’t high [...]
Source: http://blog.taragana.com/index.php/archive/beware-of-searchstatus-firefox-extension/
-
TLS in browsers
Date: 05/16/07
(Web Development) Keywords: browser, security
I discover the TLS protocol.
I read in wikipedia (http://en.wikipedia.org/wiki/Transport_Layer_Security) that in TLS for symmetric ciphers uses RC2, RC4, IDEA, DES, Triple DES, AES or Camellia encryption methods.
Can I define what symmetric ciphers my browser (Firefox, IE and etc)use for the HTTPS-connection?
Is some of them uses more often than others? Or any of these can uses for my connections?
Thanks you!
Source: http://community.livejournal.com/webdev/408406.html
-
scrolling content- browser problem
Date: 05/17/07
(WebDesign) Keywords: browser, html, web
this is the web page i am working on: http://robertmeyersdesign.com/awards.html
the section on the right is supposed to be a scrolling list. it works in Safari and looks great, but it's not working in firefox (and i haven't tested explorer yet). the list is pushed down and over to the right too far and doesn't scroll at all.
sidenote: the whole website was set up by an ex-intern who left on bad terms. i am just adding content and getting the site live, etc.
question: is this an easy fix? how can i make it work in other browsers?
this is what it looks like in Safari and is what it's supposed to look like:

this is what it looks like in firefox (and probably internet explorer)

help?
Source: http://community.livejournal.com/webdesign/1258451.html
-
hello everyone
Date: 05/18/07
(HTML Help) Keywords: browser, html, java
Hi there, joined this community hoping that somebody (who is very nice and quite possibly very smart) could help me with my html problem....
i'm making a entrance pages and main page as image maps, no problems there.
but i've always put them in normal html and resized the image to look best in IE or other browsers....which normally doesn't even look that good.
i've seen other sites that use javascript in order to opena window that is independant of a browser....and a specific size that doesn't have to fit within the browser window....
how do i do this? i've looked up a few different help sites, but got rather confused with what goes where and how to actually format the Javascript code...so if somebody could break it down or lead me to a fairly understandable site then i would be very much grateful....
or you could add me on msn and talk to me that way and i'll express my undying gratitude :D??
ta much everyone xxx
Source: http://community.livejournal.com/htmlhelp/2397769.html
-
Table row problem
Date: 05/19/07
(Web Development) Keywords: browser, css
Hi all, new here and hope you can help.
I'm working on replicating a design and I'm simplifying it greatly. Unfortunately I'm also incurring problems in getting the look consistent.
I have a table layout (because I can't get divs to work properly) with two columns and three rows, the second column spanning all three rows. In the second column is a tall image. The first row has a green background. Unfortunately, unless the amount of text in the bottom row is enough to pass the height of the image, the top row (w/ green background) gets taller (in most browsers). I can't add the "height:" attribute to the CSS of the td, I had to add it to the td declaration itself for it to be recognized in Windows. Anyone know why this would be the case?
Thanks...
Source: http://community.livejournal.com/webdev/409191.html
-
PHP or Python?
Date: 05/19/07
(PHP Community) Keywords: php, browser
Hey guys. Looking for the right solution on something I'm developing. I figured a way to do what I want to do with PHP but I'm wondering if maybe Python or C might be the better solution. Perhaps someone with experience in this realm can give me some advice.
I've been developing a turn based game in Flash but all of my data retrieval and storage happens with LAMP. The game allows the player to either play vs. AI that I've developed within the Flash app, but I'm wanting to add a pvp element. As of now, the player makes a turn(s) and it then passes the data for storage and goes into the queue for the other player to make his (a lot like itsyourturn.com, etc)
I'm wanting to create I guess what you'd call a relay server that would allow two players who were on the site to not have to refresh the browser or reload the app to check if its their turn, etc. Obviously the app would have either a consistent connection or periodic calls to the server/script for both listening and broadcasting events.
I could code such a beast in PHP but I'm wondering about performance since each call to PHP would be a new call (say every second or so). Has anyone ever done anything like this with PHP before or should I be safe and develop a Python or C program to do what I'm wanting to do?
Just looking for some insight before I make my decision. Thanks!
Source: http://community.livejournal.com/php/567291.html
-
disable iframe history
Date: 05/21/07
(Javascript Community) Keywords: browser, java
I'm making a page that has different ads in an IFRAME loading periodically. the ads are hosted on our adserver and the page could be anywhere, so there is some cross-domain issues going on here.
The problem is, after using the page for a while, while the ads in the IFRAME are switching, if the user clicks the back button, the IFRAME moves back and forth between ads instead of going back to the previous page in the browser history.
Is there a way to disable this behavior so that the Back button applies to the entire document and not the IFRAME? I've tried using some JavaScript methods, but the IFRAME pages are loaded by a Quicktime HREF, and since QT can no longer call JS functions, I can't think of any other way to do it.
thanks.
Source: http://community.livejournal.com/javascript/134057.html
-
Simple solution, I'm sure (I hope)
Date: 05/25/07
(WebDesign) Keywords: browser, html
Hi.
I'm writing very simple html code (the basics) and the browsers on my mac are not interpreting it. It just shows the code as I've written it in the browser. Browsers: Firefox, Safari Using: textedit
But, when I use the exact same code on my PC, the browsers interpret it just fine. Browsers: Firefox, IE Using: Textpad
What's going on?
Source: http://community.livejournal.com/webdesign/1259770.html
-
How To Add Double Dash To WordPress Posts
Date: 05/27/07
(Java Web) Keywords: browser
WordPress has the nasty habit, thanks to numerous filters, of converting two consecutive - to different ascii characters. This causes big problem for code fragments where people often tend to cut and paste the displayed code from browsers.
Here is how you can display two consecutive dash (minus sign) in WordPress posts and pages, like --, [...]
Source: http://blog.taragana.com/index.php/archive/how-to-add-double-dash-to-wordpress-posts/
|