Search Results

Showing results 1 to 40 of 47
Search took 0.01 seconds.
Search: Posts Made By: Banderson
Forum: PHP Jul 23rd, 2009
Replies: 36
Views: 2,327
Posted By Banderson
cwarn23 gave you probably the best advice here. If your still getting that error, it would mean you have a parsing error in your ini file. PHP cannot start because of this error.

Since php 5 a...
Forum: PHP Jul 23rd, 2009
Replies: 5
Views: 397
Posted By Banderson
Your welcome good luck, please mark this thread as solved.
Forum: PHP Jul 23rd, 2009
Replies: 5
Views: 397
Posted By Banderson
Be sure you do not have any white space or blank lines in your script before the
<?php
header("Content-type: image/png");
Forum: PHP Jul 23rd, 2009
Replies: 5
Views: 397
Posted By Banderson
It looks like your sending the wrong header in your output script. Change the header type in your output by putting
header("Content-type: image/png");

in the top of your script.
Forum: PHP Jul 22nd, 2009
Replies: 36
Views: 2,327
Posted By Banderson
In Apache your httpd.conf file

Be sure that php module is enabled. Take out the # in front of the line if it is there.

If your using PHP version 5 Look for the following lines

LoadModule...
Forum: PHP Jul 22nd, 2009
Replies: 1
Views: 344
Posted By Banderson
Yes curl can fetch data from other websites on localhost if it is enabled.
Forum: PHP Jul 22nd, 2009
Replies: 5
Views: 595
Posted By Banderson
Glad you got it fixed, please mark this thread solved.
Forum: JSP Jul 22nd, 2009
Replies: 5
Views: 372
Posted By Banderson
Well it depends on the language too. Web apps are a little more difulcult to deal with sometimes because they are mapped at load time with XML config files. If the mapping is not right in won't...
Forum: JSP Jul 22nd, 2009
Replies: 5
Views: 372
Posted By Banderson
Ok your source says that your JavaScript file is 2 directories up.

<script type="text/javascript" src="../../mainapp/scripts/xxx.js"></script>

Try changing this to 1 directory like :
<script...
Forum: PHP Jul 22nd, 2009
Replies: 5
Views: 595
Posted By Banderson
Be sure that session_start(); is the first line in each of your codes without spaces or blank lines.
<?php
session_start();
............................
?>
Forum: PHP Jul 22nd, 2009
Replies: 1
Views: 305
Posted By Banderson
Look at your file path :
D:\wamp\www\codeigniter\admin/system/codeigniter/CodeIgniter.php


Your slashes are going the wrong way aren't they? Shouldn't the path be forward slashes? >>>> "\"
Forum: PHP Jul 22nd, 2009
Replies: 1
Views: 447
Posted By Banderson
If you get an error make sure it is not an access denied. An access denied is pretty common if your on a windows server. Because your requesting xmlhttp.open("GET",url,true); and windows is funny...
Forum: JSP Jul 22nd, 2009
Replies: 5
Views: 372
Posted By Banderson
Right click on the loaded page and view source, copy and paste the header info down to the body tag here. Then tell me what is the full path to your template files if your using a template system.
...
Forum: PHP Jan 26th, 2009
Replies: 6
Views: 537
Posted By Banderson
One way is to use the $_GET reserved variable.
eg: index.php?page=$_GET['title'];
You can read more about it at php.net (http://us3.php.net/manual/en/reserved.variables.get.php)
Forum: PHP Sep 18th, 2008
Replies: 8
Views: 979
Posted By Banderson
Add .htaccess file to your directory

Inside the .htaccess file input :

AddType application/x-httpd-php .html .htm
AddHandler application/x-httpd-php .html .php .htm

This should allow you...
Forum: PHP Sep 18th, 2008
Replies: 6
Views: 711
Posted By Banderson
Could you not put the link in the array like:



<?php
if(!empty($a1[image]))
{
$im_array = explode("|", $a1[image]);

$FirstImage = "<a href=\"link_to_your_image\"...
Forum: PHP Jul 29th, 2008
Replies: 2
Views: 12,333
Posted By Banderson
I use this snippet in all my codes if I have problems postings or getting vars. It works every time for me. I have made this into a class and used it for a long time.

Now why do you say :
and,...
Forum: Java Sep 24th, 2006
Replies: 7
Views: 5,041
Posted By Banderson
There is nothing wrong with this code. Read the first line of the exception:

Exception in thread "main" java.net.ConnectException: Connection timed out: connect

Your connection timed out....
Forum: Java Sep 24th, 2006
Replies: 12
Views: 2,219
Posted By Banderson
I think the first thing is learn the keywords, such as,

int
float
double
long
null
String
staticThere are several more keywords to learn.
Forum: Java Jul 9th, 2006
Replies: 8
Code Snippet: Hello World
Views: 4,661
Posted By Banderson
:mrgreen: hmmm. Interesting concept aniseed.
Forum: Java Jul 9th, 2006
Replies: 3
Views: 31,272
Posted By Banderson
Hi, This will show you how to create a login form using swing.

Please be aware that this form does not connect to anything.
( eg. A URL or a database)


This is just a little advanced example...
Forum: PHP May 30th, 2006
Replies: 2
Views: 2,802
Posted By Banderson
Go to: http://php.net/printer_open (http://php.net/printer_open)

Maybe this will help you.
Forum: Geeks' Lounge May 30th, 2006
Replies: 84
Views: 8,984
Posted By Banderson
I think I am getting shorter and my wife is getting taller :lol:
I am 5' 10"
Forum: PHP May 20th, 2006
Replies: 8
Views: 66,749
Posted By Banderson
This is how I send HTML email in my PHP Contact Form demo located at :
http://programmers-paradise.net/demos/contact/contact.php

The send email code is :
@mail($to, $subject, $message, "From:...
Forum: Community Introductions May 20th, 2006
Replies: 3
Views: 977
Posted By Banderson
Nice to meet you Trevor.
Welcome to the community.
Forum: Windows 95 / 98 / Me May 20th, 2006
Replies: 8
Views: 13,007
Posted By Banderson
Try downloading from Adobe at:
http://www.adobe.com/products/flashplayer/
Forum: PHP May 4th, 2006
Replies: 6
Views: 1,966
Posted By Banderson
Look in the manual for checkdate();
Maybe this will help you.
Forum: PHP May 4th, 2006
Replies: 5
Views: 1,823
Posted By Banderson
I recommend XAMPP if you're a beginner.
It will install Apache Server, PERL, MYSQL, PHP, PHPAdmin and other software to aid you in development.


I would also recommend installing APACHE and...
Forum: PHP May 4th, 2006
Replies: 4
Views: 4,398
Posted By Banderson
Your Form Below:


<html>
<head>
<title>TAEKWONDO WEBSITE - Membership Form</title>
</head>
<body>
<font face="arial" size="4">
<p align="center"><big>Membership Form</big></p>
Forum: PHP Apr 9th, 2006
Replies: 2
Views: 12,333
Posted By Banderson
Ever since PHP turned register_globals_off I have had problems here and there in my codes. I searched hard and long for a simple fix while keeping globals turned off. Fortunately, I found one! I...
Forum: Domain Names for Sale Mar 13th, 2006
Replies: 0
Views: 1,440
Posted By Banderson
Domain For Sale:

http://programmingonline.net

Make Me An Offer.... :cool:
Forum: Java Feb 9th, 2005
Replies: 5
Views: 5,227
Posted By Banderson
Hi, if your getting an error with drawOval then I would try drawRect();
In my opinion the while(true) and repaint(); should be in the run(); method since you should create a Thread and implement the...
Forum: Java Oct 14th, 2004
Replies: 7
Views: 5,097
Posted By Banderson
Oh my, how many times must this be repeated?
Forum: Windows NT / 2000 / XP Oct 14th, 2004
Replies: 9
Views: 37,715
Posted By Banderson
Hi Saaski,
I am not familiar with your system, but you can try this. It might work.

When you re-boot hit F8.
Choose the Safe Mode with Command Prompt Option.
After you log in you should...
Forum: Java Oct 4th, 2004
Replies: 2
Views: 2,484
Posted By Banderson
Hi eboney.
I know this is a late post, but this can be used for future reference. I'm not going to go in big detail on this, but maybe this will get you started. This code will take user input...
Forum: Windows NT / 2000 / XP Oct 3rd, 2004
Replies: 7
Views: 5,657
Posted By Banderson
Hi Noahsson,
Here is a link to some software that will do what you are wanting to do. Be sure to have windows recovery disk because it deletes your operating system too. DBan...
Forum: PHP Sep 30th, 2004
Replies: 3
Views: 3,009
Posted By Banderson
Hi mystique.
Personally, I recommend SmartFTP (http://smartftp.com/) :rolleyes:
Forum: Java Sep 30th, 2004
Replies: 10
Views: 6,080
Posted By Banderson
Hi dncloud, nanosani has put you on track pretty good. You use equals to compare strings. If you do not care whether or not the case of the two strings are identical you can use the...
Forum: Java Sep 20th, 2004
Replies: 1
Code Snippet: Sort numbers
Views: 14,113
Posted By Banderson
Here is a code to sort numbers instead of strings using the BubbleSort method. The difference here is you don't use compareTo() for numbers as you do with strings.
Forum: Java Sep 20th, 2004
Replies: 5
Code Snippet: Sorting Strings
Views: 42,229
Posted By Banderson
This class will sort strings in alphabetical order.
Showing results 1 to 40 of 47

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC