4,273 Topics
![]() | |
[B]My web server is hacked and here is some info =, which may help in rectifying. as per my investigation, the port 80 data is corrupted. Please guide me how to secure and fix it the problem is.[/B] When i am trying to access my server through web browser from … | |
hello guyz, i am new here thought might be helpful to post here. so here it goes i have classic asp page who will call web services and display results now the problem is that i can login into the web service and logout as well which does not give … | |
Hi guy can help me with this. I 'm new on using the apache web server. I upload all the thing inculde the image file when i view on my pc i can show the image very nice but when i open in other pc i cant display my image. … | |
I created a job site using my web masters, now I wanted to use the same script for my other job domains. I tried copying all my php web pages in to the server, and also changed the database configuration to match the new server password, I created tables in … | |
hello, everyone... I got an issue here, my db that bind at my applet doesn't load at the web browser but it run very well at appletviewer. here the error : [code] Java Plug-in 1.6.0_13 Using JRE version 1.6.0_13 Java HotSpot(TM) Client VM User home directory = C:\Documents and Settings\Admin … | |
Hi, I am working on a shopping cart .The code executes successfully and functions in my system, but after uploading the .dlls its giving an error like this: [B]Server Error in '/' Application. -------------------------------------------------------------------------------- Object reference not set to an instance of an object. Description: An unhandled exception occurred during … | |
I'm creating an input form for users so that they can input various bits of info into a db. One of the fields is so that they can upload a file, which puts the file onto the web server and the path to it into the db. The problem is … | |
I created a job site using my web masters, now I wanted to use the same script for my other job domains. I tried copying all my php web pages in to the server, and also changed the database configuration to match the new server password, I created tables in … | |
i have the below code: its appear error when i run the code: [CODE=jsp]<%@page contentType="text/html" pageEncoding="UTF-8"%> <%@ page import="java.io.*,java.sql.*,java.util.*,java.text.*,java.text.SimpleDateFormat" %> <html> <% int val =0; StringcontentType = request.getContentType(); if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0)) { DataInputStream in = new DataInputStream(request.getInputStream()); int formDataLength = request.getContentLength(); byte dataBytes[] = new … | |
Hello.... so recently I seemed to have attained some form of malware/virus that disallows me from running mbam (my go to guy ever since the fake antivirus background changer) or any other useful removal tools that I have installed. When I attempt to run any of these programs, the hour … | |
Anyone can help me solve this. I create a web site using css and lot of image when i upload on the apache server all the thing can not be display on my pc or in other pc when i access the address. So any genius help me solve this … | |
Yep that's right! You guys got a new member to deal with, jk. But yeah nice fourm boards you guys got, hopefully it will prove useful in the near future. I deal with all types of IT solution, mostly revolving around web technology, so server configurations and programming is what … | |
I'm ready to put up my Python web server, but before I do I would like to know what security risks hosting a web server presents. And more importantly how do I make it more safe and secure? Thanks. ![]() | |
I am developing a website to automate the virtual server creation. At the time of creating and starting the VPS, I am receiving this error message. I think it is regarding something permission related and my host can solve this. I am just looking for a suggestion if there is … | |
hey, first off I'd like to state that I am pretty new to ms sql and stored procedures tho I have worked with sql for quite some time. My employer would like me to write a script which takes html content from a mssql db (originally delivered dynamically) and create … | |
Hi all , I have been given a task which is to create a (log in )web page , user has to log in to the page after that a page with many links of forms such as leave form, feedback form,complain form,...etc. once a user has clicked to one … | |
Hi, I am testing a PHP web site offline using XAMPP server application. The website runs great, but the only problem is that the .css is not running. The odd thing is that if I am online and I test the website locally the .css file works, but if I … | |
Hi all. I am just beginning with PHP and I'm having some trouble installing PHP5 with Apache 1.3.29. Both finally seem to be installed and running after some tweaking of the httpd.conf file AddModule comand. However when I run a php file in my browser (IE) I get a message … | |
hi, there , i am coming up with a login page and i am getting error on the codes... please help. [code]<script runat="server"> Sub OnLoginError(ByVal sender As Object, ByVal e As EventArgs) Login1.PasswordRecoveryText = "Forgot your password?" End Sub Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Dim … | |
I finished making a basic web server a little while ago, however I cannot access it at all. I ran it on my mac, which didn't work. I then ran it on my PC and tried to access it from my mac using Firefox. This is the code I have … | |
I am working an an app that allows users that create crystal reports (.rpt files) to upload and view their reports via my web application using the CrystalReportViewer server control. I would like to dynamically create my own form for them (to take the place of the ugly ones Crystal … | |
Question 1 You are required to write the code for sevlet which will take username and password from the html file and matches with database which contains two columns; one for username and other for password. Providing correct information leads to welcome page otherwise to a login page again. You … | |
I am more interested to know a site that got sample web access code -- to access SQL server / oracle database == could include any of the following language --- c# , vb.net, jsp --- asp, javascript -- ajax answer could be in form of the coolest CMS on … | |
Hi, I cannot connect to internet using internet explorer. I can browse web pages with any other browser. When I type a web page and click enter in internet explorer, explorer just waits and indicates that it is connecting to some ip on the left below corner. I think it … | |
Hello, I was accessing an webmail server that uses outlook web access and shows a padlock and digital certificate. What I got surprised is that I was able to capture the password and username with a sniffer (cain). Wasn't it supposed to encrypt the password before sending it to the … | |
Hello everyone, I'm new to PHP and having a very basic problem of instaling the web server correctly. Now,I tried to run PHP 5.2.9 , The instalation program asked me to choose a web server and for not having much understanding in this I chose apache 2. The problem was … | |
i did it like this but it seemed stupid : [CODE]string path = Assembly.GetExecutingAssembly().Location.Substring(0, Assembly.GetExecutingAssembly().Location.LastIndexOf("\\")) + "\\Sounds";[/CODE] any other ideas? my actual goal is to locate the files in my project output directory. it can be any directory i created under my windows application. it is not as straight forward … | |
Hi, I'm trying to build a web server in Python, and here is what I have so far: [CODE] Code: from http.server import HTTPServer, BaseHTTPRequestHandler class RequestHandler(BaseHTTPRequestHandler): def _writeheaders(self): self.send_response(200) self.send_header('Content-type', 'text/html') self.end_headers() def do_HEAD(self): self._writeheaders() def do_GET(self): self._writeheaders() self.wfile.write("""<HTML> <HEAD><TITLE>Sample title</TITLE></HEAD> <BODY>sample text</BODY> </HTML>""") serveraddr = ('', 8080) srvr … | |
![]() | Greetings, I'm not a very advanced programmer at all. I found a piece of code that helps me out a lot at [url]http://www.codelifter.com/main/javas...lideshow2.html[/url]. It allows an image to crossfade into another, into another, etc. I'd like to be able to crossfade an image, with a text caption underneath it, to … |
Hi all, I'm developing an online booking system. I'm freaking-out becasue this is my school assignment project which I'll be evaluated on but i'm pretty new in IT . I'm really struggling. I'm going to use MS Access as my db and Visual Basic.Net to develop the user interface. What … | |
Hi Guys, So, actually we will show you some trick how to get coded WHMCS files work property for you. You may think that it is another boring topic of how to or something, but unfortunately it’s not :) I was looking for a lot of information of how to … | |
When I run programs such as firefox there are lots and lots of connection open and they really aren't running as quickly as I'd think a supposed 10Meg cable connection should be. Could someone have a look at my hijack log and see if anythings not quite right please. Running … | |
The DNS ([URL="http://www.miempresaenlinea.com"]Domain Name Service[/URL]) translates the domain the name to an IP address.that will translated to the to locate the server on which a specific web page resides. so in order to locate a server, all domain names need at least two DNS servers (one primary and another secondary), … | |
Hi all, I have a rather conceptual Python question. I have written a client - server application, using sockets. So far, I'm not using any database nor file, everything is held in server's variables. Now I need to make some kind of web interface for the server - for a … | |
Hello everyone, I have been trying to launch my JSP web application using Tomcat using my laptop as the server, with little success. I have registered a DNS at dynDNS.com ( free DNS, anyone!), made my IP static, forwarded port 8080 and port 80. The only problem I believe is … | |
Dear There I have one web application created in asp.net. i hosted the website on one american server. As the site was on american server so i did all scripting for date checks and conversion by keeping in mind the format mm/dd/yyyy. Now after one and half year i have … | |
Hey Guys, I am trying to call codebehind onclick event from my markup from Firefox works find in IE. I hv created an image button and onClientClick I m calling a javascript function after checking some fields it should call onClick event in code behind but unfortunately its not, Please … | |
Hi, I have Windows 2003 Server that's running DHCP and RRA. I've installed a residential gateway software (wifi hotspot program) My laptops and PC are getting IP's with no problems but accessing the internet on the laptop is a problem. The server can surf just fine Here's my setup: ADSL … | |
Hi, i have an asp.net page running vb.net, connecting to an access database. I am using an inner join to connect to two tables Table1 CityID CityName Table2 DateID CityID DateText Status I am running a dataGrid which displays the CityName, DateText and Status. I would like the Status to … | |
Hello, I'm working on a project using web services in C#. I have a Oracle database and different clients are requesting data using the web services from the Oracle database. In time after a few hours of running the web services IIS server memory usage seems to increase. I've checked … | |
Hello there, Im new in JSP Just want to ask, how I can force web browser to popup download box to download the .prn file that was generated by server? Assume that [CODE]fileName.getAbsolutePath()[/CODE] is the variable that hold the path for .prn file *** Im using pure JSP | |
Does anyone know the best way to insert this [URL="http://www.jland.netfirms.com/template/horizontal_menu.html"]menu[/URL] into this [URL="http://www.jland.netfirms.com/template/index.html"]web template [/URL]I would like to insert this menu into the black area (replacing "some simple text or some links here") Is there a server side include that allows me to work offline? Thanks for your time. | |
I have been testing a application I made, which is a simple swing interface with a checkbox. I am using custom icons for my checkbox, for checked, checked and mouse-over, unchecked, and unchecked mouse-over. I am using the eclipse IDE. Eclipse creates your application in the workspace file, so the … | |
In the code at the end of this post, the dropdownlist and the textboxes are used to supply values for an update command associated with a sqldatasource. When the update command runs, it returns the following error: ***************************************************** Could not find control 'ddlTitle' in ControlParameter 'Title'. Description: An unhandled exception … | |
hi, i need help with this codings. i did this in visual web developer.it is based on jscript and i need to convert it into asp.net.please help. [code=asp.net]<%@ Page Language="JScript" %> <%@ Import Namespace="System" %> <%@ Import Namespace="System.Data" %> <%@ Import Namespace="System.Data.OleDb" %> <%@ Register TagPrefix="Header" TagName="ImageHeader" %> <!DOCTYPE html … | |
Logfile of Trend Micro HijackThis v2.0.2 Scan saved at 3:36:19 AM, on 5/25/2009 Platform: Windows XP SP2 (WinNT 5.01.2600) MSIE: Internet Explorer v7.00 (7.00.6000.16512) Boot mode: Normal Running processes: C:\WINDOWS\System32\smss.exe C:\WINDOWS\system32\csrss.exe C:\WINDOWS\system32\winlogon.exe C:\WINDOWS\system32\services.exe C:\WINDOWS\system32\lsass.exe C:\WINDOWS\system32\svchost.exe C:\WINDOWS\system32\svchost.exe C:\WINDOWS\System32\svchost.exe C:\WINDOWS\system32\svchost.exe C:\WINDOWS\System32\svchost.exe C:\WINDOWS\System32\svchost.exe C:\WINDOWS\Explorer.EXE C:\WINDOWS\system32\spoolsv.exe C:\PROGRA~1\Grisoft\AVG7\avgamsvr.exe C:\PROGRA~1\Grisoft\AVG7\avgupsvc.exe C:\PROGRA~1\Grisoft\AVG7\avgemc.exe C:\WINDOWS\System32\gearsec.exe C:\WINDOWS\System32\svchost.exe C:\windows\system\hpsysdrv.exe C:\WINDOWS\System32\hkcmd.exe C:\Program … | |
Hi, This is milind here from Gem Web Host... a web hosting company. I work there as a web designer...but i have a thorough knowledge of web hosting plans and its solutions...if any on has queries, about web hosting, namely shared hosting, reseller hosting, VPS or Dedicated server queries feel … | |
i scanned my computer and yahoo anti-spy found these problems: Comsa B (backdoor) Refpron AO (trojan) Routekit (the trojan that downloaded the other trojan) i think i have managed to remove it from my pc with yahoo anti-spy but then my Nod32 keeps detecting a virus on my pc.. pls … | |
Hi , I am trying to bind a drop down and checkbox with values from two tables from database. The 1st table has categories and is binded to the DDL and the 2nd table has sub categories and is binded to checkbox and inter related by using the category ID … | |
hello i am trying to add webreference by right clicking on project in visual studio 2008 located at webadress [url]http://www.uclocal.com/customerservice.asmx[/url] visual studio finds the webservice but it dont add webreference it gives me error message below The document at the url [url]http://www.uclocal.com/customerservice.asmx?WSDL[/url] was not recognized as a known document type. … |
The End.