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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by LinuXelite

  1. LinuXelite

    Debian vs Gentoo for production server

    I don't think gentoo is "complicated". It's also well documented and the support is great.
  2. LinuXelite

    Debian vs Gentoo for production server

    I don't see any advantage of using Unbutu in place of Debian on the server area.
  3. LinuXelite

    Debian vs Gentoo for production server

    I want to move away from RPM based distrib... so this include CentOS or Whitebox :) Of course I'll never to a emerge -uD world on a production server :) I agree with you... the stable branch of gentoo is "relatively" stable. But for a production box I'm not sure. The best choice would be to...
  4. LinuXelite

    parsing excel file

    Use Excel XML format. I force my users to use OpenOffice or MS OFFICE 2003. They save their document as Office XML file. Quite easy to parse.
  5. LinuXelite

    Debian vs Gentoo for production server

    Hi, We have few servers (RedHat Advance Server). I'm evaluating Gentoo and Debian to replace RedHat. The server's processors are Opteron. It will be a web server and a Qmail server. 2000 users are going to use this server. Gentoo is great and I use this distrib at home and for our internal...
  6. LinuXelite

    Qmail + Fetchmail

    Thanks for your response. However, is'nt possible to use QMAIL INJECT within Fetchmail? That should do but why use qmail-inject when I can use Procmail to move the message directly into the Maildir. I think I'll make a test server and check if this works. I don't see any problem with...
  7. LinuXelite

    Qmail + Fetchmail

    Hi, We developt a web-based CRM software. We designed something similar to gmail or horde. We need to retreive our customer's email from their POP3 server. At this moment, we programmed a JAVA deamon that get Email from their POP3 server and store it into a MySQL table. However we have many...
  8. LinuXelite

    renaming a file for download

    $path='/tmp/file'; header('Content-type: application/octet-stream'); header('Content-Disposition: attachment; filename="' . $filename . '"'); @readfile($path); exit(); Note: Don't forget the "exit()" statement or PHP continue to execute your file.
  9. LinuXelite

    PHP5 + DOM

    Hi How come "cloneNode" don't copy the namespace! Example: $myNode1 represente a dom node: <w:tr> <w:td>test</w:td> </w:tr> $myNode2 = $myNode1->cloneNode(true); or $myNode2 = clone $myNode1; produces: <tr> <w:td>test</w:td> </tr> Notice that I just lost my...
  10. LinuXelite

    php best practices, share your skills with me :)

    Hi We've made our project. We used Linux, PHP5, mysqli and Mysql 4.1. We have 290 classes. We have a SOAP system, we do mail merging OpenOffice Document and WordML file within PHP, we have a XUL interface (for those who uses Firefox), a SyncML Server implementation and a complete report...
  11. LinuXelite

    Linux user needs help from Windows user

    I'll try that and come back with the result.
  12. LinuXelite

    Linux user needs help from Windows user

    No we format the disk. We cleaned the partition. nothing works.
  13. LinuXelite

    corporate messenger...

    Hum... I see. Well may be SNORT can do a great job for you. It sniffs network traffic and can log it into mysql (ACID is a great frontend to analyse snort's log). Snort can monitor what you want. So just configure it to liste n to the port that AIM uses.... Good luck!
  14. LinuXelite

    Advocacy of Linux as a File Server

    Excellent article: http://www.flexbeta.net/main/articles.php?action=show&id=81
  15. LinuXelite

    Authenticate from Windows Domain

    You need to set WINBIND, PAM and Samba. There are a lot of doc in the Internet. This one is very good: http://asia.cnet.com/enterprise/netadmin/printfriendly.htm?AT=39050042-39035505t-39000223c I set up a linux file server using this. You can check if everything is "ok" with "getenv passwd"...

Part and Inventory Search

Back
Top