1,073 Posted Topics
Re: Hello, It sounds like there is something in your php code that is deleting the table out of the database. Do you have a backup of the tables fromm before you started accessing them with php? If you created the table initially by using php and your running the same … | |
Re: Hello Your missing a few things in your crontab file. Simply placing the file in /etc/cron.hourly is not enough. The format of an entry in a crontab file is like this sample file. Lines that start with a # are comments and ignored by cron: # use /bin/sh to run … | |
Re: Rubberman, as usual, is correct. One of the most important things you can do to make your cache more efficient is to make sure there is plenty of RAM in the server. To make the most efficient use of real memory, Linux automatically uses all free RAM for buffer cache. … | |
Re: Hello, Try this for your statement: $sql = "SELECT Distinct p.p_id, p.p_active, p.p_sku, p.p_slug, p.p_title, p.p_desc, p.p_price, p.p_qty, p.p_instock, i.p_img_id, i.p_img,i.p_img_thumb, i.p_id, c.c_id, c.c_title, c.c_slug FROM products AS p INNER JOIN categories AS c ON p.p_catid = c.c_id INNER JOIN product_img AS i ON p.p_id=i.p_id WHERE p.p_catid='$c_id' AND p.p_active='1' ORDER … | |
Re: Hello, You probably do not have php installed on in the system. Ubuntu uses apt-get from the command line or software manageer from the gui to add applications. Since it sounds like you already have apache installed, to install php and the php-mod for apache from the terminal (command line) … | |
Re: Hello, The warning you are getting is telling you that the hostname of the server (which you said has no full stops) cannot be resolved to a IP address. You can fix this in one of two ways: 1. The easy way. edit the /etc/hosts file and add the name … | |
Re: Hello, I had an HP connected to a docking station and it is possible to get two monitors working. You have to have the laptop in the docking station when you boot it up and both monitors powered on. IF you go to the detect displays option in windows you … | |
Re: Hello, This answer is if your web site is on one server and the database is on another and your database is in MySQL. What you need to do is to create a login to mysql for the <database user>@<the server you are requesting the data from>. For example: Lets … | |
Re: Hello, In order to find out what is going on you really need to start with the basics. On your computer open a command prompt. Under Start, All Programs, Accessories, Command prompt. You will get a window that takes you to the old msdos prompt. 1. Can you get to … | |
Re: Hello, Your going to have to test to see if the number is in a list of the prime numbers. They are fixed after all and you can find out what they are in multiple places on the internet. For example here is a site that has the first 1000 … | |
Re: Hello, You said you could hear beeping from the computer when you boot. Is it just one beep? If not the beep codes are designed to help you diagnose errors. You need to determine what the pattern is (i.e. One long beep repeated continually, 2 shorts and a long beep, … | |
Re: Hello, I am pretty sure that you can turn the router into a simple switch. You would still be able to use the wireless capability but you would use the DHCP from the the UVerse router. If you run into issues you an go on line to the Linksys site … | |
Re: Hello, Here is something I had to use once on a system that did not ahve ls... echo .* only gives you back the results like ls with not size or other data. | |
Re: Hello, The etc hosts entry should override the information being pulled for DNS from any nameserver. Based on my own mistakes have you checked the speling in /etc/hosts and on the Location entry? Do you have any sites running on the server or is this the first site you are … | |
Re: Hello, I would import the CSV file into the MySQL database as a different table. For example if the table in the current database is customers then make the import table customers1. Then use sql queries to compare the two tables. This type of query is what MySQL is designed … | |
Re: Hello, The problem is that you do not ahve the mysql serve running which is called mysqld. You may not have it installed but and the client and server are two different packages. | |
Re: Hello, I would try uninstalling the driver and then power off the computer. Next power the computer on and see what the system installs for the device. But if you can provide more information such as: What OS are you running on the computer? Is this a tower or notebook? … | |
Re: I have to agree with rubberman and mike_2000-17 for most of the same reasons. I run a couple of different Linux systems depending on what I am using it on. For servers on the web I run CentOS and for my laptops and desktops I run Fedora 14. I do … | |
Re: Hello, How about giving us a little more information. Does the fan in the power supply come on? Do you hear any beep codes? How do you know the RAM is working? | |
Re: Hello, You could use either vlookup or hlookup to fill the value in from the other table. Based on the information you provided you would need to use vlookup. VLOOKUP Searches for a value in the top row of a table or an array of values, and then returns a … | |
Re: Hello, Rubberman is correct and what he is trying to tell you is you need the ID fields (first field of each table) to be a key field and built with a unique index (normally also set to auto increment). The when you join the fields the lookups will use … | |
Re: Hello, Can you provide a little more information? What version of windows are you running? DO you show any problem devices in Device Manager? what sould device are you using (built in, expansion card, etc.)? | |
Re: Ok try this. Instead of selecting R at the first screen continue on as if you were going to install (do the <F8> License, when you get to where you repartition if needed leave it the way it is and Setup will "Search for a previous installation" It will detect … | |
Re: Hello, Since you mention cron I am assuming a Linux system. You have to remember that cron does not work like a normal user. You have to provide the absolute path of the files you want to run and set variables to allow it to run. If you are tring … | |
Re: What you are seeing is the GRUB boot loader. It allows you to boot multiple operating systems from the same drive. If you leave the system at the screen it should go ahead and boot Ubunto after a few seconds. Here is a link to more information: [https://en.wikipedia.org/wiki/GNU_GRUB](https://en.wikipedia.org/wiki/GNU_GRUB) | |
Re: Hello, This is a know issue with Mint. You need to install the gnome-screensaver and add it to gnome-session-properties. [http://www.linuxmint.com/rel_nadia_whatsnew.php](http://www.linuxmint.com/rel_nadia_whatsnew.php) | |
Re: Ok from what I see you never test to see if the process ID is in your list of ID's to exclude. I think you need another test to see if the id is in the array of Process ID's. My guess is that the test should be done around … | |
![]() | Re: Hello, I am not sure what caused the file names however you can look back throught your command history by typing *history* at the command prompt. To remove the files I suggest you use something like: `/bin/rm -i /full_path_to_directory/*` The -i will cause rm to prompt you about deleting each … ![]() |
Re: Hello, Depends on if they are Windows based or Linux based or a mix of both. And then are they physiclal or virtual servers? Physical For the Windows systems that are part of your domain you can download for free from Microsoft sysinternals tools (like psinfo.exe). They can be run … | |
Re: Personally I would move to another provider if they chose to change my OS without my consent. Your php will work just fine provided they have PHP enabled in IIS and MySQL installed on the server you are moving to. Why anybody would move clients off of a server OS … ![]() | |
Re: Hello, What you need is a router instead of a hub or switch. The router will manage the conection to the WAN (internet) and give each of you a local connection (LAN) and address. With a router your internet provider will only see the one connection from the router and … | |
Re: Hello, Mac OS-X is a version of Linux compiled for the MAC with additional specalized applications added. Although there are a few viruses for Linux based systems they are few and far between but you cannot say that the MAC and Linux are Virus free. They are more secure and … | |
Re: Hello, The appliation yo are looking for is called rsh or remote shell. Try ***man rsh*** from google or the command prompt for more information. | |
Re: Hello, What you need to do is set up the nfs mount point on the server you want to connect to. A good discussion on setting this up can be found at: [http://tldp.org/HOWTO/NFS-HOWTO/server.html](http://tldp.org/HOWTO/NFS-HOWTO/server.html) or Here: http://support.coraid.com/support/cln/CLN-HOWTO/ar01s06.html | |
Re: Hello, For a genereal idea of what is involved in setting a PXE boot server here is a link to the CentOS (Red Hat distro) instructions which should be pretty close to what you need. [http://wiki.centos.org/HowTos/PXE/PXE_Setup](http://wiki.centos.org/HowTos/PXE/PXE_Setup) | |
Re: Hello, From what I can see there is something in the data in some of the inserts that is off or a special charcter . I tried to run your sql code and remove various rows from teh fe table and it would never load. If I removed the inserts … | |
Re: Hello, Hope this helps. From O’Reilly Media, Inc. bash Cookbook. Test Operators The operators in Table are used with test and the [...] and [[...]] constructs. They can be logically combined with -a (“and”) and -o (“or”) and grouped with escaped parenthesis (\(...\)). Table A-9. Test operators Operator True if … | |
Re: Hello, Try something like this substituting your table and field names: select table.timefield, count(table.timefield) AS NumberOf FROM table GROUP BY table.timefield HAVING NumberOf > 1 This should give you only times where there is more than on row and the number of rows. | |
Re: Hello, Your going about it the log way. Try replacing lines 14 and 15 with this: `update summ ` `set summ.val = (select sum(det.vat) from det where det.id = summ.id);` Or do you really need the temp tables. Take a look into *group by* and *sum*. | |
Re: Hello, I think you are missing the DATE_ADD and have the wrong quote marks around the field name. Try something like this from the mysql manual: SELECT something FROM tbl_name WHERE `tbl_net_centre.reg-date` <= DATE_ADD(CURDATE(),INTERVAL 3 MONTH) ; | |
Re: Hello, I have a couple of comments and suggestions that I hope will help you. These are mainly to get you thinking in terms of what information you need to provide for the application to work. 1. If you are planning on using this program more than once then you … | |
Re: Hello, Yes all you do is use two greater than symbols and it appends rather than overwriting. `curl -k "$FIELDLABEL" >> result.txt` | |
Re: Looks like some sort of Virtual NIC. Are you on a virtual system (ESX guest) or running any virtual software on the server? | |
Re: Since you are using Linux take a look at the ***wall*** command. wall stands for write all and writes to all users connected to the server. | |
Re: It depends on how old an application you are looking at. There was a database called proFile on the Tandy 16 and 6000 series computers and later for Tandy Xenix on the T2000 or T3000 (80386) Systems. It was also sold seperately as FilePro and was a Relational database that … | |
Re: Hello, I see three things. First the -type d is looking for directories not files. Second, you don't need the asterisk on the directory Third, I normally run a test command using* ls *instead of rm to make sure the output I am getting is what I intended. `find /Volumes/Backup/ … | |
Re: You can try moving either your wireless router or the wireless antenna for your card to a higher position while leaving it in the same room. If the antenna on either is to close to the floor the high frequency signal can cause interference with its self. Moving it to … | |
Re: Hello, I am not sure about SQL on Oracle but I believe it is like the other SQL languages and in MySQL and SQL Server JOINs only work in selects. For Updates you have to open multiple tables the old fashion way like this: UPDATE PDR.PH_Family_Match_by_Chassis, PDR.domCHASSIS, PDR.domCHASSIS_MODULE, PDR.domCHASSIS_OPTION SET … | |
Re: Yes it is possible but you will need to check a few things. First in the Network and Sharing Center make sure that the network connection is set for Home or Office and not Public. Public Networks are not allowed to connect to shared folders on your system. Next, select … | |
Re: Did you load the drivers for the keyboard and is the correct keyboard type set in your OS configuration. If it is new and all of the other keys work then take it back to the store and exchange it. |
The End.