1,073 Posted Topics
Re: Hello, Well if you don't want to reformat your hard drive then that limits the scope of available applications to run a Virtual system. What OS are you currently running and what hardware do you have in the system (CPU's, Memory, Available HD Space)? Personally the best one I have … | |
Re: Your problem is probably due to the fact that most ISP's limit the upload speed to one a lot slower than their download. For example my ISP gives me 3Mb/s download but only 512kb/s upload. You can check this at any of the speed test sites. Persnally I like this … | |
Re: Hello, 1. Double check your IP address by running ipconfig from a command prompt. 2. Since it is wireless make sure you have not connected to another wireless network by mistake. 3. If the card cannot ping it's self then TCP/IP may not be properly loaded. Go to the network … | |
Re: Hello, Try this site for a good comparison. [URL="http://en.wikipedia.org/wiki/Comparison_of_Windows_and_Linux"]http://en.wikipedia.org/wiki/Comparison_of_Windows_and_Linux[/URL] | |
Re: CentOS. It is what is used in most web hosting centers and is designed for web hosting. Also if you want to use it as an email server check out qmailtoaster. They have a series of scripts that install and configure Apache, PHP and MySQL for you with a very … | |
Re: Not pretty but it works and I moved 1 from the first position for testing: [CODE]#!/bin/bash y=0 for x in 4 6 23 1 5 7 100 2 do if [ $y -eq 0 ] then y=$x fi if [ $x -lt $y ] then y=$x fi done echo "Answer: … | |
Re: Take the RAM back it is either the wrong speed or bad. | |
Re: 2 things: You may have to give the full path for grep which you can find by running which grep from a shell prompt and second what happens when you run the command from the command line? | |
Re: Have you tried uninstalling mysql and then reinstalling it to see if it removes the registry entries or restoring to a point prior to the changes you made and working from there? | |
Re: Try this. Reboot and when the system BIOS screen clears (or just before it clears ) start hitting the <F8> key till you get the Windows Boot Options menu. Select SAFE mode to make sure that widows is working correctly or try VGA mode to check to see if it … | |
Re: If I am reading you post correctly you have A desktop a Laptop , a router (wireless or not) and a Modem (Cable or DSL) and want to be able to use the internet and to share files on both systems. The systems should have no problem connecting to the … | |
Re: Here is a link to one I have used that works pretty good. [URL="http://ckeditor.com/"]http://ckeditor.com/[/URL] ![]() | |
Re: Try this on line 64: [CODE]$qry = "SELECT * FROM members WHERE login='$login'" or ( email is not null and email = '$email' )";[/CODE] This will eliminate the empty email addresses (since you don't test for it being filled in) and return a result if login or email match. You … | |
Re: I am not sure how you are setting the password but I think the problem is that you are not encrypting it when you do. When I select user, host, password from mysql it shows like this: [CODE]mysql> select user, host, password from user; +----------+-------------------+-------------------------------------------+ | user | host | … | |
Re: If I am understanding you correctly you want a specific user on the XP systems to be able to access certain shared directories on the Vista system. In order to do that you will need to create a user on the Vista system(I would suggest a limited user) with the … | |
Re: Your problem is comming from the test where it is comparing [1.0 -le 3.0] Instead of looping from 1.0 to 3.0 how about using a for loop like this: for x in 1.0 1.5 2.0 2.5 3.0 do echo $x done | |
Re: I realize this does not exactly answer your question but why in the world would you need this. Almost all shells store the commands issued in an individual user history file. (ie /home/bob/.bash_history stores the last 1000 of Bob's commands ). When logged in as bob typing history at the … | |
Re: Any CD/DVD that will work with Windows will work with Linux. They are generic like hard drives and use the BIOS for communications standards. | |
Re: Based on your post I would be willing to bet that the NETBIOS protocol is not loaded on the XP system network card. Open the network card properties and look in the list if you don't see NETBIOS IPX/SPX then you are missing the protocol that windows systems use to … | |
Re: Depending on the type of hard drives involved and how they are configured there are easier ways. Windows simply uses the order the drives are referenced by the BIOS or the boot order they are configured for by the BIOS to determine which drive is C: and Which is D:. … | |
Re: Have you checked the Windows (or your installed) firewall to make sure there is an exception for Dreamweaver? | |
Re: Hello, If you are not getting any link lights when a computer is connected directly via wire then it could be something in the router firmware. On the linksys if you press and hold the reset button for 30 seconds it will reset to original factory settings. | |
Re: I have worked on a few of these in the past and there are several things that you have to consider when setting this up. Like how many people can be sponsored by one individual, what do you do if the sponsor leaves, etc. Usually what I do is set … | |
Re: How do you know it is broke and not running? have you tried adding pause statements to the bat file to force it to show the command line results. which version of windows?? | |
Re: I take it you have tried this as a user with root privileges: mount -t iso9660 -o ro /dev/cdrom /mnt If so can you post the error? | |
Re: There are several options out there and here is a link to a site that will let you set it up for free: [URL="http://www.dyndns.com/services/dns/dyndns/"]http://www.dyndns.com/services/dns/dyndns/[/URL] | |
Re: Hello, The problem is due to the routers being on the same subnet (i.e. 192.168.1.X) You have one of two choices: 1. Turn off the router capabilities of the Belkin and make it a switch (or gateway) and the the Home Hub handle the routing and DHCP. 2. Set the … | |
Re: Your password for sudo us your user password.... | |
Re: Depends on the BIOS version but I believe you will find that it is a memory error. You have to have some memory in the system for it to work so try one stick at a time and see if you can figure out which one has gone bad. | |
Re: phpmaker and aspmaker both have multiline edit options and demos available from the web site. You can also download it and run it for 30 days trial. [URL="http://www.hkvstore.com/phpmaker/"]http://www.hkvstore.com/phpmaker/[/URL] | |
Re: Well it is a Hypertext Preprocessor however it originally stood for "Personal Home Page" [URL="http://en.wikipedia.org/wiki/PHP"]http://en.wikipedia.org/wiki/PHP[/URL] | |
Re: You need to go into the old router and get the login settings for connecting to the modem. It is probably set for PPOE connection but you need to get the login info so you can set it in the new router. | |
Re: Use one of the remote connect tools like LOGMEIN, GoToMyPC, or my personal favorite Teamviewer. You run the main application on a work PC connected to the domain and then access it through your web browser. | |
Re: You mean like this: [CODE] Select tableb.stuff, tablea.stuff from tableb join tablea on tableb.z = concat(tablea.x, tablea.y) [/CODE] This would give you the stuff fields from both tables. | |
Re: As an idea you could install Linux on the system and then put the old os in a virtual application (Oracle VirtualBox works well) and there are several emulators like dosbox for Linux that give you a virtual system with simulated Floppy disk drives etc. [URL="http://en.wikipedia.org/wiki/DOSBox"]http://en.wikipedia.org/wiki/DOSBox[/URL] The Oracle VirtualBox supports … | |
Re: There is an operating system on the router however it is normally chip based and not easy to hack. Try this site for a discussion on the CISCO-IOS used on CISCO routers and listing of links to other OS's used. [URL="http://en.wikipedia.org/wiki/Cisco_IOS"]http://en.wikipedia.org/wiki/Cisco_IOS[/URL] | |
Re: It could be the CPU or Power Supply fan bearing going out.... Try pulling the cover off so you can see inside and track the sound down to its source next time it happens. | |
Re: It depends on what you mean by increment the table row. If you are referring to incrementing it for insert then simply create the field as an auto-increment in MySQL and the database will auto-increment the field for you. If you are simply trying to get to the next record … | |
Re: Does it do any good to replace $tbl_name with members in the following code? I don't see you setting the variable anywhere... [CODE]$sql="SELECT * FROM $tbl_name WHERE email='$myusername' and password='$cleanpwd'";[/CODE] and what happens if you get multiple rows? try [CODE] if($count > 0){ setcookie('username', '$myusername');[/CODE] | |
Re: I don't now the name of the field containing your image but try something like this: [CODE]SELECT * FROM cuvideos WHERE cuvimg = colname AND cuimgfield is not null AND cuimgfield <> '' ORDER BY RAND() LIMIT 1[/CODE] This will also exempt empty string as well as NULL. | |
Re: Hello, If this is only for the one other desktop then add an entry to the etc/hosts file on the workstation that points [url]www.site1.com[/url] to 192.168.31.28. 192.168.31.28 [url]www.site1.com[/url] If it is a linux system then the file is /etc/hosts If it is a Windows system the file should be in … | |
Re: You either need to used fixed addresses (not really an option using dynamic DNS) or to set up virtual hosting in Apache. Below are the first three domains on one of my servers running as virtual domains on the same IP address. The lines starting with # are comments and … | |
Re: That is basically it. You should have an installation CD for each of the printers and it will configure the IP address for you and set up the drivers on your computer. | |
Re: Unless I am mistaken that is a virus dll that should be removed. | |
Re: Hello, I would try booting from another disk and attempting to clean out the VIRUS. Something like Ultimate Boot CD for windows will let you create a boot disk with anti-virus and/or anti-spyware on it. If you just need an ISO that will work email me and I will tell … | |
Re: What you need is one of the following applications: TeamViewer, Gotomypc, or Logmein They are designed to connect to your PC remotely without a fixed IP. Personally I like TeamViewer because the free version has file transfer capabilities however all of them have free apps. | |
Re: if it is on linux system and you are referring to the active connections to the server use the following: netstat -a to list a count of all of the UDP entries use: netstat -a | grep udp | wc | |
Re: May I suggest Fedora Core 14. It is a red hat distribution that is primarily designed for laptops. I run it on mine and did not have any issues with any of the hardware. As a matter of fact I did not need to find and load any special drivers … | |
Re: Try hooking your tv up and having it powered on when you boot up Windows XP. Depending on the control software it may need to see it as the driver is loaded for you to be able to access it. | |
Re: It is not easy to tell what is wrong with out the information on the table you are pulling from however your query shows a field called BLLinehaul but you don't reference one called BLLinehaulEntered |
The End.