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 TouchToneTommy 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. 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"...
  16. LinuXelite

    Linux user needs help from Windows user

    Hi! I'm a Linux user since 1999 and I'm not very familiar with Windows XP. For the first time in my life, I need help from you (I helped a lot of Windows user concerning linux, now its my turn to ask for help). Someone in my family has Windows XP pro. He installed SP2 and had to reformat his...
  17. LinuXelite

    ssh port forwarding exploit

    Well this is a solution. Thanks for the advice. OpenVPN is the best solution, but I need a solution for my customer. They don't know how to build a VPN. I need something that can be setup automaticly when my software start in the background. I'll check what iptables can do for me. And there...
  18. LinuXelite

    ssh port forwarding exploit

    When I said "port 25" it was only an example. A bad example but and example. Lets say that I have a mysql server, and a squid server. Mysql 3306 squid 3128 I want to block port forwarding on squid, but I need port forwarding on MySQL. Now that you are a better admin than me, tell me what...
  19. LinuXelite

    Port forwarding exploit with SSH

    Hello I need to encrypt a connection to a mysql server. The server runs Linux and the client is multi-plateform. So I use a tunnel. I have two solutions: - Stunnel - SSH port forwarding stunnel required openssl and a manual configuration from the client. I don't want that. SSH port...
  20. LinuXelite

    ssh port forwarding exploit

    Its very easy to hack a software. Anyway you dont need to hack the software but create another tunnel with ssh. It seems very easy to me.

Part and Inventory Search

Back
Top