Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 31
Search took 0.11 seconds.
Search: Posts Made By: Lightro
Forum: General web building 06-27-2008, 01:02 AM
Replies: 15
Views: 7,194
Posted By Lightro
Ok well thanks. I was only trying to do what...

Ok well thanks.

I was only trying to do what seemed so easy described here: http://www.evolt.org/article/Making_clean_URLs_with_Apache_and_PHP/18/22880/

How exactly can a permanent 301 redirect...
Forum: General web building 06-26-2008, 02:02 AM
Replies: 15
Views: 7,194
Posted By Lightro
I don't think that is quite what I'm looking for....

I don't think that is quite what I'm looking for.

What I originally tried was changing "listings.php" into "listings" and then using SetHandler to make that file be read as php.

In the method...
Forum: General web building 06-26-2008, 01:05 AM
Replies: 15
Views: 7,194
Posted By Lightro
I don't know if mod_rewrite is enabled. Don't you...

I don't know if mod_rewrite is enabled. Don't you need the httpd.conf file to enable it?

I want my url to go from

mydomain.com?listings.php?category=testcategory

to
...
Forum: General web building 06-26-2008, 12:30 AM
Replies: 15
Views: 7,194
Posted By Lightro
Oh my server does support php, I'm using it on a...

Oh my server does support php, I'm using it on a lot of pages.


Yes well I have tried a few methods but none of them seem to work.

I have tried this method:...
Forum: General web building 06-26-2008, 12:23 AM
Replies: 15
Views: 7,194
Posted By Lightro
Oh ok, well thanks for the help. So there is no...

Oh ok, well thanks for the help. So there is no other way to implement clean urls without using the httpd.conf file?
Forum: General web building 06-26-2008, 12:04 AM
Replies: 15
Views: 7,194
Posted By Lightro
Actually in my /etc directory there is only one...

Actually in my /etc directory there is only one folder and it has the same name as my domain name.

As for searching with the terminal, I'm using a mac and connecting to the server via Transmit, so...
Forum: General web building 06-23-2008, 01:28 AM
Replies: 15
Views: 7,194
Posted By Lightro
2.6.24.3-grsec #7 SMP 2008 i686 i686 i386...

2.6.24.3-grsec #7 SMP 2008 i686 i686 i386 GNU/Linux
Forum: General web building 06-23-2008, 01:07 AM
Replies: 15
Views: 7,194
Posted By Lightro
Can't find the httpd.conf file

Hi.

I am trying to set up clean urls on my website with:

<Files article>
SetHandler application/x-httpd-php
</Files>

But it just wasn't working. The file was been read as a text file.
Forum: Java and JSP 02-27-2008, 03:29 AM
Replies: 2
Views: 16,531
Posted By Lightro
Actually nevermind I forgot to actually display...

Actually nevermind I forgot to actually display any errors that come up -_-

Once I made it display errors I found out that the problem was that I put
urlConn.setDoInput(true);...
Forum: Java and JSP 02-27-2008, 03:08 AM
Replies: 2
Views: 1,096
Posted By Lightro
The HTML for putting a java applet on a webpage...

The HTML for putting a java applet on a webpage is:


<applet code="applet file here.class" widh="width" height="height"></applet>

The structure of a java applet is:


import javax.swing.*;...
Forum: Java and JSP 02-27-2008, 02:19 AM
Replies: 2
Views: 16,531
Posted By Lightro
Java POST Data

Hi.

I am new to java and am having trouble with using java and POST data.

I am trying to create a simple script that will send a POST parameter to a php file and then display the output.

My...
Forum: JavaScript programming 02-25-2008, 03:37 AM
Replies: 4
Views: 886
Posted By Lightro
In the head section put: <script...

In the head section put:

<script type="text/javascript">
<!--
var count = 0;

function increaseCounter() {
count++;
document.getElementById("counter").innerHTML = count;
}
Forum: Java and JSP 02-25-2008, 03:22 AM
Replies: 1
Views: 1,139
Posted By Lightro
Setting the content pane twice

Hi there. I am new to java and was wondering if it was possible to set the content pane twice.

For example, say I had a GUI that had a login form, or you could click register to register, how...
Forum: JavaScript programming 01-16-2008, 10:15 PM
Replies: 2
Views: 783
Posted By Lightro
Oh thanks man I didnt think of that :D

Oh thanks man I didnt think of that :D
Forum: JavaScript programming 01-16-2008, 09:47 PM
Replies: 2
Views: 783
Posted By Lightro
Passing an array through a function in window.setInterval()

Hi.

If I predefine an array, then is there a way to pass it through a function in window.setInterval()?

Like..


var arr = new Array("value1", "value2");

function changeArray(thearray) {
Forum: JavaScript programming 10-17-2007, 04:29 AM
Replies: 2
Views: 749
Posted By Lightro
If the search is done using post data then you...

If the search is done using post data then you could have:

<input type="text" name="search" value="<?php echo $_POST["search"]; ?>">

Get data is $_GET["search"];
Forum: JavaScript programming 10-16-2007, 12:25 PM
Replies: 5
Views: 918
Posted By Lightro
the codeing for pre loading an image is: ...

the codeing for pre loading an image is:


if (document.images) {
var image = new Image(width, height);
image.src = "URL";
}
Forum: JavaScript programming 10-16-2007, 12:18 PM
Replies: 6
Views: 2,936
Posted By Lightro
<head> <script type="text/javascript"> <!-- ...

<head>
<script type="text/javascript">
<!--
function changeImage() {
if (document.getElementById) {
document.getElementById("image").src="images/footer/accept.png";
}
else if...
Forum: JavaScript programming 10-16-2007, 12:12 PM
Replies: 5
Views: 3,102
Posted By Lightro
you might want to try : window.onload =...

you might want to try :

window.onload = function() {
if (document.getElementById) {
var element = document.getElementById('content');
}
else if (document.all) {
var element =...
Forum: Post a PHP snippet 09-05-2007, 01:05 PM
Replies: 9
Views: 19,706
Posted By Lightro
lol a guestbook only needs one file... Just...

lol a guestbook only needs one file...

Just seems beond basic to me since I am developing a forums :P
Forum: PHP 09-05-2007, 12:24 PM
Replies: 6
Views: 788
Posted By Lightro
Yes I have developed my own style in coding, and...

Yes I have developed my own style in coding, and have found that a creative mind is the way to go.
Forum: PHP 09-05-2007, 12:17 PM
Replies: 4
Views: 790
Posted By Lightro
You probably need a php developer man. I'm...

You probably need a php developer man.

I'm only a student but I would work for a low price for you via the internet some how?
Forum: PHP 09-05-2007, 12:01 PM
Replies: 7
Views: 675
Posted By Lightro
Save their session to a cookie I would say :)

Save their session to a cookie I would say :)
Forum: DOM and JSON scripting 06-28-2007, 05:10 AM
Replies: 12
Views: 22,061
Posted By Lightro
Thanks man I have been stuck on a similar problem...

Thanks man I have been stuck on a similar problem for a few days this is very handy information :)
Forum: HTML & CSS 06-08-2007, 10:03 AM
Replies: 5
Views: 933
Posted By Lightro
Thankyou :). Yes well quite frankly I am not...

Thankyou :).

Yes well quite frankly I am not sure how much I will be needing to use css in the sites I script. I am already pretty comfortable with html javascript and php but I didnt really put...
Showing results 1 to 25 of 31

 
Forum Jump

All times are GMT +1. The time now is 11:05 AM.