Jump to content

TomcaT

Member
  • Posts

    208
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United Kingdom

Everything posted by TomcaT

  1. IE6 asked me to download it, it opened image viewer but Grisoft AVG free caught it.
  2. Yes I have heard about this nasty thing....... my son managed to infect my Laptop!! Basically it is a con to get you to buy their software!!! I found this http://malwareremoval.com/plog/index.php?blogId=3 and I clicked on the links to find the information to remove it. edit.... Perhaps a Mod could move this post to the Malware section.
  3. HI Kaz, Also check that MAC address filtering is not switched on, I once spent an hour trying to figure out why my daughters PC would not connect to my wireless network....... it was switched on!!!
  4. It looks more like you have a virus rather than spyware: C:\WINDOWS\system32\mssearchnet.exe http://www.processlibrary.com/directory/files/mssearchnet/ To try and get rid of it, this link may help and details the Symantec way: http://gladiator-antivirus.com/forum/lofiv...php/t29757.html These looks dodgy but are probably ok as part of NAV : O3 - Toolbar: Norton AntiVirus - {42CDD1BF-3FFB-4238-8AD1-7859DF00B1D6} - C:\Program Files\Norton Internet Security\Norton AntiVirus\NavShExt.dll O3 - Toolbar: Norton Internet Security - {0B53EAC3-8D69-4b9e-9B19-A37C9A5676A7} - C:\Program Files\Common Files\Symantec Shared\AdBlocking\NISShExt.dll Personally if I was you I would remove the Norton Anti Virus/security software, firstly cos I think it is not very good, secondly it slows laptops down (my own would not work with it and that is a P4 3.06ghz laptop) and thirdly you have appear to have a virus which strengthens my first point!!! LOL. I use AVG Grisoft, many others on here use others and have differing opinions, so have a look round for a better anti virus. For firewall, my router does all that so don't need any software ones, so cannot really guide you here, but for basic protection use the Windows XP firewall or download Zone Alarm which is free. Hope this helps.
  5. Thank you for your help Ares, this worked exactly as stated..... thanks also for the input Sven. TC
  6. Hi Guys, I am really new to this Apache server stuff and am stuck. I have a Apache webserver up and running, I am trying to make a directory on the server NOT list the index of files if there is no index.htm or index.html or index.php etc in the directory. I looked on google and found a website that said this is what I needed to change in my httpd.conf: It stated that I should remove Indexes from the Options line, however I made this change by taking the Indexes out, restarted the server but when I type in http://www.mydomain.com/images/ the browser still lists the contents of the directory, I know I could just put a blank index.htm file in but wondered if there was a better way using the server configuration? Any advice appreciated. Cheers. TC
  7. I am not sure if this will do what you want, but here goes: In your HTML/PHP code: <iframe id="NAMEYOURFRAME" src="whateverfile.htm"></iframe> In your PHP, change the fragment marked in bold: $html = "<a href='$link_url' target='_blank'>$link_name</a> Change it to target='NAMEYOURFRAME' Hope it helps?
  8. More of a person's understanding of English, it is not everyones first language!.... respect to those who post and struggle with English......
  9. SAP is a massive ERP system, I was involved in linking SAP to a warehouse management system called RIMS. It controls accounts, purchasing, sales orders processing and at a stretch warehousing functions (though not very well IMHO) for very large businesses. I did a course that stated SAP stood for Systems And Programs, dunno how true it is, either way SAP kicks a**.!!
  10. Yes this might be a noob question, but does a search engine like Goolge read and store ALT tags??? Try not to flame me too much.... Thanks.
  11. Basically, you need to open those ports on what ever you use for a firewall. If you use a router to get to the internet, then you need to login to your router and set those ports to open. If you are using a software firewall then you need to go into the configuration options and open those ports.
  12. I have asked my hosting company the question...... Will report back.
  13. Yes, but it does not have too as long as I have loaded the contents of the local database to variables in my PHP script, I can then "insert" these into the Web based database. So I don't mind if the script disconnects from the local database. Locally there is no problem, just when trying to connect to the web database, so yes I want to connect directly to it from a PHP script on my laptop (which is setup up as a local webserver).
  14. I am trying to write a MySQL database on a laptop, using web forms to populate the database via PHP scripts for my cycling club, where we record race times and names etc. I have set up a IIS server on the laptop, installed PHP and MySQL, I have connected it all and it works, ie I can enter data into my web form, submit it, the PHP will then insert the data into the MySQL database, I can subsequently query it with no problem at all!!! The next bit I want to be able to do is actually query my localhost database on the laptop and then connect to my Website database and update the information held there, with the data from the laptop. My first connect string looks like: <? $conn1 = mysql_connect("localhost", "MYUSERNAME", "MYLOCALPASSWORD"); mysql_select_db("testdb"); .... the rest of the script querying the local database .... then I want to run this in the same script so it connects to my website database: $conn2 = mysql_connect("WWW.MYWEBSITES.COM:DATABASE", "MYWEBUSERNAME", "MYWEBPASSWORD"); mysql_select_db("myweb_testdb"); Now the problem is I don't know what to put into the WWW.MYWEBSITES.COM:DATABASE part of the string, I thought it would have been my URL:3306, but that just gives me this error: "Access denied for user: MYWEBUSERNAME@hostMYWESBITES.COM (using password:YES)" I do have a support call out with the hosting company, as I am at a complete loss on this one!! but they can take upto 72 hours to respond! Can anyone guide me on this one?? All replies appreciated.
  15. a shortcut, which links to my page, on their desktop will make them visit my page more often. This is just kind of a bookmark . <{POST_SNAPBACK}> If your website did that to my desktop, I would delete the shortcut and never return!! Your site should be so good that people want to add it to their own faves list...... concentrate on that instead on installing shortcuts.
  16. I had a similar issue in my phpBB forum site when I added a page, I included a file that had already sent the headers, which is what I think the faq_variables code might be doing...... I am no expert in PHP only having learned how to code in it this year..... What is in the faq_variables code?? It is not a MySQL error........
  17. Hi, I asked exactly the same question last year, this was the reply I got: http://www.msfn.org/board/index.php?showtopic=16401&hl= The post by justice was most helpful!!
  18. Have a look at this link on google that may help you decide what to do. http://www.google.co.uk/intl/en/webmasters/2.html#A1 and http://www.w3.org/TR/REC-html40/present/frames.html#h-16.4 I like the w3c site as it is full of useful information and it will help validate your html/xhtml and css for you...... have fun!! Hope it helps?
  19. I was interested in doing something similar and found this, This might be what you want, the script is easy to edit for different colours, I use PS color picker to get the hex digits for whatever colour I want. http://www.javafile.com/mouseover/dhtml1.php You will have to experiment with the HTML side to see how you can apply it to the whole row.
  20. Probably not in real life, in Recon they don't go far at all...... strange really..... roll on the next patch, but as always people will not be happy with it because of one thing or another.
×
×
  • Create New...