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 strongm 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. netcomander

    sql statement not working

    hi, I wonder why you don't use mysqldump http://www.mysql.de/doc/en/mysqldump.html
  2. netcomander

    Where is my.ini on Linux!!! Pls Help

    I guess you are rather looking for file so called my.cnf typically located in /etc/ hope this helps
  3. netcomander

    form issue

    sure there is ... <input type="text" name="text_field_name" value="<?php echo $text_field_name; ?>"> <input type="checkbox" name="cb_name" value="2"<?php echo (($cb_name==2)?' checked':''); ?>> hope this helps
  4. netcomander

    ADD column if NOT exists - possible?

    u may use a function like this: function b_getFieldList($DB,$table,$linkRecource='') { if ($linkRecource != '') $result = @mysql_list_fields($DB, $table,$linkRecource); else $result = @mysql_list_fields($DB, $table); $columns = @mysql_num_fields($result); if ( $no ) return...
  5. netcomander

    file-permission to others?

    thanks Daniel ;) I actually run a webserver. Accordingly I have only a couple of users, who have to gain access to these files. Wouldn't it be sufficient to add those users to the permitted group? I'm aware, that some files have to be accessed by system-users. Can't I restrict access to...
  6. netcomander

    file-permission to others?

    hi all, is it a good idea, to remove permissions for other in the most files? For example xinetd.d, I wonder why anybody is able to read those files stored in there. And what about configuration-files like httpd.conf, smb.conf, named.conf, my.cnf, console.perms... And I wonder, why anybody can...
  7. netcomander

    hi all, I`ve got a problem with

    hi all, I`ve got a problem with some kind of timeout-problem in my formular. I access via odbc-connect to a mysql- database using the &quot;MyODBC-3.51.02.exe&quot;-driver. Upto that point anythin is fine. The poeple in the office can work with the formular, unless they leave the application...
  8. netcomander

    reload my.cnf-settings

    hi all, is there a way to reload my changed my.cnf-settings without restarting the server? and when I do restart the server with /etc/rc.d/init.d/mysqld restart (redhat) what about safe_mysqld then? thanks in advance markus
  9. netcomander

    inserting multiple rows in mysql

    hi, multiple rows: you manage this by the following query: table: tablename columns: name, age, ... INSERT INTO tablename (name, age) VALUES (&quot;tom&quot;,&quot;33&quot;), (&quot;jack&quot;,&quot;22&quot;),(&quot;linda&quot;,&quot;24&quot;),... greetings markus
  10. netcomander

    max_allowed_package

    hi all, does anybody know how to increase the clients max_allowed_package-value? The server and the client have got their own max_allowed_package-value. You can increase the server-value by editing the my.cnf file (safe_mysqld looks into that file on startup...) But I didn't figure out...
  11. netcomander

    disk-failure problem

    Hi all, I've got the following problem. A disk-failure (IDE) occured on my server (RedHat 7.0/Raid(1)). The amazing point is the restricton of the damage to a couple of partitions. Further more it happens that all changes of files (e.g. in /etc) are set back to the previous version on a...
  12. netcomander

    dns-server zone

    hi ifincham, thanks for all the help I already got from you ;), besides your example works fine on my server. I have a last question, which would solve all my problems. what do I do when the domain I want to support within my dns differs from the domain of my dns-server. Somethin like...
  13. netcomander

    dns-server zone

    hi all, I have a web-server, which shall contain its own primary dns-server where my domain is listed. I use the the secondary dns-server of my isp. Now to my problem. The zone egdomain.net leads to the soa: @ IN SOA srv.domain.net. hostmaster.egdomain.net. ( ...)...
  14. netcomander

    freeing allocated memory...

    hi all, I've got a problem with a programm, which deals with linked lists. The main task of the programm is reading datas out of several database-tables. Because I do not know how many fields will be found in a table, I store the datas in a linked list with one element per field. After I'm...
  15. netcomander

    checking whether a user can display flash

    hi all, is there anybody who can tell me how to check, whether a user's browser is able to display flash or not? Thanks in advance greetings markus
  16. netcomander

    Installing PHP with MySQL

    hi qleader, it should even be sufficient, to compile it with &quot;--with-mysql&quot; if you didn't use an exotic location for your mysql greetings markus
  17. netcomander

    Count Files in an Directory?

    hi Lazlo71, if looking into the php-documentation (http://www.php.net/manual/en/ref.dir.php) you will find a couple of directory functions like the followings chroot -- change the root directory chdir -- change directory dir -- directory class closedir -- close directory handle getcwd -- gets...
  18. netcomander

    hi all,

    I just compiled PHP Version 4.0.6, and I did it with ./configure --with-imap-dir=/home/euklid/imap/imap-2001a... anythin now is fine except imap. php says: PHP Warning: Unable to load dynamic library '/usr/lib/php4/imap.so I always thought that imap.so is build automatically, when I build...
  19. netcomander

    my server slows down

    hi all, I set up a linux-server. Allthough there is not that much, it has to do, it slows down by time. CPU states: 0,0% user, 1,9% system, 0,0% nice, 98,0% idle Mem: 776708K av, 738956K used, 37752K free, 70948K shrd, 556880K buff Swap: 268016K av, 2944K used, 265072K free...
  20. netcomander

    openssh

    hi all, I want to compile and install openssh-3.0.2p1.tar.gz on my server. My problem is, that this server is not located in the same city I am and I usually use ssh to login to this server. Does anybody knows, whether it's possible (or maybe not that unhealthy) to install a new openssh...

Part and Inventory Search

Back
Top