1,073 Posted Topics

Member Avatar for stephsherman323

I would take a look at the Virtual PC network configuration. See what virtual network card you are using and make sure the drivers are available for the guest system.

Member Avatar for rch1231
0
103
Member Avatar for mnewsome

The only way you could double your speed would be to run a separate cable and configure your switch to treat the two ports as one single 2GB port and have two Network ports (bonded) configured on your computer. This is not going to do anything for speeding up you …

Member Avatar for anthonyfokker
0
257
Member Avatar for kgizo
Member Avatar for sundeep.gurroby

Hello, To follow normal accounting procedures you would need two transactions. One debiting the receiving account and one crediting the sending account. Banks credits and debits are backwards from other accounting methods. In other words money added to your account is a debit an removed from your account is a …

Member Avatar for rch1231
0
164
Member Avatar for RikTelner

Hello, You really don't have to worry about the OS so much as the browsers and the language that the page is written in. I would say keep it simple and use applications that depend on the server not the client like html, php, css and mysql. PHP converts to …

Member Avatar for RikTelner
0
116
Member Avatar for Tcll

I would grab a copy of hijackthis which is a malware detector that will show you all of the hooks into your system through registry entries and help you track down the culprit.

Member Avatar for gerbil
0
363
Member Avatar for showman13

Ok a couple of things that ma help. Curl is designed to get files not send them so drop that approach all together. SInce your not on a windows (yea) then I am assuming you have access to ssh and a command line or as you said you want to …

Member Avatar for iamthwee
0
2K
Member Avatar for jeffreymrblls

Hello, Try restarting the computer with the HDMI connected and the flatscreen running. Some times the OS wants all the screens connected when it starts. If it is Windows the right click on the screen and select displays and see if you can see both displays connected. But first try …

Member Avatar for ColeTechInc
0
175
Member Avatar for jacob21

I would use count to see if the user ID returns any rows where status_type(10) and status_value(11). and use that as the having part of you query. select id, name, (select count(*) from user_status where status_type=10 and status_value=11) as mycount having mycount > 1

Member Avatar for rch1231
0
158
Member Avatar for Dani

Hello Dani, Please remeber that this is my opinion however personally I would go with an ASUS or an HP. Dell used to be a quality product but over the past few years (in my opinion) the quality has gone down hill. HP and ASUS make a rugged product that …

Member Avatar for Ezekiel_1
0
260
Member Avatar for sk8ergirl

Just out of curiosity have you run the select query to see what records you are attemptng to delete? It could be your delete is pulling more than on record. SELECT * FROM STUDENT WHERE STUDENT_ADDRESS = 'NY Street' But with that said the problem seems to be the STUDENT_ID_TRIGGER …

Member Avatar for rch1231
0
153
Member Avatar for GilbertB

You could also limit it to the first x number of characters and check them against each other but Pritaeas is correct you will have to define some rules to go by. A query that would find your similar names would be: where Left(Table1.CompanyName, 4) = left(Table2.CompanyName, 4)

Member Avatar for rch1231
0
146
Member Avatar for rch1231

GNS3 is a Graphical Network Simulator that allows emulation of complex networks. You may be familiar with VMWare, VirtualBox or Virtual PC that are used to emulate various operating systems in a virtual environment. These programs allow you to run operating systems such as Windows XP Professional or Ubuntu Linux …

Member Avatar for rch1231
0
1K
Member Avatar for anna lin

Hello, It depends on the error you are getting when you try to send email. Probably need to change your MX records or set the spf record to show you are running a legit email server. You can check your email settings with one of the tools like: [http://www.dnsstuff.com/tools](http://www.dnsstuff.com/tools)

Member Avatar for rch1231
0
206
Member Avatar for ZER09

Rubberman's suggestions are accurate and correct. I would like to add that you can run what is referred to as a LAMP (Linux, Apache, MySQL, PHP) server with $0.00 cost for the software and you would only have to pay for the virtual or hardware based system. Amazon or SoftLayer …

Member Avatar for rubberman
0
278
Member Avatar for Hussan

Hello, You can download the drivers you need from the nvidia site at: [http://www.nvidia.com/Download/index.aspx?lang=en-us](http://www.nvidia.com/Download/index.aspx?lang=en-us) In the list select GeForce 6 Series and you can get the latest driver or you can go to the beta and older drivers section and work from there.

Member Avatar for rubberman
0
224
Member Avatar for toomutch

You could add sleep X as a fifth line where X s the number of seconds till it continues or use echo "Backup Complete" | more -d instead of the read -p to get it to prompt with Backup Complete [Press space to continue, 'q' to quit.]

Member Avatar for rch1231
0
261
Member Avatar for balutalk

Hello, Depending on what desktop manager you are running you should have an application called Disks under the System heading which will let you see the parttitions. During the install you have the option of using the entire disk or installing on part of the disk. It is one of …

Member Avatar for Sirajhyd
0
406
Member Avatar for sundeep.gurroby

Hello, I am not sure if you are looking for the php code or the sql code but here is the sql code for what you need to do. You would either put a real values for the where clauses for Month selected and for userid from login or use …

Member Avatar for sundeep.gurroby
0
398
Member Avatar for mrhankey

You can't use join in an update. You have to reference both tables and select the records to update. update folders, Documents set folders.folder_ProductID = Documents.products_ProductID where folders.FolderID = Documents.FolderID

Member Avatar for rch1231
0
148
Member Avatar for chaitu11

Hello, Try this site it has several formats and includes city, region, country, latitude and longitude. [http://www.maxmind.com/en/worldcities](http://www.maxmind.com/en/worldcities)

Member Avatar for chaitu11
0
251
Member Avatar for mokshi
Re: SQL

So what was wrong with your query other than you tried to select a field Permanentaddress2 that was not listed in the definition you provided or the criteria you listed. Also you are narrowing down to Permanentstate which you did not list in your definition or criteria.

Member Avatar for rch1231
0
124
Member Avatar for gunel555

There is a great tool for this called GNS3 or Graphic Network Simulator 3 which will create Virtual Cisco routers and switches that actually uses the cisco or juniper ios. It is licensed under the GNU public license and is available for Linux, Windows and OSx. Works with virtual systems …

Member Avatar for rch1231
0
157
Member Avatar for fx.eko

Hello, What you need to do is use UNION to merge the output from the two databases and if needed you can sort the out put into one large table intermixed: Select * from (select table1.data_field as result1 from table1 UNION select table2.data_field as result1 from table2) as data1 order …

Member Avatar for fx.eko
0
296
Member Avatar for de Source

Hello, How about this instead which is supposed to be the right way to do the query: SELECT tbl_class.class_id, tbl_class.course_id, tbl_class.class_room, tbl_course.semester FROM tbl_class inner join tbl_course on tbl_course.course_id = tbl_class.course_id WHERE tbl_course.semester = '5' Or back to your original selection change the wording to: SELECT * FROM tbl_class WHERE …

Member Avatar for rch1231
0
208
Member Avatar for RikTelner

I would say you will proabably have to wipe the drive with a DOD level drive wipe application in order to be able to use it again. Unless it is based on the drive being encrypted by the drive bios somehow that should work.

Member Avatar for RikTelner
0
269
Member Avatar for sathish_nadu

Hello, I was looking over what you have and what you said you wanted to do and I have a couple of ideas on how to do it but I am a little confused by your wording. If what you are trying to do is give the min, max or …

Member Avatar for rch1231
0
293
Member Avatar for Dani

Dani, That would be a tough choice to make and would depend on what SSD drives are available. I have always heard that SSD drives did not have a great life expectancy if you do a lot of writes to the drives however every site I look at says they …

Member Avatar for rubberman
0
178
Member Avatar for ak.mankar9

To get to the command prompt as administrator go to start accessories and then right click Command prompt and select "Run as administrator" from the menu. Then try your unlock command again.

Member Avatar for rch1231
0
181
Member Avatar for theashman88

Hello, The UID is the user id and it is stored in the /etc/passwd file. Below is a link to a site the explains the format of the date in the file: [http://en.wikipedia.org/wiki/Passwd](http://en.wikipedia.org/wiki/Passwd)

Member Avatar for rch1231
0
292
Member Avatar for kalel29x

Ewald has a good idea and TrueCrypt will encrypt you whole drive and can be set so that the computer will not boot with out the password. Or as a separate option you could carry a USB drive that was encrypted with encryption software but people get lazy about having …

Member Avatar for kalel29x
0
240
Member Avatar for masterjiraya

Hello, The databases do not have to be on the same server or the same type of server they must simply have a location that both servers can somehow read and write files to. I do this all of the time working database conversions for companies. Normally I use Perl …

Member Avatar for masterjiraya
0
327
Member Avatar for Bhargav_2

Hello, I know you mentioned using awk but I thought I would throw this in anyway: `cat myfile.txt | sort -k 1,2 | uniq -w 13 ` sorts the file by first and second columns (seperated by white space) then prints the unique entries based on the first 13 charactors.

Member Avatar for rch1231
0
139
Member Avatar for Djmann1013

Hello, So I don't see any issues and which icon are you talking about not looking correct? Your connected via wireless to a router that you don't want us to know the name of (no issue) and showing wired and uireless connections under network connections and it loooks like you …

Member Avatar for seoulman2
0
151
Member Avatar for murugami eric

If you are just planning on your single web site another option is to get a virtual system through one of the hosting providers. You could purchase a basic virtual system from one of the hosting providers and get started for a very low cost. They will handle the costs …

Member Avatar for murugami eric
0
163
Member Avatar for chaitu11

Hello, What you are referencing is often called a pyramid structure. I have built a few in the past and they can be interesting to code. However that being said the best method I have found to track the items is that every element has an id and a parent …

Member Avatar for diafol
0
505
Member Avatar for davy_yg

Windows server gives you a single server running Microsoft Windows that you can run multiple web sites on with IIS or other applications. Windows Azure gives you a host server that allows you to run virtual Windows systems each of which can host multiple sites. You might consider it to …

Member Avatar for rch1231
0
272
Member Avatar for victor78

If you hit <F8> while booting and get to the Windows boot menu (Boot in safe mode, etc) there is an option to turn off automatic restart. This will let you see the message and blue screen.

Member Avatar for robert02
0
187
Member Avatar for folabidowu

The values you need are km per mi and gl per lt not lt per gl 1mi=1.609km 1lt=0.264172gl lt/km = (mi/gl) * (km/mi) * (gl/lt) lt/km = (given) * 1.609 * 0.264 lt/km = (given) * 0.425 Hope that helps.

Member Avatar for Banfa
0
791
Member Avatar for <M/>

Why don't you simply use wordpress or drupal they are both free and manage the web site and handle postings also. Why re-invent the code when someone has already written it and it is easy to use....

Member Avatar for <M/>
0
181
Member Avatar for Reverend Jim

Thank you for the information it was interesting reading. It is nice to have someone validate what has been said by those of us who have been promoting the security of Linux based systems for years (and I include you in that number Jim). You might note that although they …

Member Avatar for rch1231
0
309
Member Avatar for neha05

Hello, Here is a link to a site that provides multiple examples of importing CSV files into MySQL using PHP. It even has a script for an import page. [http://www.phpclasses.org/blog/post/89-Quickly-importing-data-from-CSV-file-into-PHP-applications.html](http://www.phpclasses.org/blog/post/89-Quickly-importing-data-from-CSV-file-into-PHP-applications.html)

Member Avatar for neha05
0
360
Member Avatar for zulabc

Hello, The first real question is what do you mean by content? Are you implying that it is a file containing only text or that it has the file extension .TXT? And second is this real shell scripting in Linux, OSX and Unix, or Semi-scripting in Windows shell or VB?

Member Avatar for Snadiger
0
192
Member Avatar for rogerdv

Hello, That is a pretty tough one to diagnose. Have you tried Malwarebytes scan on one of the systems that is giving you the errors? You mentioned it is showing up on clients even after they have been reloaded, I am assuming that the systems have been added to the …

Member Avatar for Ancient Dragon
0
196
Member Avatar for mrhankey

Hello What you are looking for is to show the record for the most recent date that a product review was completed. The trick for doing this is grouping. You could use this: SELECT product, Client_ID, MAX(ReviewDate) FROM tablename group by product, Client_ID;

Member Avatar for rch1231
0
112
Member Avatar for alumab1

There is a version of magic disk 2.7 called build 106 and the setupfile is called setup_magicdisc106.exe and it will load in windows 7. It does warn you the driver is not signed but I have been using it on Windows 7 both 32 and 64 bit for over a …

Member Avatar for rch1231
0
121
Member Avatar for silvercats

Hello, The way I read your question I am not sure if you have a web site on your laptop you are trying to access or if you are just trying to get to any site on the internet. 1.) When you say you use the public IP address are …

Member Avatar for JorgeM
0
363
Member Avatar for mattyd

Take a look at Editrocket. Runs on windows, Linux or MAC and supports backups of code as well as HTML, CSS, Perl, PHP, SQL, Python, and many more. Price was not bad at $49.95 and the license is good for all three versions and it has the same look an …

Member Avatar for rch1231
0
121
Member Avatar for Sanket_3

Hello, The PHP CLI as its called ( php for the Command Line Interface ) is called php.exe It lives in c:\wamp\bin\php\php5.x.y\php.exe ( where x and y are the version numbers of php that you have installed )When you know the path you could add an entry in the Task …

Member Avatar for rch1231
0
233
Member Avatar for Rickytickyfly

Hello, There is an update for Vista out there that sets your network connection to Local Only. If you open Network and Sharing center and look at the connection check to see if it says Local Only Nettwork right above the connection. If so the link below is to ATT …

Member Avatar for rch1231
0
317

The End.