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: edelwater
  • Content: Threads
  • Order by date
  1. edelwater

    to now show 127.0.0.1 in log files?

    On my server I get a lot of Internal Dummy Connections in the log files. Pages full of 127.0.0.01 – - [date] "OPTIONS * HTTP/1.0" 200 - So I entered in httpd.conf: SetEnvIf Remote_Addr "127\.0\.0\.1" loopback LogFormat "%h %l %u %t \"%r\" %>s %b" common CustomLog /apache/var/logs/access_log...
  2. edelwater

    store php in database

    Im trying to store a piece of PHP in a WordPress table (post-content) but somehow I cant get the php tags in because it is interpreted as php. $description = "<" . "?" . "php $" . "objectname = \"$name\"; include_once \"". R_ROOT . "ect.php\"; ?" . ">"; $sql="UPDATE `".TTABLE."` SET...
  3. edelwater

    Missing Package for IO::Tty but which

    Hello Im trying to make IO but Im getting the following error: Can anybody help me which dependcy im missing? Perl Makefile.PL Writing IO::Tty::Constant.pm... DEFINE = -DHAVE_DEV_PTMX -DHAVE_GETPT -DHAVE_GRANTPT -DHAVE_OPENPTY -DHAVE_PTSNAME -DHAVE_PTSNAME_R -DHAVE_PTY_H -DHAVE_SIGACTION...
  4. edelwater

    autoloader.ix error

    Hello, I'm trying to retrieve postings from del.icio.us using the delicious package. I have installed the package and am trying to run this script: http://stephen.evilcoder.com/archives/2005/02/27/daily-delicious-links-perl-script I now get the error: leau.net@cl02:~/data/scripts/delicious$...
  5. edelwater

    No IP from network

    I have installed VMWARE Server on XP, a vmware image also with XP. I have "Bridged:connected directly to network" The virtual XP though does not get an IP from my DHCP. If I set it directly to 192.168.1.200 also nothing. Should I do something else? -- http://leau.net
  6. edelwater

    .pm structure?

    I have a question on module structure and usage:: I have 2 different .pl files they both use .PM's I have put in a subdir. Inside the .pl I have put the complete list of "use" statements for all PM's available. Now I noticed that in both .pl's the same if-then loop exists. This is not a sub...
  7. edelwater

    How to connect via a bridge to an access point

    Hello, I have wifi router downstair, a wifi bridge on the 1st floor and i sit with my laptop on the 2nd floor. However the laptop always connects to the wifi router downstairs and never connects via the bridge so... giving me an extremely weak signal. How can I let my laptop connect via the...
  8. edelwater

    After SP2 ClearCase takes 10 minutes to boot

    After the installation of SP2 our Rational ClearCase takes at least 10 minutes before it comes up. This is really a big problem, does anybody have a clue or guidelines or websites or similar experiences with other programs? 1) the new firewall is turned OFF 2) nothing special in the event log...
  9. edelwater

    How do i create a graph for a time scale with active points

    Hello, I ordered the sleeptracker (see google) watch on the internet and it delivers me daily an overview of my waking moments like this: 01 0:52:29 02 1:30:38 03 3:31:44 04 3:51:29 05 4:23:56 06 4:45:23 07 5:02:08 08 5:27:41 09 5:41:02 10 5:58:47 11 6:19:08 12 6:43:26 These are the moments...
  10. edelwater

    replace chr(10) with chr(13)+chr(10)

    I have lots of strings which have only chr(10) as eol. They show up like little blocks in a certain app. I want to write a hook which replaces the chr(10) with chr(13)+chr(10). The unhandy thing is that the correct chr(13)+chr(10) should be left alone. I need to write the hook in CQ which...
  11. edelwater

    Replace chr(10) with chr(13)+chr(10)

    Hello, some of my textfields are copy and pasted from other appllications and only contain chr(10) as cr. In my application (Rational ClearQuest) this shows as a little block so i want to globally replace all chr(10) which are not preceded with chr(13) with chr(13)+chr(10). THIS DOES NOT WORK...
  12. edelwater

    Major simple update question

    #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''LR1' SET LEFT='1' WHERE ID='1'' at line 1" I try the very simple (with all integers): UPDATE LR1 SET LEFT=1 WHERE ID=1 or UPDATE LR1 SET LEFT=1 WHERE...
  13. edelwater

    Error in IE but not in Firefox

    On http://www.cogmios.nl (my blog) i have an error in Internet Explorer but not in firefox, anyone kind enough to take a look at find the spot where the error occurs? My script debugger doesnt fire-up in my IE7beta. As far as i can see the only incompatibility is in the GRAZR box who does an...
  14. edelwater

    i think a .htaccess problem

    I'm not quite sure if this is a php, .htaccess or wordpress problem. i have domain "cogmios.nl" installed as wordpress domain. Now i added "leau.net" to also point to this subdir (dns changed) However, "leau.net" indeed shows the same wordpress screen but e.g. "leau.net/whateveritype" gives...
  15. edelwater

    Xcopy question

    I wrote a perl file which output a batch file with only xcopy (file) commands (by checking on -d). However when running: xcopy /i /y /r /S for each file it prompts if it is a (f)ile or (d)irectory it should be copying. this is very irritating since i want to run it automatically. Is there a...
  16. edelwater

    Track things people type

    I was just wondering ... if i would put a piece of javascript inside a page which checks every key you press and dynamically (ajax) write this to my database, can i then see what you e.g. type in the google search box in firefox? (so without changing the window/tab) ? Must try this sometime...
  17. edelwater

    to AMP or not to AMP

    I remember i read this somewhere but my asp.net programming is a little while ago, could someone please reference me to a url where i can find the answer? I searched here but could not find it: If i look in my browser at a piece of javascript include, it works. For other users it does not work...
  18. edelwater

    skip DTD in xml load

    Hi, i have a question i have some xmls with in the header : <?xml version="1.0"?> <!DOCTYPE TestAsset SYSTEM "TestAsset.dtd"> However this TestAsset is not present, is there any way to skip it during the doc.Load(rtxmlfile) ? (Since it now generates an error) -- http://leau.net
  19. edelwater

    how to :hyperlinkcolumn in string array

    Simple question: i define an array : subdir = System.IO.Directory.GetDirectories("\\bla\\"); string CorrectString; testGrid1.DataSource = subdir; testGrid1.DataBind(); i define a datagrid : <asp:datagrid id="testGrid1" runat="server" AutoGenerateColumns="False"...
  20. edelwater

    horizontal div of 1 pixel looks different in browsers

    when i do : div.header { left: 6px; width: 975px; position: absolute; top: 97px; height: 1px; background-color: #006699; } It looks OK in firefox but in IE I see 1) a big bar instead of a line and 2) it is 1 pixel "down" so i see a white line between the content above. Is there any way...

Part and Inventory Search

Back
Top