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 Wanet Telecoms Ltd 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: *

  1. WintersMystic

    cgi/ssi enabeling.

    i just got Apache 1.3.22 installed. now i want to get CGI working. i changed the httpd.conf file apropriately. but i still get a 500 error. so, do i need to install perl from activestate? here is what is in the error.log [Wed Jan 23 17:00:06 2002] [error] [client 127.0.0.1] couldn't spawn...
  2. WintersMystic

    Using Regular Expressions to color HTML tags

    i need to change the color of the < and the > of HTML tags in a Perl/CGI script. im VERY new to regular expressions. but i have tried this, but i get some weird results lol. $html =~ s/</<font color=red><<\/font>/gi; $html =~ s/>/<font color=red>><\/font>/gi; this actualy results in the...
  3. WintersMystic

    disable View&gt;Sourse and right click view source

    is this possible with JS or would you have to use VBScript? THank you
  4. WintersMystic

    Banner Rotation Script

    can somone tell me why this errors out after the second banner is shown and it tries to load the next? all images are in the images dir. the first two banners show, then after the second it errors. error msg: line 1 char 1 object expected. <script language=&quot;JavaScript&quot;> var...
  5. WintersMystic

    proper usage

    i am writing a form script for a friend of mine. it has 29 inputs and submit reset buttons. my question is, is it proper to put the HTML into the php script or is it more apropriate to &quot;call&quot; the php script with the form on an .html page? im asking because i was told the script would...
  6. WintersMystic

    Saving PHP Generated Images

    i am learning how to create images with php. i have it going pretty good, but now im wondering if it is at all possible to save the image into .jpg .png or .gif formats? if so how? also, on ImageColorAllocate($im, 225, 0, 0); is it possible to send the numbers from three form text boxes to...
  7. WintersMystic

    Image::Size problem

    below is my code. this is straight off the docs for Image::Size. and it is installed on my webhost. but i get nothing but a blank screen when i test it. any ideas why? #!/usr/bin/perl -w use CGI::Carp qw(fatalsToBrowser); BEGIN{ use CGI::Carp qw(carpout); open(LOG, &quot;>mycgi-log&quot;) or...
  8. WintersMystic

    directories on a webhost

    ok, i cant get perl to run on my PC. not sure why, besides the fact that i dont have the HD space right now. so i have to work on webhosts. well, what i want to do is list all directories under say: /home/here/there/user everyone tells me to use File::Find, but no matter where i go it doesnt...
  9. WintersMystic

    Database Program

    i am trying to find out what the easiest and fastest to use program to write a database to use in VB 5.0 PRO would be. i dont have any prog on my PC to write a databse with.
  10. WintersMystic

    proper usage of CGI.pm

    ok, some people tell me that this is the proper way use strict; use CGI; use CGI qw(:standard); $q = new CGI; and others tell me i dont need use CGI; when using use CGI qw(:standard); which is right?? :)
  11. WintersMystic

    Net::FTP two ?'s

    ok, i am trying to install a FTP program(transloader for webtv users) on Hypermart. the script works on my other server fine. but on hypermart i keep getting &quot;Bad File Descripter&quot; on the Host line. use Net::FTP; $ftp = Net::FTP->new(&quot;$host&quot;) or die &quot;Host: $!&quot...
  12. WintersMystic

    Printing a webpage

    is there a tutorial on how to print a page that is filled with user selected options with VBScript? say users info is printed without the printer dialog box being involved?
  13. WintersMystic

    project wont compile (VB 5.0 Pro)

    i posted this somewhere else, but no answeres yet, and i really need help now before i throw this whole program (VB 5) out the window. ------------------------ i am using the wizard that comes with VB5.0 Pro i havent found any others that are easy to use for a newbie :( p.s. i am having some...
  14. WintersMystic

    WhoIs

    im working on a WhoIs script for a friend, and i have it working correctly, but im not sure how to get it to give the name of the person who registered a site. how can i do this? tia :)
  15. WintersMystic

    Expression ?

    can someone tell me what this is doing? if ($graphicsfile =~ /.*[\/\\](.*)/){ $output = $1; } else { $output = $graphicsfile; }
  16. WintersMystic

    image and picture textbox controls

    ok, two questions here. one, how do get image and picture controls to auto resize without covering up a label control at the bottom of the form? and two, on textboxes, how can i get it to fit the form when it is maximized? i got it to work on VB 3.0 standard but not on VB 5.0 professional...
  17. WintersMystic

    Need a Tutorial

    i need an Image::Magick tutorial. The more indepth the better. :) please someone help!! :) :) have a great day yall :)
  18. WintersMystic

    using image/gif

    how can i use <pre> print &quot;Content-type: image/gif\n\n&quot;; </pre> in a script? i am trying to make the script to where i can call it with <img src=&quot;script.pl&quot;>. but the way i have it now is being a serious pain in the a$$ :)
  19. WintersMystic

    script not workin

    hi, :) ok, this script is a contact form email script. i havent put in the email routine, cause that i know how to do. well, this one wont work at all. what im wanting it to do so far is show each of the error msgs if that field is left blank. ive never used a die call, so i dont know if thats...
  20. WintersMystic

    Need Tuts on Client Side VBScript

    my server supports VBScript, but not ASP. can anyone provide me with some good Client Side VBScript tutorials? im a complete newbie to VBScript. :( lol

Part and Inventory Search

Back
Top