3,436 Topics
![]() | |
Oh god, someone PLEASE help me!!! Certain websites aren't working for me via Fx & IE, but they are working for others. In fact I had just installed AVG, thought that was part of the problem & uninstalled it (I'm going back to Anti Vir), but it's still a problem. … | |
Our company wants to migrate a large multi-server website to a new set of servers. Current technology is mostly unix/Apache. It's been developed over a period of several years using very basic tools (vi, perl/cgi, notepad, etc.). I'm looking for tools that will assist us in the migration. We have … | |
Is there anyway you can generate a random url for users to download files located in my sub-domain? for instance if my sub domain file location is web.domain.tld/diffrentfoldername/ then would i be able to change that differentfoldername to a random string and then have visitors download a file from there? | |
can any one tell me how jsp is loaded on to apache tomcard server????? | |
Hi, I have written a web service and have deployed it using Apache Axis2. What I want to do is to invoke this service using a python script. Can anyone point me in the direction of how to do this. I will be grateful If anyone can give me a … | |
Hello all, My web host is Linux (I use cpanel) and i'm having an application developed for my gps project in C++ with Microsoft Web Services. gps devce - sends data ([U]get[/U]) to serial port reader (developed with C++) which then forwards & dumps it into mysql DB - that … | |
I m getting problem in displaying charts and m not exactly able to find the problem plz plz help me wher i m wrong plzzzzzzzzzzzzzzzzzzzzzzz its very urgent............-------- --------------------- [code=java]package src; import java.io.PrintWriter; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; import javax.servlet.http.HttpSession; import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartRenderingInfo; import org.jfree.chart.ChartUtilities; import … | |
Hello, I was just hoping for a bit of help or for someone to point me in the right direction. Okay, so this past August, I found a really old windows 98 machine (433mhz processor and 96mb of ram). I decided to put slackware on it, and mess around with … | |
hi guys, ive recently got a virus that avg 8 detected, im pretty sure it is bad because when i load up my computer it would say "error loading ( ) the specified module could not be found" and my msn would just exit by itself and i wouldn't be … | |
Hi, Im havinbg problems with this process lsass.exe that is consuming lot of memory (more than 100mb) and i dont know what to do Here i give you my hijackthis log Thks for youe help Logfile of Trend Micro HijackThis v2.0.2 Scan saved at 13:19, on 2008-05-31 Platform: Windows XP … | |
whenever i use to connect through linphone over sip server on fedora8, i am getting error unable to write registration file and :ortp-error-Could not find default routable ip address ! please help... | |
![]() | I cannot get my locally installed Apache 2.2 to execute a .php if simply passed the folder. For instance, if I tell my browser, "http://localhost/dev/wordpress/wp-admin/" it simply gives me a directory listing of the folder. There is an index.php file there, and if I click it, it executes normally. Or, … ![]() |
I am using Linux fedora and I am new in the Linux world, and I'd like to know how to configure its network such that I am able to exchange file with my peers. Please anybody who can help? | |
Hi I would like to put a list of ids in an array and loop to select data from a table using "IN" in the where clause. I am not having any success getting this to work. Any suggestions? Note:I am using Mysql database, apache, linux/Windows <? //array with list … | |
Hi. I am using WAMP with following tools: 1. PHP 5... 2. MySQL 5... 3. Apache 2... 1. I don't have REMOTE_USER variable in my php.ini file, How can I include it in my php.ini 2. How to change the variable REMOTE_USER in php.ini, through PHP script? Thanks | |
Hi all, I am new to this perl script. I want to open notepad.exe in perl script in the foreground., i.e if I give the command as system ("c:\\windows\\notepad.exe") , notepad should appear in the foreground. (should not run as a background process). I am using Apache server on windows. … | |
Hi all, I'm trying to consume a Service called GetMemberPointsAvailable using VB.NET. Here is the wsdl: [url]http://sp-s3g-uat.iclp.com.au/ws/egapi/v1-0/egapi.cfc?wsdl[/url] This service is written in coldfusion - axis engine. The steps: I'm using VB.net on Visual Studio 2005. I created a new windows application project. Then I added a web reference with URL … | |
Hi I am kinda unsure of how the processing time should be computed for a cluster. Say, for example I have a cluster of 2 machines and I run a visualization application, I need to record the processing time of certain parallel algorithms. Okay the question, a) When I run … | |
I get the following when attempting to view a project I have, I have MySQL 5.0 and Tomcat 6.0. Both services are running. As far as MySQL connectors, I have both "mysql-connector-java-5.0.7-bin" and "mysql-connector-java-3.0.8-stable-bin". This has not worked with either one. HTTP Status 500 - type Exception report message description … | |
I am 70 years old and have been programming since 1977. My first computer had no software. We had to write everything using a crude form of basic and a Zilog Z-80 compiler. It started as a hobby and then became a passion. I have used Basic, Cobol, Pascal, fortran, … | |
Hello, I am setting up a new site on my server (Apache on windows) that is for my buddys to down load files from me because I am tired of burning discs for them lol lol. What I want to do is set up the site on my server like … | |
Hi I'm relatively new to Unix and after setting up PHP5, I was unable to start the Apache Server. The error below was reported:- httpd: Syntax error on line 53 of /usr/local/apache2/conf/httpd.conf: Cannot load /usr/local/apache2/modules/libphp5.so into server: ld.so.1: httpd: fatal: relocation error: file /usr/local/apache2/modules/libphp5.so: symbol xmlTextReaderSetup: referenced symbol not found … | |
Hello everybody, I am using WAMP: 1. PHP 5.. 2. MySQL 5.. 3. Apache 2.. the collation of my database and tables and fields are 'utf8_persian_ci', and also my query is in this format in PHP: [CODE]mysql_query("SET NAMES utf8"); mysql_query("SET CHARACTER SET utf8"); $query = mysql_query("SELECT * FROM tblName SORT … | |
I have written this code in Jsp file . [code=JSP]<% Connection con=null; Statement st=null; PreparedStatement ps; String nm=request.getParameter("tnm"); String loc=request.getParameter("tlc"); try { Class.forName("com.mysql.jdbc.Driver"); con=DriverManager.getConnection("jdbc:mysql://localhost:3306/rahul","root","root"); st=con.createStatement(); try { ps=con.prepareStatement("insert into dept(deptname,location) values(?,?)"); ps.setString(1,nm); ps.setString(2,loc); ps.executeUpdate(); out.println("Value inserted "); } catch(SQLException e) { out.println("sql is not executed"); } } catch(Exception ex) { … | |
![]() | Hi, I hope this is the right place to post this topic. I'm building an imagealbum application. Registred users can visit certain parts of the album after authentication. So, the usermanagement and authentication process are build as servlets in Tomcat using a jdbcrealm. As the images are uploaded directly thru … |
I m trying to use <jsp:include page> with apache tomcat 5.5.26 as follows [code] 679:</table> 680: </td></tr> 681: <tr><td colspan=2 width="100%"> 682: <jsp:include page="html/policy.html" flush="true"/> 683: </td></tr> 684: <tr><td colspan = 2 align="center"> 685: <input type="hidden" name="hide" value="3"> [/code] where policy.html is html file to display policy. while trying to … | |
i am trying socket programming in linux(fedora 7) using C language. i want to send a buffer from server to client,and vice versa. but the contents are not getting saved.the contents are unsigned long so i am converting them into ascii usinf sprintf and then saving in buffer.but its not … | |
Hi. I am using WAMP5 Version 1.7.2, which includes : 1. PHP Version 5.X 2. MySQL Version 5.X 3. Apache Version 2.X 4. Php-MyAdmin But it does not recognize DB.php file, I dont why...I get the following error [B] failed to open stream: No such file or directory in F:\wamp\www\XXX[/B] … | |
Hi! how can i run a python script in a link such as([url]http://192.168.8.111).what[/url] do i nid?i have ubuntu7.10 and installed apache2.pls help.tnx!! | |
I m trying to connect MYSQL 4.1.1 from JSP using java. and I m getting error as described below. javax.servlet.ServletException: Extra bytes at the end of class file org/gjt/mm/mysql/Driver org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:841) org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:774) org.apache.jsp.Login100408_jsp._jspService(Login100408_jsp.java:697) org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98) javax.servlet.http.HttpServlet.service(HttpServlet.java:803) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331) org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329) org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265) javax.servlet.http.HttpServlet.service(HttpServlet.java:803) plz help me I m not getting any solution. | |
wen i write the following codes in a jsp file it is not working prperly the code is [code=JSP]<body> <p> <jsp:plugin type="applet" code="fphover.class" codebase="./" width="120" height="24"> <jsp:params> <jsp:param name="textcolor" value="#FFFFFF"> <jsp:param name="text" value="page name"> <jsp:param name="color" value="#808000"> <jsp:param name="hovercolor" value="#FFFFFF"> <jsp:param name="effect" value="glow"> <jsp:param name="url" valuetype="ref" value="p1.jsp"> </jsp:params> </jsp:plugin> </p> … | |
hi ALL... i'm a new in IT woRLD.. right now i work with PHP, Apache, And MySQL i want to create aplication that already work(use Apache,PHP, MysQL but it stand ALone )being apLication that executable what i want is in the future all that i need is just install the … | |
Can someone tell me what this code does not work: [code] RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_URI} !^/?web RewriteRule ^/?(.+) /web/$1 [L] [/code] I am trying to get it where if someone visits any file that does NOT exists: http://www.domain.com/usernameHere it would just load http://www.domain.com/web/usernameHere We … | |
Hi. I Installed Apache 2, PHP 5, and Mysql 5 (All Latest Version) and now i when open e script on my localhost that needs a mysql connection (i tried with phpmyadmin) i get a error: Could not load module mysql.dll (ore something like this) but the service is running … | |
Hi, I'll explain my problem so you could picture it clearly. I do a complex query to fetch some information from the database and the problem is that the query takes some time. Fortunately, the result of the query doesn't change often, so I thought of a solution to store … | |
hi frnds, My problem is that i am having a form that makes selects various persons profile through check boxes. Now i want that in my mysql database , those selected gets stored against the login user on bookmark button click. Problem comes when the user again logins , if … | |
I get this error: Warning: require(D:\Apache\htdocs\public_html/lib/stdlib.php) [function.require]: failed to open stream: No such file or directory in /home/homebase/public_html/config.php on line 143 Warning: require(D:\Apache\htdocs\public_html/lib/stdlib.php) [function.require]: failed to open stream: No such file or directory in /home/homebase/public_html/config.php on line 143 Fatal error: require() [function.require]: Failed opening required 'D:\Apache\htdocs\public_html/lib/stdlib.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/homebase/public_html/config.php on … ![]() | |
Hi, I have made a program in c++ that inputs a file, and outputs the number of characters... I have placed this executable into my apache 2.2 server's cgi-bin directory under the name "TestApp.exe" how would I retrieve the output of this file by calling it with either PHP, or … | |
Hello everyone! I'm a graphic designer here in Sterling Heights, Michigan and I have a bit of a problem with our current website pages. I should tell you that it was not developed by me, but rather by our IS person, and I don't think he used any one particular … | |
:@ I reinstalled that entire PC from scratch (reformated the drive). Something must have come back from a restore because I have this OuterInfo crap on the PC that keeps popping up ads. When try to uninstall it, it asks for me to type in characters from a graphic as … | |
Hi Expert, when i m accessing a .shtml file from my apache server, I got this Error."You don't have permission to access /test/link.shtml on this server.: 403 Forbidden" on windows O.S Pls tell me the Procedure to solve this Error.. Thnx in Advance | |
Hey Guys.....I am new in web development and this was supposed to be my first Servlet but I am getting java.lang.ClassNotFoundException: servlets.HelloWorldServlet Now in my Apache tomcat folder C:\apache-tomcat-6.0.16\webapps\ServletExamples I have the WEB-INF folder.....which has the web.xml.... Web.xml is something like this... [CODE] <?xml version="1.0" encoding="ISO-8859-1"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee … | |
I have a webmail on my apache server. When some clients are connecting to the login.php source. The apache logs that favicon.ico was not found. I searched what is favicon.ico for. It is a small icon on the address tab. But I could not make to log the server the … | |
Hello Everyone, I am the newest blogger on the virtual block here at DaniWeb. I am the Linux Blogger and new regular contributer. I have been messing with Linux for about 13 years now and I feel like it's an old friend of sorts. I do a fair amount of … | |
Hi! I'm trying to learn PHP but as proceed with tutorials I encounter more and more problems. and I'm not sure if they are arising from my mistakes because I just rewrite very simple tutorial excerisies. I get this two errors when I load table1.php in my browser: Warning: mysql_num_rows(): … | |
when I try and drop a file into my apache folder it wont let me when I try and access my source server it wont let me, error do not have permissions :( Any Ideas? I tried loging in as root but it wont lket me at the login screen … | |
hey guys I've been trying to connect this jsp site with MySQL database for a school assignment and I just can't seem to get it to work. It's getting really really frustrating because I have copied my friend's code(which does work on his pc) and for some odd reason it … | |
What's all this about? [quote]The HTTP-equivalent [inlinecode]meta[/inlinecode] tag does the job of setting a page's content type, but if at all possible it is preferable to use a genuine HTTP header. With the [inlinecode]meta[/inlinecode] tag, the browser must recieve the HTML file and then decipher the content type, but by … | |
I have php code for simple file uploadings. I have index.php with form [CODE] <form action="upload.php" method="post" ENCTYPE="multipart/from-data"> Choose file <input type="file" name="userfile" size="50"> <input type="submit" value="Upload"> </form> and upload.php <?php $uploaddir = '/var/www/htdocs/upload/data/' $uploadfile = $uploaddir . basename($_FILES['userfile']['name']); * if(is_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) { * echo "file uploaded."; } else { … |
The End.