1,073 Posted Topics
Re: Ok first are we talking Linux or windows shell? | |
Re: Can you post the error message you get when you try to access the pages. Also review the httpd logs on the server. | |
Re: It is probably interference from something in your house. The cordless phones sold that run in the 900MHz range can cause interference and having the wireless card antenna to close to a floor can cause problems. Wireless systems use a very short frequency that can actually reflect and interfere with … | |
Re: I think what you are trying for is where r1 = standard and the status is either NTC or In Progress. If so try this: [CODE]SELECT * FROM installs WHERE r1 = 'Standard' AND (STATUS = 'NTC' OR STATUS = 'In Progress') ORDER BY building, appointment_date ASC[/CODE] | |
Re: Ok with a relational database you create a table to hold a specific piece of information. The link the information in the tables together with the record IDs for the information in the other tables. I would create 4 tables projects, users, skills, user_rating [CODE] Projects ID int 11 primary … | |
Re: The way the logs are written to is determined by the application doing the writing. Normally there are entries in the application conf file to tell it how to make entries in the log. | |
Re: Unless I am mistaken you have to install the printer first then set it as the default printer. | |
Re: MySQL uses the system time but makes adjustments for UTC. UTC (Coordinated Universal Time) is an atomic timescale that approximates UT1. It is the international standard on which civil time is based. Universal time is a timescale based on the rotation of the Earth. It is a modern continuation of … | |
Re: You want cat5e if at all possible, especially if you plan on having gigabit Ethernet switches or NICs. And here is why: The Simple Answer: CAT-5 is rated to 100M CAT-5e is rated to 350M CAT-6 and CAT6e is rated to 550M or 1000M depending on your source CAT-7 is … | |
Re: The only thing I can think of is that the second SATA port is not enabled in CMOS setup. On some mother boards you have to tell the BIOS that there is now a drive conneted and then if will probe the cable. With SATA there is no primary-secondary like … | |
Re: If you are referring to a simple master, detail type relationship I normally do something like this: [CODE]CREATE TABLE `master` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `Invoice_Date` Date() Default null, `Customer_Name` VARCHAR(55) default NULL, `Customer_Address` VARCHAR(55) default NULL, `other_fields` VARCHAR(55) default NULL PRIMARY KEY (`ID`)) [/CODE] [CODE]CREATE TABLE `detail` ( … | |
Re: That you will have to take up with their customer service. May I suggest Team Viewer, it is also free and has the ability to transfer files which gotomypc only includes in their pay version. | |
Re: Not sure if this will help but if you redirect the output to a file you can then watch the file grow with tail -f <filename>. For example if you ran the following: [CODE]# myscript > myoutput.txt[/CODE] You could watch the output as it arrived using: [CODE]# tail -f myoutput.txt[/CODE] … | |
Re: This is just off the top of my head mind you but you can determine the parent process id of the perl script via getppid You could use this to kill the login shell. [CODE]kill 'STOP', getppid; [/CODE] From a Perl Manual: [CODE]kill LIST This function sends a signal to … | |
Re: OReilly makes the best books on just about any computer topic. O'Reilly - Designing Large-Scale LANs O'Reilly - Network Security Assessment 2nd Edition Nov 2007 O'Reilly - TCP IP Network Administration O'Reilly - Internet Core Protocols The Definitive Guide O'Reilly - TCP IP Network Administration 3rd Edition O'Reilly - The … | |
Re: What happens if you put that URL in a browser on that computer? May tell you what is going on and also check the apache logs for the errors when it tries to get the page. | |
Re: Have you thought about simply putting it in a batch file. You can call a sql script straight from the command line or put it in a batch file like this: [CODE]mysql -u root -ppassword mydatabase < myscript.sql [/CODE] Or you can use the first line of the script to … | |
Re: There is no ; at the end of the sql query to tell MySQL to execute the code. Try this: [CODE]$query = "UPDATE account_details SET approved_status='1' WHERE account_number='$account_number';"; $result= mysql_query($query) or die(mysql_error()); [/CODE] | |
Re: I had a similar problem my self once. The problem is PHP scripts are designed to be run from a browser or web page and not the command line. When you think about it from that angle the answer is obvious. You either act like a browser or tell the … | |
Re: You can use telnet (you may need to add it to windows). telnet <ipaddress>:443 will connect you to port 443 at the ipaddress example: telnet 192.168.1.20:443 or telnet mysite.com:443 | |
Re: Open it back up and see if there is a cable or wire where the fan is hitting it. Or is the bearing going out on the fan? | |
Re: What you are looking for is a firewall. If you are running Windows (depending on the version of Windows) you can configure the built in firewall to do some of it. If you are running Linux then read up on iptables which is the linux firewall. | |
Re: Unless I am mistaken you need to set the following lines in the /etc/vsftpd/vsftpd.conf file: local_root=/var/www/ chroot_local_user=YES Try this site for more information: [URL="http://ubuntuforums.org/archive/index.php/t-518293.html"]http://ubuntuforums.org/archive/index.php/t-518293.html[/URL] | |
Re: A join is used in a query to retrieve data from more than one table based on a common element in the two tables. For example you might keep shipping addresses in one table and orders in another with a field in the order table holding the id of the … | |
Re: Your problem is probably due to the ownership of the files. In order for web applications to access files they must be in a directory that has group ownership by the apache user on the system. Making it 777 is not the answer. If the files are owner by root … | |
Re: I have used this before. create a file called exefix.reg with the following in it: [CODE] Windows Registry Editor Version 5.00 [-HKEY_CURRENT_USER\Software\Classes\.exe\shell\open\command] [-HKEY_CURRENT_USER\Software\Classes\secfile\shell\open\command] [-HKEY_CLASSES_ROOT\.exe\shell\open\command] [HKEY_CLASSES_ROOT\.exe] @="exefile" "Content Type"="application/x-msdownload" [-HKEY_CLASSES_ROOT\secfile] [/CODE] Then right click on it and select install. | |
Re: Your log from Malwarebytes is for a quick scan not the full scan. Run the full scan. | |
Re: You have a -p flag for the password but nothing entered. If there is a root password then it should be prompting you. If there is not one remove the -p. You also should have a -D in front of database like this: [CODE]mysql -u root -ppassword -D newdb -e … | |
Re: Ok I have looked around for something that might help but the only think I can see is I believe there should be a space after the IN [CODE]class CHAR(10) NOT NULL CHECK class IN ('x1','x2','x3'), [/CODE] | |
Re: Hello, What you need is the motherboard chipset driver. It has the drivers for the CPU, memory controller and other motherboard resources. Normally it is best to install it first them any other drivers. Without it your system cannot talk to the onboard video chipset so the drivers would not … |
The End.