1,073 Posted Topics
Re: Hello, I have seen this before and it took me a minute to find the reference I used to fix it. The error is due to Windows Update running out of available memory during the update process. Here is a link to the Microsoft page on how to fix it: … | |
Re: Hello, I would start with what processes are running on the server and what is calling the offending scripts. If you run `ps auxf` you will see all of the processes in a tree format showing what called what so you can stop the scripts. CPanel has some built in … | |
Re: To tell you more I would have to see a copy of the definition of the students table (i.e. field list) but basically the system is telling you it does not see a field by that name under students. Your not getting a database not found or table not found … | |
Re: You can also take a look at the web server access logs and based on the Ip they connected with find the pages they went to. | |
Re: Hello, Ok first thing is stop using `"SELECT * " ` when you don't need every field from the table and second what you can do is simply multiply the price times 1 plus the sales tax (i.e 1.06 in your code) because the equation can be simplified algebretically to: … | |
Re: There are ways to use the Linux server to tunnel the port request through to the Windows server but they would have to connect and authenticate to the Linux system first. There is document I put together a few years ago that covers the subject from the what the users … | |
Re: Virtual machines is a good idea as Rubberman said but you can also look at GNS3 which is a network simulator. It allows you to setup virtual routers and switches. | |
Re: The problem you face is that you are trying to use the PHP header function, header(), but there can be absolutely no HTML output before this function is declared. I suggest putting the header entry right after the <?php | |
Re: Hello, What you really need it to also have all of the paths and other variables that would be set if you were root. If you add a dash (-) to the su command then it loads the environment of the user you are switching to (i.e. su - bob … | |
Re: Hello, I am guessing that you left the semicolons in place when you ran the union.... This should work: (SELECT DISTINCT a.[rank], b.Description FROM CONTAINSTABLE(myTable, *, '"ra*'") AS a INNER JOIN myTable AS b ON a[key] = b.ID ORDER BY a.rank desc ) UNION (SELECT DISTINCT a.[rank], b.Description FROM FREETEXTTABLE(myTable, … | |
Re: Hello, Your problem is actually listed in the top of the error message page that you included. You are getting FAIL when it checks to see if the directory is writable by the php script.  | |
Re: Here is some code from The Perl Cookbook from O'Reilly & Associates, which is where I get the best examples for Perl coding: You must decide what you will and will not accept. Then, construct a regular expression to match those things alone. Compare it against a regular expression that … | |
Re: Hello, If it was me I would try the following to see if it could correct the issues:: 1) Boot is safe mode with command prompt and run sfc /scannow This will verify your system files are there and properly installed. 2) Use an app like CCleaner to scan the … | |
Re: Hello, Not sure what you are attempting to do but the two selects that are trying to use UNION are defiantly wrong. UNION is used to put to sets of like results together, meaning that the selects have the same number of result fields with the same names. SELECT Name, … | |
Re: Hello, Your going to have to find out what application is using the file. Not as hard as it sounds. Open Task Manager and then go to the tab labled Performance and click the Performance Monitor at the bottom. When it opens up select the Disk tab at the top … | |
Re: Hello, I can probably help you with this but there is notsheet attached to the post that I can see. try posting a snapshot of the sheet or copy and past a few lines. What your end result is supposed to be is a little confusing also. Can you tell … | |
Re: No. Will not work. It does not matter what subnet they are on, having the same IP would cause a conflict in the LAN's ARP table which says which MAC address is being referred to by the IP in question. When an address is referenced on the lan the subnet … | |
Re: Hello, You did not really say what the issue was but if you want to get distinct values of function_name from the union you included you could use something like this: select distinct data1.function_name from (SELECT function_name FROM base_table UNION SELECT function_name FROM firstcall_table UNION SELECT function_name FROM secondcall_table) as … ![]() | |
Re: Hello, In order to answer your question we need a little more information. Are you referring to NAS storage that is connected to a web server (you mentioned CPanel) that is available on the internet or are you referring to a NAS storage device at your home behind the router … | |
Re: Hello, Your headed in the right direction thinking client/server. In order to give you a realistic answer we really need a little more information about what the application is supposed to do. Not so much specifics about your actual application as much as a "big picture" view of what you … | |
Re: He is right so try something like this: double fahrenheit = ((9 * celsius) / 5 ) + 32; or double fahrenheit = ( 1.8 * celsius ) + 32; | |
Re: Hello, Ok so if I understand you correctly the drive initially shows up and is readable but after it is running for a bit it starts giving I/O errors. It sounds like as the drive warms up it starts to fail. This is going to sound a little crazy but … | |
Re: You need to share the folder that the file is in so that the folder is accessable from other computers. If you only want to share the one file then you can make a special share directory to hold the file and then make sure that file sharing is turned … | |
Re: Two things I can think of are: Get MalwareBytes (make sure it is their site) which has a free malware scan tool that works great. [http://www.malwarebytes.org](http://www.malwarebytes.org) Second bring Windows up in safe mode and run the virus scans from there. I find that normally will catch the last of the … | |
Re: Hello, Seen this many times before and used to drive me crazy, the ls command is aliased to ls --color and the escape codes are showing up as part of the file names. Try using /bin/ls and you should be fine. | |
Re: You are setting id="" which means that no value is supplied for the query. It is like running this: `SELECT no_internals FROM department where id =` You need to either remove the where clause or supply a value to test the value of id against. What I think you need … | |
Re: Hello, Your problem is the UEFI boot setting. From the Dell support site: 1. Enter system setup. <F2> during boot up. 2. Use the arrow keys to highlight Boot menu option and press Enter. 3. Use the arrow keys to highlight Boot Mode or Boot List Option and press Enter. … | |
Re: Not that I have ever seen. If the values were in different cells then you can find out how many cells had values. The only way I can think of that might work is to count the number of "+" symbols in the formula and add 1. | |
Re: Hello, You could do this with bash by pulling the lines you wanted with grep and then parsing them with awk instead of sed. For example : `grep "http://www.gradle.org" index.html | awk '{ print $5 " " $6 " " $7 " " $8 " " $9 }'` But you … | |
Re: Hello, I think that you will find that the problem is due to the SD Card having a FAT filesystem and not a Linux file system. FAT doesn't track modification times on files as precisely as, say ext3 (FAT is only precise to within a 2 second window). This leads … | |
Re: Hello, You havean extra b in your grep. try this: `grep -v "0.0.0.0" | grep -vw "DLBytes:0" | grep -vw "ULBytes:0"` | |
Re: Hello There is nothing wrong with chown. The file listing you provided only lists links to the actual files which appear to be stored in ../Movies-Secure. the l at the beginning of the line lrwxrwxrwx 1 root root 36 Jun 27 22:17 A Far Off Place.mkv -> ../Movies-Secure/A Far Off … | |
Re: Hello, You could set them up with something like GoogleDocs and they have a good interface but you always take a chance with data stored out on the cloud. You would be better off and safer if you were to create a small server at the office. You could set … | |
Re: Hello, This is going to be due to the settings in Apache that CPanel sets up. Is your new server running CPanel also if not it gets trickier. If it is running CPanel then you should set the user and group o the user id that owns the web site. … | |
Re: Hello, If I understand correctly you have two tables. One contains data for 2014 and the other contains data from 2015. What you want is to print a report that contains data from both tables. That is not hard to do if the tables have the same field names like … | |
Re: Hello, The ext4 permissions must be in place for read write before you attempt to access a directory via nfs. If you can't mount the ext4 partition as read-write then it does not matter what the nfs settings are as no-one can write to the partion period. Usually you set … | |
Re: I noticed a couple of things. You did not select any fields to search in, and you did not use the wildcard with your search. Have you tried clicking the SQL or Query tabs or the hide Searc results to see if you get back to the page? To be … | |
Re: Hello, Based on your comments I would say it is heat related. I have had a few HP laptops over the last decade (Compaq and HP have always made a quality product) and what has probably happened is the heat sync on top of the processor is clogged with dust. … | |
Re: Hello, Your running the calculation after you print the output. You need to do the calculation then call the print routine. In the perl script swap lines 14 and 15 and lines 19 and 20: #calculate if (param('cel')) { $celConvert = ($temp - 32) * 5 / 9; cel(); } … | |
Re: Hello, Well I am not well versed in Oracle but I was able to find a page with several options for Oracle: [http://stackoverflow.com/questions/9332360/oracle-equivalent-to-mysql-insert-ignore](http://stackoverflow.com/questions/9332360/oracle-equivalent-to-mysql-insert-ignore) | |
Re: Hello, You would need to build a special test for consonant pairs (ch,gl,gh,fl sh,th,st,sp kn,sn,sl,pl,wh, and any others you can think of...) like you did for the vowels. You will need to put it before the single consonant process to eliminate them before you get to that part. Also you … | |
Re: Look into gallery3. It is a free application written using php and mysql which will do everything you are wanting and more. [http://galleryproject.org/](http://galleryproject.org/) | |
Re: Hello, What you will need to do is to setup the wireless network in the printer setup. Here is a link to the HP supprt document that covers the printer: [http://h10032.www1.hp.com/ctg/Manual/c02497107](http://h10032.www1.hp.com/ctg/Manual/c02497107) What you are looking for is on page 29. | |
Re: Hello, The consensus on the minecraft site seems to be that both CentOS or Ubuntu make good servers. So since you are already using CentOS I would stick with an OS you know. CentOS is based on Red Hat Enterprise and Ubuntu is debian based and the packages and applications … | |
Re: Hello, Try Malwarebytes it will ususally remove just about everything. The free version should do the trick. Make sure that you update the virus definitions. | |
Re: Another option is the free downloads available from Microsoft for Access. They are templates for databases and systems created by other users that you can download for free. You just need to make sure you get one compatible with the version of access you are running (i.e. 2003, 2007, 2010, … | |
Re: I see two problems with the sql that would need to be changed for mysql: 1 replace number wth int and replace varchar2 with varchar 2 You have the create table pers_dtl code listed twice: I ran the following on myserver and it worked fine. CREATE TABLE cash_dtL ( Cash_id … | |
Re: DOSBox emulates an Intel x86 PC, complete with sound, graphics, mouse, joystick, modem, etc., necessary for running many old MS-DOS games and programs that simply cannot be run on modern PCs and operating systems, such as Microsoft Windows XP, Windows Vista, Linux and FreeBSD. However, it is not restricted to … | |
Re: Hello, When you go to start the command prompt right click on CMD.EXE and select Run As Administrator. You should then have thr correct permissions and path to run sfc | |
Re: Hello, Most cable providers use the MAC address of the modem (or computer) to allow you to establish connections to their network. That way if you try to connect with out paying or are late paying they can just turn off the access for the devices MAC address. There is … |
The End.