Jump to content

Oberon

Active Members
  • Posts

    55
  • Joined

  • Last visited

Contact Methods

  • AIM
    CodeDevilCA
  • MSN
    oberon_@hotmail.com
  • Website URL
    http://douglas.thehursts.ca
  • ICQ
    7924940
  • Yahoo
    oberon_.rm

Profile Information

  • Location
    Edmonton, AB, Canada

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Oberon's Achievements

Newbie

Newbie (1/14)

  1. It's been quite a while since I've compiled on a windows box, but just looking at the errors, they imply that you're missing a couple of library files that are being referenced, hence the linking failures (security/cookie related and chanopt functions). I know that doesn't really answer the question, but it's a place to start looking.
  2. Or further to that, is $t4 getting assigned a value at all? It's hard to tell from the snippet, as $t4 hasn't been set in there until AFTER you check if it's ==1 or ==2. The form elements are named tbc and tbc2. Where's the code to grab the values from those elements and assign them to $t4?
  3. http://www.activestate.com/perl_dev_kit/
  4. Same here. I won't be winning anything, but the challenge would be fun!
  5. That's because it's so flat there that you don't notice the change anyway :P
  6. Try: IF "%1" == "" GOTO help ...<do stuff here> goto end :help echo usage stuff here. :end
  7. What didn't work, exactly?
  8. Then, since I don't know your network setup or folder permissions, the only other thing I could suggest is making sure Indexes is on for the server and seeing if you get a directory listing.
  9. do you have the DirectoryIndex set to files that actually exist in the server's document root, and is Indexes set in the Options for the server? you need to add those to get either a directory list or to select a default file when accessing the root without specifying something like index.html in the URL
  10. do you have the DirectoryIndex set to files that actually exist in the server's document root, and is Indexes set in the Options for the server? you need to add those to get either a directory list or to select a default file when accessing the root without specifying something like index.html in the URL
  11. Let me know how it goes. :)
  12. The CSS is easy. It's just a variation of using the style="" attribute on an element, sort of like the background="" that you're using now. You could try: <table style="background-image:url('/pics/image.jpg');"> <tr><td>Make sure that you either have content in the cell or define the width and height of the table.</td></tr></table>
  13. No problem. If http://localhost/images/image.jpg works, then the problem is that you're using Firefox. the <table background=""> is non-standard and works in Netscape and IE. Try using CSS and background-image:URL('')
  14. :P /images/imagename.jpg was an example. you need to see what your documentRoot is set to, then everything will be relative to that. So, for example, if your documentRoot is /var/www/ and you've created a directory called images in /var/www, then the html would be <table background="/images/image.jpg or whatever the image name is. No other configuration is necessary. By default, apache uses <installdirectory>/htdocs on windows and /var/www on *nix.
  15. :P /images/imagename.jpg was an example. you need to see what your documentRoot is set to, then everything will be relative to that. So, for example, if your documentRoot is /var/www/ and you've created a directory called images, then the html would be <table background="/images/<imagename> or whatever the image name is. No other configuration is necessary.
×
×
  • Create New...