1,073 Posted Topics

Member Avatar for desmondo

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

Member Avatar for rch1231
0
183
Member Avatar for cazlin

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 …

Member Avatar for rch1231
0
219
Member Avatar for Saboor880

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 …

Member Avatar for JamesCherrill
0
262
Member Avatar for AntonyRayan

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.

Member Avatar for rch1231
0
135
Member Avatar for ZombieKnight93

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

Member Avatar for daniellemacey
0
423
Member Avatar for Borzoi

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 …

Member Avatar for mike_2000_17
0
6K
Member Avatar for knggee

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.

Member Avatar for rch1231
0
166
Member Avatar for janicemurby

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

Member Avatar for janicemurby
0
138
Member Avatar for christine06

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 …

Member Avatar for eroux
0
376
Member Avatar for hwoarang69

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

Member Avatar for rch1231
0
231
Member Avatar for shashigowda

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. ![Capture.PNG](/attachments/small/2/6d7031cacdc3f7f9109d083927fde458.PNG "align-left")

Member Avatar for rch1231
0
272
Member Avatar for killingmonk

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 …

Member Avatar for 2teez
0
306
Member Avatar for SpHawk - Destiny videos

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 …

Member Avatar for jwenting
0
269
Member Avatar for sing1006

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

Member Avatar for Santanu.Das
0
291
Member Avatar for Dat One Lefty

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 …

Member Avatar for Dat One Lefty
0
161
Member Avatar for regsamp

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 …

Member Avatar for rch1231
0
265
Member Avatar for Sphinx'LostNose

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 …

Member Avatar for master73
0
654
Member Avatar for k_manimuthu

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 …

Member Avatar for diafol
0
249
Member Avatar for Siberian

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 …

Member Avatar for Siberian
0
195
Member Avatar for Smith5646

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 …

Member Avatar for Smith5646
0
376
Member Avatar for Toby14

He is right so try something like this: double fahrenheit = ((9 * celsius) / 5 ) + 32; or double fahrenheit = ( 1.8 * celsius ) + 32;

Member Avatar for Toby14
0
143
Member Avatar for arcybarrios

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 …

Member Avatar for mindmergepk
0
1K
Member Avatar for jbsmith
Re: Mr

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 …

Member Avatar for rch1231
0
102
Member Avatar for joolywsn

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 …

Member Avatar for rch1231
0
216
Member Avatar for ananddvk

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.

Member Avatar for Roger_4
0
661
Member Avatar for SivaShankar

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 …

Member Avatar for rch1231
0
335
Member Avatar for muralivisakh

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

Member Avatar for rch1231
0
244
Member Avatar for Stagnant

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.

Member Avatar for rch1231
0
196
Member Avatar for jpratik21

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 …

Member Avatar for rch1231
0
2K
Member Avatar for lewashby

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 …

Member Avatar for rch1231
0
480
Member Avatar for clife

Hello, You havean extra b in your grep. try this: `grep -v "0.0.0.0" | grep -vw "DLBytes:0" | grep -vw "ULBytes:0"`

Member Avatar for clife
0
365
Member Avatar for lewashby

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 …

Member Avatar for rch1231
0
334
Member Avatar for kalcio

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 …

Member Avatar for Muhammad_91
0
355
Member Avatar for davBro

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

Member Avatar for davBro
0
369
Member Avatar for Papa_Don

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 …

Member Avatar for Papa_Don
0
243
Member Avatar for lewashby

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 …

Member Avatar for rch1231
0
136
Member Avatar for basketmen

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 …

Member Avatar for basketmen
0
186
Member Avatar for leghorn

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

Member Avatar for MatthewWri
0
193
Member Avatar for Wendy_3

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(); } …

Member Avatar for rch1231
0
345
Member Avatar for lps

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)

Member Avatar for lps
0
304
Member Avatar for karodhill

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 …

Member Avatar for Mr.M
0
223
Member Avatar for shashigowda

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/)

Member Avatar for jj.dcruz
0
287
Member Avatar for Lynn

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.

Member Avatar for rch1231
0
288
Member Avatar for zzmrzz

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 …

Member Avatar for amalfatima
0
560
Member Avatar for SimonTB473

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.

Member Avatar for Rik_
0
331
Member Avatar for Zahid_6

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

Member Avatar for zahidmehmood
0
211
Member Avatar for ramnik.bhat1988

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 …

Member Avatar for Reverend Jim
0
344
Member Avatar for yusufesenboga

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 …

Member Avatar for rch1231
0
110
Member Avatar for Techno22

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

Member Avatar for Techno22
0
267
Member Avatar for spudly1987

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 …

Member Avatar for OneSolutionInc
0
173

The End.