Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 64
Search took 1.81 seconds.
Search: Posts Made By: InterbredMonkey
Forum: General web building 03-23-2012, 08:23 AM
Replies: 3
Views: 815
Posted By InterbredMonkey
That is not a bad shout. I have not done much CSS...

That is not a bad shout. I have not done much CSS animation.

Thanks dude.
Forum: General web building 03-22-2012, 06:11 PM
Replies: 3
Views: 815
Posted By InterbredMonkey
Spare time project

I looking for an idea for a project to build in my spare time. I recently made a HTML5 media player and I wanted to do something different.

I recently learnt nodejs and websockets so that would...
Forum: PHP 10-03-2011, 08:11 PM
Replies: 9
Views: 1,270
Posted By InterbredMonkey
I never thought of it like that.... I think...

I never thought of it like that....

I think that the whole outputting a header 404 status but not redirecting is the way to go.

I don't need to load in any extra pages though because everything...
Forum: PHP 10-02-2011, 04:41 PM
Replies: 9
Views: 1,270
Posted By InterbredMonkey
Makes sense. Thanks.

Makes sense. Thanks.
Forum: PHP 10-02-2011, 01:01 PM
Replies: 9
Views: 1,270
Posted By InterbredMonkey
Thanks, that worked. Bit of a crazy...

Thanks, that worked.

Bit of a crazy resolution as I usually use the two in conjunction.
Forum: PHP 10-02-2011, 12:53 PM
Replies: 9
Views: 1,270
Posted By InterbredMonkey
Header location not working

Good day,

I have wrote a script that loads different page information depending on the url which is housed in index.php. I have also wrote in a section where if the requested location does not...
Forum: PHP 05-26-2011, 01:48 PM
Replies: 2
Views: 292
Posted By InterbredMonkey
I personally have read both these books and the...

I personally have read both these books and the first is quite basic but it gives you some good tutorials to work through. The O'Reilly book though is probably the best giving you a step by step...
Forum: General web building 05-26-2011, 10:00 AM
Replies: 1
Views: 644
Posted By InterbredMonkey
Coding on a Mac

I have not used a Mac in years and I am thinking of getting one but I want to know whats the best coding program? I really want something that will be great all round with PHP, HTML, CSS and...
Forum: PHP 05-23-2011, 08:56 AM
Replies: 2
Views: 240
Posted By InterbredMonkey
An easy and quick way would be to add another...

An easy and quick way would be to add another column to the colours table with the swatch image src in and then when loading the colours you could just display the image using the src from the...
Forum: PHP 05-19-2011, 01:04 PM
Replies: 1
Views: 247
Posted By InterbredMonkey
Is there more code? If not you havent even...

Is there more code? If not you havent even performed the SQL query on $sqlinsert_audit.
Forum: PHP 05-06-2011, 03:25 PM
Replies: 3
Views: 1,832
Posted By InterbredMonkey
If you go to http://www.google.com/recaptcha they...

If you go to http://www.google.com/recaptcha they have a very easy plugin which has step by step installation instructions.
Forum: PHP 05-05-2011, 11:21 AM
Replies: 5
Views: 709
Posted By InterbredMonkey
Your not testing for equallity. It...

Your not testing for equallity.



It should really be:

if($email !== $confirm_email){
Forum: PHP 05-04-2011, 09:55 PM
Replies: 5
Views: 896
Posted By InterbredMonkey
I think I understand. The array returned in the...

I think I understand. The array returned in the first script $locations is pretty much the same as this:

$ip = $answer->Ip;

$country_code = $answer->CountryCode;

$country_name =...
Forum: PHP 05-04-2011, 09:33 PM
Replies: 5
Views: 546
Posted By InterbredMonkey
Basically your not even calling the php script. ...

Basically your not even calling the php script.

I nearly missed that there for a second. Ha Ha.

You need to write in an ajax call to the PHP script something like:
...
Forum: PHP 05-04-2011, 02:31 PM
Replies: 5
Views: 896
Posted By InterbredMonkey
The $locations variable supplied is an array...

The $locations variable supplied is an array returned from the class. If you put into the normal code:

print_r($locations);

This should give you all the items stored in the array and the...
Forum: HTML & CSS 03-01-2011, 09:48 PM
Replies: 2
Views: 699
Posted By InterbredMonkey
I should of thought, its the one thing I have...

I should of thought, its the one thing I have used for the first time. Thanks.

Works in IE too. I will bear it in mind for future reference.
Forum: HTML & CSS 03-01-2011, 08:59 PM
Replies: 2
Views: 699
Posted By InterbredMonkey
Extra padding at the bottom of the page.

I am pulling my hair out trying to understand why firefox and IE both put extra padding at the bottom of the page. When you view the page in Google chrome it looks perfect but the other two do not...
Forum: Apache configuration 02-03-2011, 01:38 PM
Replies: 0
Views: 510
Posted By InterbredMonkey
Rewrite on sub domain.

I have a sub domain sub.domain.com and i wanted to rewrite anything that was looking to a certain path on the domain say sub.domain.com/foo/bar/file.php and I wanted to rewrite it as...
Forum: General web building 12-16-2010, 12:10 PM
Replies: 0
Views: 742
Posted By InterbredMonkey
Return MiME Type

Not sure which forum to put this in, so here goes.

I am hosting a image file on a sub domain(eg sub.domain.com) and then trying to load the image from another domain(eg domain2.org). The problem I...
Forum: Apache configuration 11-18-2010, 10:36 PM
Replies: 9
Views: 3,644
Posted By InterbredMonkey
Hahahahaha. Yeah that is pretty essential in the...

Hahahahaha. Yeah that is pretty essential in the htaccess file no matter who your provider is. I cannot believe I missed that. Sorry could of resolved it hours ago. Oh well it just goes to show you...
Forum: Apache configuration 11-18-2010, 09:37 PM
Replies: 9
Views: 3,644
Posted By InterbredMonkey
Ok, using the following code: RewriteRule...

Ok, using the following code:

RewriteRule ^([^/\.]+)/?$ test.php?wizard=$1

and the PHP code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
Forum: Apache configuration 11-18-2010, 06:55 PM
Replies: 9
Views: 3,644
Posted By InterbredMonkey
This is true. However like I explained before I...

This is true. However like I explained before I think the code will only get the variable hello world when it is followed by the / for example:
www.domain.com/wizard/helloWorld/

Sorry just...
Forum: Apache configuration 11-18-2010, 03:49 PM
Replies: 2
Views: 2,596
Posted By InterbredMonkey
I think it can be done using this: ...

I think it can be done using this:

RewriteRule ^http://www.domain2.com/([^/\.]+)\.jpg %{HTTP_HOST}/$1\.jpg [NC L]

I have not tested it nor do I know if it will work. If not you might need to...
Forum: Apache configuration 11-17-2010, 12:28 PM
Replies: 9
Views: 3,644
Posted By InterbredMonkey
Basically the reason you are getting a 404 is...

Basically the reason you are getting a 404 is that you are tying the url wrong.

The code is fine sort of. When you have wrote:
RewriteRule ^/([^/\.]+)/?$ /index.php?wizard=$1 [L]
...
Forum: Apache configuration 11-16-2010, 08:44 PM
Replies: 2
Views: 2,505
Posted By InterbredMonkey
Thanks for the reply. It did not work instantly...

Thanks for the reply. It did not work instantly but I have managed to work it.

Code:
RewriteRule ^([^index])([^/\.]+)\.php$ index.php?page=$1$2 [L]

This code works if anyone else requires it....
Showing results 1 to 25 of 64

 
Forum Jump

All times are GMT +1. The time now is 05:28 PM.