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 SkipVought 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: rybo
  • Order by date
  1. rybo

    Adobe 5.0 will not open through Internet Explorer

    You could narrow it down to either the browser or Acrobat reader by installing another browser (I'd suggest Mozilla: http://www.mozilla.org/ ). Then open and the document and try printing. If it works, then IE is to blame. If it doesn't, then you'll have to dig deeper.
  2. rybo

    Re-PDF'ing after links & bookmarks are created

    Hi, I'm converting a Microsoft HTMLHelp document to PDF, which works great. Links aren't preserved, but I didn't expect them to be. So I'll need to go in and manually insert all links, but here's what I'm worried about: after inserting all the links and making bookmarks, I have to re-PDF the...
  3. rybo

    Ahhh!!! Is it impossible to remove that background template stuff?!

    Okay, it was in a header and footer - but who would have thought as it went up the side of the document?! It was somewhat of a pain to remove all the contents in the header/footers. It would have been nice to be able to just turn off headers, footers. But THANKS SO MUCH for the help, it would...
  4. rybo

    Ahhh!!! Is it impossible to remove that background template stuff?!

    I have a document that I received from a Russian colleague, and it has a dull grey border/template that I can't touch. I've tried everything (but the right thing) to remove it, but just can't modify it. I've tried cutting or copying the page, but it takes the border with it. Any ideas? I'm...
  5. rybo

    Can someone explain this permissions chaos!

    Hi, I'm running apache on Linux Mandrake 9.1. One thing I don't understand - I'm trying to run cgi-scripts (mainly a statistics one). First off, what permissions should the cgi-bin folder have? What permissions should the cgi-scripts have? Who should own them, apache or root? Apparently...
  6. rybo

    SSL with Windows - How do I do it?

    Just another note - this is on Apache 2 (2.0.36 to be exact)
  7. rybo

    SSL with Windows - How do I do it?

    I've looked around and can't find out how to install SSL with Windows. I obviously don't want to have to pay to do it. I'm sure someone has done it, and hopefully they will be reading this and have the answers on how. Thanks in advance.
  8. rybo

    I Just Downloaded Appache, What Next?

    One resource for some information: http://interwebber.com Another is http://www.dslwebserver.com/ Hope this helps.
  9. rybo

    running apache on windows 2000 pro

    One resource for some information: http://interwebber.com Another is http://www.dslwebserver.com/ Hope this helps.
  10. rybo

    Website appears on local network, but not outside

    http://nuggetngem.com - but it looks like they don't have the whole port-forwarding thing figured out yet...
  11. rybo

    Website appears on local network, but not outside

    I think I figured out that it is the router (this isn't actually my computer, so I haven't checked this yet). I think port-forwarding needs to be set up so the request is sent on to the server.
  12. rybo

    Dynamically Read Variables

    <?php $var0=&quot;hey&quot;; $var1=&quot;you&quot;; $var2=&quot;guys&quot;; $i=0; while($i<3) { $temp=${&quot;var$i&quot;}; echo $temp.'<br>'; $i++; } ?> -Ryan
  13. rybo

    Website appears on local network, but not outside

    As the subject says, I can get my websites to appear on the local network (typing http://mydomain.com), but outside of the local network, my website doesn't appear. It shows that it is going to my IP address, but the site isn't coming up. I have my firewall disabled. I have win2k pro, apache...
  14. rybo

    Help, I'm stumped on objects! I don't want to use ASP!

    I have the following example: $user = new COM('MailServerX.User') or die(&quot;Did not work&quot;); $user->UserNames=&quot;joe&quot;; $user->Password=&quot;secret&quot;; $user->Release(); $user=null; ...Which does nothing more than declare an object, set some of its variables, and then...
  15. rybo

    PHP hosting questions

    I'm writing a webmail application in PHP. It saves e-mails outside of the www directory so saved information (such as e-mails, address books, etc) don't have world-access through Apache (or any web-server for that matter). This works fine on my machine because I have access to the whole file...
  16. rybo

    search a .txt file

    Maybe even more interesting is that you could have your text file sorted according to entries and then do a binary search on it each time you wanted to know if the item existed in the file. This way you would have super-fast result times. support@interwebber.com if you are interested in details.
  17. rybo

    something weird with echo - where's the rest of the string?

    I'm getting something very un-expected and would greatly appreciate help... if I do the following: <?php $temp=&quot;From: <someone@somewhere.com>\r\n&quot;; echo $temp; ?> ...it prints to the screen the following: From: ...so where did the rest of it go? How do I get the whole line to...
  18. rybo

    Memory usage increases, decreases with restart

    I run apache 2.0.36 on Windows NT 4.0 with PHP 4.2.1. It's memory usage climbs from about 6M when first started. When it is up to about 11M, I restart the Apache and it drops back down. Why is this? Is this a memory leak? Thanks, in advance.
  19. rybo

    How to browse filesystem for filepath

    Thanks for the suggestions. I have looked into using the upload feature, but I don't need to upload anything, I just need to get the path of a directory that the user will browse for. I want a browse button (similiar to that used when uploading a file), but I just need it to &quot;grab&quot...
  20. rybo

    How to browse filesystem for filepath

    I need just the path of the file on the server using a browse-like feature similiar to browsing for the install location when installing a program on your computer. I know that multipart/form-data will allow you to browse, but that is for uploading a file. I just need the path to a browsed...

Part and Inventory Search

Back
Top