1,073 Posted Topics

Member Avatar for anna12
Member Avatar for Jake6177

Can you post the error message you get when you try to access the pages. Also review the httpd logs on the server.

Member Avatar for Jake6177
0
76
Member Avatar for Keithallen12

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 …

Member Avatar for rch1231
0
122
Member Avatar for stoopkid

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]

Member Avatar for smantscheff
0
109
Member Avatar for rajesh1158

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 …

Member Avatar for rch1231
0
187
Member Avatar for garyrickert

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.

Member Avatar for garyrickert
0
906
Member Avatar for DAS-03590

Unless I am mistaken you have to install the printer first then set it as the default printer.

Member Avatar for DAS-03590
0
160
Member Avatar for Sparhauoc

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 …

Member Avatar for Sparhauoc
0
119
Member Avatar for phorce

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 …

Member Avatar for smferoz
0
184
Member Avatar for stuarj1

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 …

Member Avatar for rch1231
0
222
Member Avatar for mary_forum

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` ( …

Member Avatar for rch1231
0
99
Member Avatar for firoz.raj

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.

Member Avatar for jingda
0
65
Member Avatar for [V]

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] …

Member Avatar for rch1231
0
103
Member Avatar for maninaction

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 …

Member Avatar for rch1231
0
129
Member Avatar for silvercats

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 …

Member Avatar for jbennet
0
206
Member Avatar for matleeds

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.

Member Avatar for matleeds
0
245
Member Avatar for ranu jain

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 …

Member Avatar for RvSon
0
233
Member Avatar for heshanm

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]

Member Avatar for urtrivedi
0
176
Member Avatar for mwenyenia07

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 …

Member Avatar for rch1231
0
956
Member Avatar for phorce

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

Member Avatar for rch1231
0
129
Member Avatar for Laurie Sue

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?

Member Avatar for jingda
0
158
Member Avatar for srdva59

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.

Member Avatar for cocolio
0
165
Member Avatar for Ritesh_4

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]

Member Avatar for Ritesh_4
0
164
Member Avatar for uselessninja

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 …

Member Avatar for uselessninja
0
103
Member Avatar for cheaphandbagbiz

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 …

Member Avatar for cheaphandbagbiz
0
349
Member Avatar for bayan.r

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.

Member Avatar for gerbil
0
172
Member Avatar for Mag448
Member Avatar for jholland1964
0
926
Member Avatar for TeejMonster

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 …

Member Avatar for rch1231
0
164
Member Avatar for Deathmachine

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]

Member Avatar for Deathmachine
0
166
Member Avatar for wmc1956

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 …

Member Avatar for tigerbright
0
181

The End.