Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: tanderso
  • Content: Threads
  • Order by date
  1. tanderso

    session_name() undefined

    I'm trying to run dotproject, but I'm getting an error: Fatal error: Call to undefined function session_name() in /home/sites/dotproject/htdocs/dotproject/index.php on line 52 I commented out the "session_name" line, and it gave a similar error on "session_write_close". I grep'ed the...
  2. tanderso

    How do I get the pixel width of a dynamically sized div?

    I'm building a basic horizontal marquee scroller to fit inside of a dynamically sized table cell. Inside the cell, I have a relatively positioned div called "marquee_container" set to "width:100%". This works as expected. Inside "marquee_container", I have an absolutely positioned div called...
  3. tanderso

    html_unescape

    I don't know if anyone else has needed the functionality to output unescaped html from an html-escaped string, but I spent this morning looking in vain on the web for a built-in or custom function to do so. So, after some research on obscure methods, I've built one... function html_unescape(s)...
  4. tanderso

    How do I delete a session cookie?

    Setting a cookie with an expiration date makes it a persistent cookie saved to the HD. Setting a cookie with no expiration date makes it a session cookie, only lasting until the browser is closed. The former type are easily deleted by overwriting the cookie with a new expiration date earlier...
  5. tanderso

    leaking like sieve

    I'm running Mandrake 9.0 with Gnome, Nautilus, and Mozilla, among other apps of course. Everything seems to be leaking memory as if the whole system needs its gaskets changed. I notice it immediately after I run common programs like Nautilus and Mozilla that the memory is not freed-up...
  6. tanderso

    Evolution no longer reads mail folders

    Anyone here use Evolution? It's been working awesome for me for months now. I love it. But, all of a sudden, the mail component failed, and now it won't start again. The Evolution GUI starts up, but it just says, "Opening folder file://...," and never actually opens any of the...
  7. tanderso

    New RAM == unstable

    I've previously posted this in the linux desktop forum, but could not find an answer. Please help if you can. I've added 1G of RAM and now my system is unstable. I have a Soyo Dragon Plus! with three DIMM slots capable of supporting up to 3G according to the manual. I have three DIMMs...
  8. tanderso

    New RAM == unstable

    I've got a discussion over in PC Hardware about a problem I'm having with installing a new DIMM. It is looking less and less like a hardware problem, and perhaps could be a problem with the OS. I'm running Mandrake 9.0. Please take a look at that discussion: thread602-436463, and lend your...
  9. tanderso

    New RAM == unstable

    I've seen posts that have been somewhat similar to my situation, but I haven't seen a convincing response yet. Here's my situation... I have a Soyo Dragon+ MoBo w/ Athlon 1600+ w/ 2x 256M PC2100 DIMMs. One DIMM is original to the PC, the other is a replacement that was sent from the...
  10. tanderso

    Readdir problem

    I have the following block of code: ---------------------------------- my $string = &quot;&quot;; my $dir = &quot;$self->{path}&quot;; $dir .= &quot;$folder&quot; if $folder; print qq~Opening $dir...<br>\n~ if $self->{debug}; opendir(DIR,&quot;$dir&quot;) || return...
  11. tanderso

    Table height=100% in NS, Mozilla, and Opera

    As much as I despise Microsoft in most respects, I have to admit that they've got the only browser which works correctly. This is true in many respects, but I have one problem in particular for which I cannot find a work-around for the other browsers. I want a table to fit exactly 100% of the...
  12. tanderso

    LWP::UserAgent 500 read timeout

    I'm having a strange problem with LWP::UserAgent wherein one particular URL continually gives me a 500 read timeout error. Client: http://upn24.tv -- MS IIS/5.0 on Win2k Server: http://208.31.25.3 -- MS IIS/5.0 on Win2k Link to script...
  13. tanderso

    href style inheritance

    I would like to define menu and submenu styles for links where submenu inherits all of the menu properties except for the ones it changes. Does CSS have the capacity to do this? Sincerely, Tom Anderson CEO, Order amid Chaos, Inc. http://www.oac-design.com
  14. tanderso

    Voice over IP providers

    Does anyone know of a VoIP provider that has free US to US calling and supports PC-free hardware devices? Sincerely, Tom Anderson CEO, Order amid Chaos, Inc. http://www.oac-design.com
  15. tanderso

    Another regexp problem

    I'm just full of these today ;-) I get the error: Use of uninitilized value at ... line ..., pointing to these lines: $line =~ s/<!--#include(.*?)=[&quot;']\/(.*?)[&quot;'](.*?)-->/ grab(&quot;$global_inc\/$2&quot;,$path,$inc_path,$global_inc)/eg; $line =~...
  16. tanderso

    Problem executing the right side of s///e regexp

    This works: $content =~ s/(href\s*=\s*[&quot;'])($base(.*?))([&quot;'])/ $1http:\/\/$ENV{'SERVER_NAME'}$ENV{'SCRIPT_NAME'} \?URL=$2&amp;HEADER=$header$4/gis; This doesn't: $content =~ s/(href\s*=\s*[&quot;'])($base(.*?))([&quot;'])/ $1http:\/\/$ENV{'SERVER_NAME'}$ENV{'SCRIPT_NAME'}...
  17. tanderso

    Parsing the output of a Perl script as an ASP

    I'd like to know if it is possible to parse the output of a Perl script as ASP before being sent to the client. Sincerely, Tom Anderson CEO, Order amid Chaos, Inc. http://www.oac-design.com
  18. tanderso

    Clipping a layer

    I use this code to restrict the inner contents of a layer: <div style=&quot;position:relative; width:468px; height:60px; margin:0px; clip:(0px,0px,468px,60px); overflow:hidden;&quot; width=&quot;468&quot; height=&quot;60&quot;></div> However, nothing shows up in the layer on some versions of...
  19. tanderso

    Styling a textarea

    I'm having a problem in NS4+ where when I apply a style to a textarea, the text does not span the width of the textarea and it no longer scrolls. Go to http://www.upn9.com/ and click on one of the streaming video stories to see what I mean. In IE4+ and NS6 it works as expected. Is there...
  20. tanderso

    WMV only plays audio... need video too

    Using Media Player 6.4 (asf) files seemed to play everything correctly. Now, I'm trying to produce multibitrate wmv files, but the embedded player (which is 6.4.07) only plays the audio and not the video. Does anyone know how to make the video work on these files for the embedded player...

Part and Inventory Search

Back
Top