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: *

  1. rhyno2k

    OWA - Can log in, but no graphics / broken images

    @58Sniper: Every resource (including missing scripts & graphics) comes up 200 OK - that's the strange part.
  2. rhyno2k

    OWA - Can log in, but no graphics / broken images

    Hi, We have an OWA server that we need to setup on Exchange 2007 SP1 on Server 2008. OWA is enabled under client access. I am able to get to the OWA web site, login, and authenticate. However, all of the graphics on the main page (and login page) are broken: I'm pretty sure this is the result...
  3. rhyno2k

    Best Anti-Spam for Exchange?

    Thanks everyone for your input on this. Lots of leads to research.
  4. rhyno2k

    Can Test Connect fine, but not otherwise

    dusting off the cobwebs of this group to see if anything lies underneath... I'm trying to connect to a known running SQLBase server (Visual MFG) from my intranet web development server. I installed the Gupta SQLBase drivers & SQL.INI from working client, and a Test Connect from Data Sources on...
  5. rhyno2k

    Best Anti-Spam for Exchange?

    Hi, We've been using GFI MailEssentials (and MailSecurity) for over 3 years now, and it's been... okay. But the product is really losing its spam-catching mojo lately, with no real answers from the vendor, and we need a professional-grade solution that really works. Does anyone have any...
  6. rhyno2k

    Server 2008: 64-bit Standard or 32-bit Enterprise?

    Technome, Thanks for your thoughts. I have come to the same conclusion - time to bite the 64-bit bullet. I can either use compatibility mode (10/12 - not bad) or virtualize older apps. $1500 cheaper, either way! I'm getting the integrated PERC 6i for RAID. Never tweaked any RAID settings...
  7. rhyno2k

    Server 2008: 64-bit Standard or 32-bit Enterprise?

    Hi, Trying to decide whether to go 64-bit Standard or 32-bit Enterprise for our new Server 2008 box. We're a small company, but I do plan to fully utilize Virtualization. And because of that, I'd like to run with 8 GB of memory, which is not an option with 32-bit Standard Edition...
  8. rhyno2k

    How to generate a "true" Word .DOC?

    Right, j. I imagine it is something in the MS Office Schema. (Heading to that forum tomorrow) I just wanted to throw this out there to the community to see if anyone has experienced similar issues and may have found a fix/workaround...
  9. rhyno2k

    How to generate a "true" Word .DOC?

    Hi, I've gotten to the point where I can produce a pretty stylish looking MS Word document from PHP using CSS and writing to a .DOC file. However, it remains an HTML file at its core, and not a true Word document. The .DOC saves fine, looks great, but when editing the document and hitting...
  10. rhyno2k

    How to restrict input for InputBox to certain characters?

    @fumei, that's right. I want to prevent filename input that would cause a file not to be written, try to create a new directory (\), etc. @HughLerwill, I'll try your code.
  11. rhyno2k

    Coping with line breaks in MySQL MEMO field

    Dwarf, I did wrangle it through PHP. Just needed to add another replace for "\r" (carriage return). $text = str_replace("\n"," ",$text); $text = str_replace("\r"," ",$text);
  12. rhyno2k

    How to restrict input for InputBox to certain characters?

    Hi guys, Was out for a while - had a few Drs. appointments... My macro is used by a few office admins to copy incoming purchase orders attached to emails to a folder on the web server running an intranet web app I created. The folder location is fixed. And it's exclusively for .PDFs, so the...
  13. rhyno2k

    How to restrict input for InputBox to certain characters?

    I have a few Replace()s in place, but in my experience there are dozens of characters that can futz up a Windows file write... so accounting for every one, especially when these input strings could contain any number of foreign characters, is incomplete and less than ideal. Is there anything...
  14. rhyno2k

    How to restrict input for InputBox to certain characters?

    Hi, I have a small Outlook Macro that calls up an InputBox. The content of this determines the filename to be saved. We're running into problems with people putting in restricted characters (e.g. slashes), and breaking functionality. The script seemingly completes successfully, but the file...
  15. rhyno2k

    Coping with line breaks in MySQL MEMO field

    dwarfthrower, My str_replace is: $text = str_replace("\n"," ",$text); My JS (using PHP to populate Array decl. string): var parts = new Array( <?php $str = ''; foreach($parts as $p) { $text = stripslashes( trim($p['partsused']) ); $text = str_replace("\n"," ",$text); $str .=...
  16. rhyno2k

    Coping with line breaks in MySQL MEMO field

    Hi, I'm having a helluva time dealing with getting data from a MySQL MEMO field, using PHP, into a JavaScript array. The primary problem I'm having is an unterminated string literal. It's caused by the array declaration line spilling over to multiple lines. This is happening because some of...
  17. rhyno2k

    How to POST XML data via PHP?

    Yea, they only offer rudimentary details on their site. Here's their TrackIT specs: http://www.hotshare.net/file/8080-7829407cf1.html
  18. rhyno2k

    How to POST XML data via PHP?

    Hi, I'm trying to performing simple DHL tracking using PHP. Their specs require that you POST your tracking number(s) via XML, and then are returned XML with their status (which I'll parse in an existing script listing current shipments). Their documentation details each XML element (they're...
  19. rhyno2k

    Trying to find the right template

    Hi, My client is demanding a design like: ################################# #.|-fixed-|.#HEAD.|-fixed-|.....# #SIDE.......##################### #...........#MAIN.|-fixed-|.....# #...........#...................# #..---......#.............---...#...
  20. rhyno2k

    ECO (Engineering Change Order) scripts?

    Hi guys, TinyERP is a full CRM/ERP package, to which I saw a user requesting an ECO module in my Googling... I agree that it wouldn't be the hardest app to code, but it could get intricate. I'm looking for any kind of inspiration at this point -- an existing online ECO demo app (in any...

Part and Inventory Search

Back
Top