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 Mike Lewis 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. NixerX

    mysql and postfix

    Mideian, You need to chown the /var/lib/mysql dir: chown mysql:mysql /var/lib/mysql then start mysqld -N
  2. NixerX

    New to Linux

    You need to read up on a few things first...I suggets Mandrake Linux as a starting point. http://www.mandrake.com Its easy to use setup with out sacrificing power. Install That then DL the JSEE from java.sun.com As far as Networking ...its not hard you'll just need to reads up on how to use...
  3. NixerX

    Help installing PHP

    If your using an RPM ditribution like Red Hat...why not get the RPMS?
  4. NixerX

    unable to umount the cdrom !

    Try typing "eject" at the command line.
  5. NixerX

    Can't Telnet from windows NT

    make sure the username that you are using allows is part of the telnet group. -N SSH is better.....you should use that..
  6. NixerX

    Fastest Server Side Scripting Language

    PHP and Mod_perl...with out a doubt! -N
  7. NixerX

    Set up PPP on Linux.

    Why not use one ofthe GUI clients...kppp is great under the KDE desktop env -NixerX
  8. NixerX

    Installing and setting up mysql

    Hey...I had this problem before... I happens when the mysql.ini file isnt in the right place... Unistall mysql.. Delete the MySQL folder Reboot Reinstall -N
  9. NixerX

    MySQL & ASP Help!!!! Advice needed

    You have to use myODBC -N
  10. NixerX

    Primary Key Index

    Primary Key is for Refernecing a specific record Index keys are for outright query speed! I have never seen: select * from table name where INDEXED_TABLE='data'; as opposed to select * from table name where PRIMARY_KEY='data'; NixerX
  11. NixerX

    Anybody know why I would get this e

    Alpha = bad
  12. NixerX

    Apache/Mysql/php

    Wheres youre code?????? <?PHP $link = mysql_connect(&quot;localhost&quot;,&quot;user&quot;,&quot;pass&quot;); $use_db = mysql_select_db(database_name); ?> NixerX
  13. NixerX

    Adding files to a MySQL database

    Try to use the Binary data type..I've never used it before but I have heard good things! -NixerX
  14. NixerX

    Drop specified tables

    Drop the database and recreate the database and 5 tables. Or write a sql script that says: Drop table name of table 1; Drop table name of table 2; etc then run the script. c:>mysql -u username password databasename< sqlscript.sql or [user@hostname]mysql -u username password databasename<...
  15. NixerX

    mysql within windows dos. please help!

    no no no.. from the c:> mysql -u user_name -ppassword samp_db < c:/mysql/data/samp_db/insert_president.sql
  16. NixerX

    LOAD DATA LOCAL INFILE

    2 ways: If your are using cd to the directory wher the data file exists and at the terminal mysql -u username passsword databasename then : LOAD DATA LOCAL INFILE &quot;data.txt&quot; INTO TABLE FIELDS TERMINATED BY '\t' ENCLOSED BY '' ESCAPED BY '\\' Or you can point to the path wher the...
  17. NixerX

    Need help with MySQL on Win2k Adv Server......

    First of all what is the error your getting??!!?? Is it a 500? You can run the PERL script with the -w in the shebang header(#!/usr/local/perl -w ...I know its windows but these directives should still work!)from the command line (perl scriptname.pl of I think perl -w scriptname.pl) this will...

Part and Inventory Search

Back
Top