You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Robert <fl...@comcast.net> on 2013/12/07 01:44:48 UTC

[users@httpd] Error 404 Not Found

Apache 2.2 installed and running on my own Windows Vista 64bit SP2 computer.  

File events_startup.html initiates my website home page and it contains the following code:

 <div class="di-anytime">
  <a href="cycle-login" target="_top" target='window1'title="Click to login for cycling stats...">
   <img class="ic-anytime" src="/images/anytime.jpg" alt=""/>/a>
 </div class="di-anytime">

File cycle-login is cycle-login.php and if working properly displays a login form.  Mysql is read and
username-password is validated.  If successful user is presented with a second form for data input.

Both these files reside in c:\apache2\htdocs.

Contained in c:\apache2\conf\httpd.conf are following pertinent entries:

ServerRoot "c:\apache2"
DocumentRoot "c:\apache2\htdocs"

The Issue:
events_startup.html executes correctly and displays the website home page either by 
entering my domain name into a browser or entering localhost/events_startup.html or
by entering my IP address followed by events_startup.html.

When I mouse click into the anytime.jpg image I receive the messages
"The requested URL /cycle-login was not found on this server."
"Error 404 Not Found".

Thank you for your help.
Robert





[users@httpd] Re: Error 404 Not Found

Posted by Good Guy <xf...@hotmail.com>.
On 09/12/2013 01:22, Good Guy wrote:
> On 08/12/2013 02:59, Robert wrote:
>> Hi Good Guy,
>>
>> When I loaded test.php into the browser with localhost/test.php it 
>> only echoed the contents of test.php back.  If I do the same thing 
>> with any .php file I have in htdocs the result is the same - echoes 
>> back the content of the file.  If I type localhost/test I get the 404 
>> error message... "The requested URL /test was not found on this server."
>>
>> Robert
>>
>>
>
> OK this suggests that you have not installed php on your machine; ALSO 
> after installing the php files, you need to configure the apache so 
> that it knows where the php engine is.
>
> 1) First I suggest download the php files from this link:
>
>
>
>  2) Unzip the files tp a specific folder such as c:\php
>
> 3) Post back when you have done this so that I can post some 
> rudimentary instructions how to configure apache server so that it can 
> process php files.
>
>
>
>

You need this link for the windows system:

<http://windows.php.net/downloads/releases/php-5.4.22-Win32-VC9-x86.zip>


-- 
Good Guy
Website: http://mytaxsite.co.uk
Website: http://html-css.co.uk
Email: http://mytaxsite.co.uk/contact-us



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] Re: Error 404 Not Found

Posted by Good Guy <xf...@hotmail.com>.
After making the changes, you will need to restart the apache server so 
that the new configuration settings takes effect.  Either re-boot the 
machine or simply restart the service using the apache button in the 
taskbar.


On 10/12/2013 02:55, Robert wrote:
> Good Guy,
>
> Files have been unzipped to directory c:\php-120913.
>
> Robert
>
>


-- 
Good Guy
Website: http://mytaxsite.co.uk
Website: http://html-css.co.uk
Email: http://mytaxsite.co.uk/contact-us



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] Re: Error 404 Not Found

Posted by Good Guy <xf...@hotmail.com>.
On 11/12/2013 01:03, Robert wrote:
> Good Guy,
>
> Problem resolved.  Thanks so much for your patience and help.
>
> Robert
>

I am glad this has been resolved successfully.  Thanks for the update.



-- 
Good Guy
Website: http://mytaxsite.co.uk
Website: http://html-css.co.uk
Email: http://mytaxsite.co.uk/contact-us



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Re: Error 404 Not Found

Posted by Robert <fl...@comcast.net>.
Good Guy,

Problem resolved.  Thanks so much for your patience and help.

Robert

----- Original Message ----- 
From: "Good Guy" <xf...@hotmail.com>
To: <us...@httpd.apache.org>
Sent: Monday, December 09, 2013 11:27 PM
Subject: [users@httpd] Re: Error 404 Not Found


> OK do the following adjustments:
>
> 1)    Browse the php folder and look for the file called:
> "php.ini-production" and change its name to:
>
> php.ini
>
> 2)    Open this php.ini file in a text editor and change the following:
>
> short_open_tag = Off
> To
> short_open_tag = On
>
> 3)    Change
> ;session.save_path = "/tmp"
> To
> session.save_path = "/tmp"
>
> Also make sure you have a c:\tmp folder for temporary session files.  Make 
> sure the folder name is exactly as I have shown above.  Windows uses a 
> different folder names but do exactly as I have stated above.
> 4) Save the file and close it.
>
> Configure Apache Server: This  Section requires changing the apache 
> configuration settings:
> 1)    Stop the apache server so that you can change the config file; the 
> config file is called httpd.conf and it is in a folder:
> /apache/conf
> 2) Open it and make these changes:
> Search for section of the file that has a series of "LoadModule" 
> statements. Statements prefixed by the hash "#" sign are regarded as 
> having been commented out. Add the following at the end of the section:
> LoadModule php5_module "c:/php-120913/php5apache2_2.dll"
> Make sure the folder name id#s for the  php folder where you have 
> extracted the files.  Also, the folder names in apache is as shown above 
> not as in windows.  For example folder in apache should be c:/php-120913 
> NOT c:\php-120913.  You get the idea.
>
> 3) Next, search for "AddType" in the file, and add the following line 
> after the last "AddType" statement. For Apache 2.2.x, you can find the 
> "AddType" lines in the <IfModule mime_module> section. Add the line just 
> before the closing </IfModule> for that section.
>
> AddType application/x-httpd-php .php
> AddType application/x-httpd-php .phtml
>
> 4) Finally, you will need to indicate the location of your PHP ini file. 
> Add the following line to the end of your httpd.conf file.
> PHPIniDir "c:/php-120913"
> Again the folder should be your folder for php files you have extracted 
> to.
>
> This should enable you to process php files.  Always test the 
> configuration by loading the phpinfo file I gacvve you earlier in the 
> thread.  I hope you still have it otherwise go back to the bgeginning of 
> the thread and recreate the file and load it to test it.  It should give 
> you the information about your php settings.
>
> Good luck and post back so that something else can be suggested such as 
> "Running PHP 5 as a CGI Binary"
>
>
>
> On 10/12/2013 02:55, Robert wrote:
>> Good Guy,
>>
>> Files have been unzipped to directory c:\php-120913.
>>
>> Robert
>>
>
> -- 
> Good Guy
> Website: http://mytaxsite.co.uk
> Website: http://html-css.co.uk
> Email: http://mytaxsite.co.uk/contact-us
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] Re: Error 404 Not Found

Posted by Good Guy <xf...@hotmail.com>.
OK do the following adjustments:

1)    Browse the php folder and look for the file called:
"php.ini-production" and change its name to:

php.ini

2)    Open this php.ini file in a text editor and change the following:

short_open_tag = Off
To
short_open_tag = On

3)    Change
;session.save_path = "/tmp"
To
session.save_path = "/tmp"

Also make sure you have a c:\tmp folder for temporary session files.  
Make sure the folder name is exactly as I have shown above.  Windows 
uses a different folder names but do exactly as I have stated above.
4) Save the file and close it.

Configure Apache Server: This  Section requires changing the apache 
configuration settings:
1)    Stop the apache server so that you can change the config file; the 
config file is called httpd.conf and it is in a folder:
/apache/conf
2) Open it and make these changes:
Search for section of the file that has a series of "LoadModule" 
statements. Statements prefixed by the hash "#" sign are regarded as 
having been commented out. Add the following at the end of the section:
LoadModule php5_module "c:/php-120913/php5apache2_2.dll"
Make sure the folder name id#s for the  php folder where you have 
extracted the files.  Also, the folder names in apache is as shown above 
not as in windows.  For example folder in apache should be c:/php-120913 
NOT c:\php-120913.  You get the idea.

3) Next, search for "AddType" in the file, and add the following line 
after the last "AddType" statement. For Apache 2.2.x, you can find the 
"AddType" lines in the <IfModule mime_module> section. Add the line just 
before the closing </IfModule> for that section.

AddType application/x-httpd-php .php
AddType application/x-httpd-php .phtml

4) Finally, you will need to indicate the location of your PHP ini file. 
Add the following line to the end of your httpd.conf file.
PHPIniDir "c:/php-120913"
Again the folder should be your folder for php files you have extracted to.

This should enable you to process php files.  Always test the 
configuration by loading the phpinfo file I gacvve you earlier in the 
thread.  I hope you still have it otherwise go back to the bgeginning of 
the thread and recreate the file and load it to test it.  It should give 
you the information about your php settings.

Good luck and post back so that something else can be suggested such as 
"Running PHP 5 as a CGI Binary"



On 10/12/2013 02:55, Robert wrote:
> Good Guy,
>
> Files have been unzipped to directory c:\php-120913.
>
> Robert
>

-- 
Good Guy
Website: http://mytaxsite.co.uk
Website: http://html-css.co.uk
Email: http://mytaxsite.co.uk/contact-us



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Re: Error 404 Not Found

Posted by Robert <fl...@comcast.net>.
Good Guy,

Files have been unzipped to directory c:\php-120913.

Robert

----- Original Message ----- 
From: "Good Guy" <xf...@hotmail.com>
To: <us...@httpd.apache.org>
Sent: Sunday, December 08, 2013 8:22 PM
Subject: [users@httpd] Re: Error 404 Not Found


> On 08/12/2013 02:59, Robert wrote:
>> Hi Good Guy,
>>
>> When I loaded test.php into the browser with localhost/test.php it 
>> only echoed the contents of test.php back.  If I do the same thing 
>> with any .php file I have in htdocs the result is the same - echoes 
>> back the content of the file.  If I type localhost/test I get the 404 
>> error message... "The requested URL /test was not found on this server."
>>
>> Robert
>>
>>
> 
> OK this suggests that you have not installed php on your machine; ALSO 
> after installing the php files, you need to configure the apache so that 
> it knows where the php engine is.
> 
> 1) First I suggest download the php files from this link:
> 
> <http://www.php.net/get/php-5.4.22.tar.gz/from/a/mirror>
> 
>  2) Unzip the files tp a specific folder such as c:\php
> 
> 3) Post back when you have done this so that I can post some rudimentary 
> instructions how to configure apache server so that it can process php 
> files.
> 
> 
> 
> 
> -- 
> Good Guy
> Website: http://mytaxsite.co.uk
> Website: http://html-css.co.uk
> Email: http://mytaxsite.co.uk/contact-us
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] Re: Error 404 Not Found

Posted by Good Guy <xf...@hotmail.com>.
On 08/12/2013 02:59, Robert wrote:
> Hi Good Guy,
>
> When I loaded test.php into the browser with localhost/test.php it 
> only echoed the contents of test.php back.  If I do the same thing 
> with any .php file I have in htdocs the result is the same - echoes 
> back the content of the file.  If I type localhost/test I get the 404 
> error message... "The requested URL /test was not found on this server."
>
> Robert
>
>

OK this suggests that you have not installed php on your machine; ALSO 
after installing the php files, you need to configure the apache so that 
it knows where the php engine is.

1) First I suggest download the php files from this link:

<http://www.php.net/get/php-5.4.22.tar.gz/from/a/mirror>

  2) Unzip the files tp a specific folder such as c:\php

3) Post back when you have done this so that I can post some rudimentary 
instructions how to configure apache server so that it can process php 
files.




-- 
Good Guy
Website: http://mytaxsite.co.uk
Website: http://html-css.co.uk
Email: http://mytaxsite.co.uk/contact-us



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Seg fault when assigning value in AP_INIT_TAKE1 callback

Posted by Allasso Travesser <al...@gmail.com>.
Thank you for your input, Nick.  I see what you mean about using a full example; not yet understanding how modules work, it didn’t occur to me that cfg would be getting initialized somewhere else.  My c programming skills are also rudimentary.

Regarding mod_auth_form, I am using Apache 2.2.  I tried just loading a 2.4 module, but I get errors.  If I knew more about Apache and how modules work, I could probably understand why I am getting the errors.  Hence, the road I am on, as I find it helpful to learn this stuff anyway.  (I am on Ubuntu 10.04, and there is no official package for Apache 2.4 yet available, and being a nominal linux user I would rather stick with the mainstream)

Thanks for the help :-)

Allasso


On Dec 8, 2013, at 12:38 AM, Nick Kew <ni...@webthing.com> wrote:

> 
> On 8 Dec 2013, at 04:17, Allasso Travesser wrote:
> 
>> Hello,
>> 
>> Learning to create modules, I want to read configuration directives. I used the following example out of “The Apache Modules Book” (Nick Kew).  It compiles fine, however, when I restart apache, I get segmentation fault:
> 
> So why not start with a complete example, then reduce it step-by-step
> to what you have?  That way you see where it falls apart and figure out
> why what you just lost mattered.
> 
> In this case ...
> 
>> The fault seems to be a result of this line of code (no error results if it is removed):
>> 
>>  ((txt_cfg*)cfg)->header = val ;
> 
> … cfg needs to have been initialised, but ...
> 
>> module AP_MODULE_DECLARE_DATA customauthform_module =
>> {
>>    STANDARD20_MODULE_STUFF,
>>    NULL,
>>    NULL,
>>    NULL,
>>    NULL,
>>    mod_cmds,
>>    register_hooks,
>> };
> 
> … your initialisation function is NULL.
> 
> (judging by the name of your module, maybe the now-standard
> mod_auth_form would be a good startingpoint for you?)
> 
> -- 
> Nick Kew
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Seg fault when assigning value in AP_INIT_TAKE1 callback

Posted by Nick Kew <ni...@webthing.com>.
On 8 Dec 2013, at 04:17, Allasso Travesser wrote:

> Hello,
> 
> Learning to create modules, I want to read configuration directives. I used the following example out of “The Apache Modules Book” (Nick Kew).  It compiles fine, however, when I restart apache, I get segmentation fault:

So why not start with a complete example, then reduce it step-by-step
to what you have?  That way you see where it falls apart and figure out
why what you just lost mattered.

In this case ...

> The fault seems to be a result of this line of code (no error results if it is removed):
> 
>   ((txt_cfg*)cfg)->header = val ;

… cfg needs to have been initialised, but ...

> module AP_MODULE_DECLARE_DATA customauthform_module =
> {
>     STANDARD20_MODULE_STUFF,
>     NULL,
>     NULL,
>     NULL,
>     NULL,
>     mod_cmds,
>     register_hooks,
> };

… your initialisation function is NULL.

(judging by the name of your module, maybe the now-standard
mod_auth_form would be a good startingpoint for you?)

-- 
Nick Kew
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] Seg fault when assigning value in AP_INIT_TAKE1 callback

Posted by Allasso Travesser <al...@gmail.com>.
Hello,

Learning to create modules, I want to read configuration directives. I used the following example out of “The Apache Modules Book” (Nick Kew).  It compiles fine, however, when I restart apache, I get segmentation fault:

sudo service apache2 restart
Segmentation fault (core dumped)
Action 'configtest' failed.
The Apache error log may have more information.
   …fail!

log shows this:

[Sun Dec 08 03:58:04 2013] [notice] child pid 30080 exit signal Segmentation fault (11), possible coredump in /etc/apache2

The fault seems to be a result of this line of code (no error results if it is removed):

  ((txt_cfg*)cfg)->header = val ;

Here is my code (reduced to minimal test case):


#include "httpd.h"
#include "http_config.h"
#include "http_protocol.h"

typedef struct txt_cfg {
  const char* header ;
  const char* footer ;
} txt_cfg;

static const char* get_form_path(cmd_parms* cmd, void* cfg,
  const char* val) {
  ((txt_cfg*)cfg)->header = val ;
  return NULL ;
}

static const command_rec mod_cmds[] = {
  AP_INIT_TAKE1("CustomAuthFormPath", get_form_path, NULL, OR_ALL,
        "Path to custom authorization form"),
  { NULL }
};

static void register_hooks(apr_pool_t *pool)
{
}

module AP_MODULE_DECLARE_DATA customauthform_module =
{
    STANDARD20_MODULE_STUFF,
    NULL,
    NULL,
    NULL,
    NULL,
    mod_cmds,
    register_hooks,
};

If anyone knows the reason for this I would surely appreciate understanding.

Thank you kindly,

Allasso


Re: [users@httpd] Re: Error 404 Not Found

Posted by Robert <fl...@comcast.net>.
Hi Good Guy,

When I loaded test.php into the browser with localhost/test.php it only 
echoed the contents of test.php back.  If I do the same thing with any .php 
file I have in htdocs the result is the same - echoes back the content of 
the file.  If I type localhost/test I get the 404 error message... "The 
requested URL /test was not found on this server."

Robert

----- Original Message ----- 
From: "Good Guy" <xf...@hotmail.com>
To: <us...@httpd.apache.org>
Sent: Saturday, December 07, 2013 8:59 PM
Subject: [users@httpd] Re: Error 404 Not Found


> On 07/12/2013 23:26, Robert wrote:
>> Did not resolve the issue.  Thanks for trying...
>> Robert
>>
>>
>
> Does your server recognize any of the .php files?  To test it, create a 
> blank file and paste this code in it:
>
> <?php phpinfo(); ?>
>
> Now save this file in your htdocs folder as "test.php" (without the quotes 
> of course).
>
> Now try to load the file in your browser by typing:
>
> localhost/test.php
>
> If it loads then your server is setup to load php files;  If it doesn't 
> load then you know it is not set up correctly.  By loading the file, you 
> should get various php configuration details but you don't need to worry 
> about it for now except that it should load correctly.
>
>
> -- 
> Good Guy
> Website: http://mytaxsite.co.uk
> Website: http://html-css.co.uk
> Email: http://mytaxsite.co.uk/contact-us
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] Re: Error 404 Not Found

Posted by Good Guy <xf...@hotmail.com>.
On 07/12/2013 23:26, Robert wrote:
> Did not resolve the issue.  Thanks for trying...
> Robert
>
>

Does your server recognize any of the .php files?  To test it, create a 
blank file and paste this code in it:

<?php phpinfo(); ?>

Now save this file in your htdocs folder as "test.php" (without the 
quotes of course).

Now try to load the file in your browser by typing:

localhost/test.php

If it loads then your server is setup to load php files;  If it doesn't 
load then you know it is not set up correctly.  By loading the file, you 
should get various php configuration details but you don't need to worry 
about it for now except that it should load correctly.


-- 
Good Guy
Website: http://mytaxsite.co.uk
Website: http://html-css.co.uk
Email: http://mytaxsite.co.uk/contact-us



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Re: Error 404 Not Found

Posted by Robert <fl...@comcast.net>.
Did not resolve the issue.  Thanks for trying...
Robert

----- Original Message ----- 
From: "Good Guy" <xf...@hotmail.com>
To: <us...@httpd.apache.org>
Sent: Saturday, December 07, 2013 3:42 PM
Subject: [users@httpd] Re: Error 404 Not Found


> On 07/12/2013 00:44, Robert wrote:
>> Apache 2.2 installed and running on my own Windows Vista 64bit SP2
>> computer.
>> File events_startup.html initiates my website home page and it contains
>> the following code:
>>   <div class="di-anytime">
>>    <a href="cycle-login" target="_top" target='window1'title="Click to
>> login for cycling stats...">
>>     <img class="ic-anytime" src="/images/anytime.jpg" alt=""/>/a>
>>   </div class="di-anytime">
>> File cycle-login is cycle-login.php and if working properly displays a
>> login form.  Mysql is read and
>> username-password is validated.  If successful user is presented with a
>> second form for data input.
>> Both these files reside in c:\apache2\htdocs.
>> Contained in c:\apache2\conf\httpd.conf are following pertinent entries:
>> ServerRoot "c:\apache2"
>> DocumentRoot "c:\apache2\htdocs"
>> *The Issue:*
>> events_startup.html executes correctly and displays the website home
>> page either by
>> entering my domain name into a browser or entering
>> localhost/events_startup.html or
>> by entering my IP address followed by events_startup.html.
>> When I mouse click into the anytime.jpg image I receive the messages
>> "The requested URL /cycle-login was not found on this server."
>> "Error 404 Not Found".
>> Thank you for your help.
>> Robert
> 
> 
> It could be that you need to change: "cycle-login" to "cycle-login.php" 
> in your html code and also make sure that cycle-login.php file resides 
> in the root of the server.
> 
> <a href="cycle-login.php" target="_top" target='window1'title="Click to
>  login for cycling stats...">
>      <img class="ic-anytime" src="/images/anytime.jpg" alt=""/>/a>
>    </div class="di-anytime">
> 
> 
> Good luck.
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


[users@httpd] Re: Error 404 Not Found

Posted by Good Guy <xf...@hotmail.com>.
On 07/12/2013 00:44, Robert wrote:
> Apache 2.2 installed and running on my own Windows Vista 64bit SP2
> computer.
> File events_startup.html initiates my website home page and it contains
> the following code:
>   <div class="di-anytime">
>    <a href="cycle-login" target="_top" target='window1'title="Click to
> login for cycling stats...">
>     <img class="ic-anytime" src="/images/anytime.jpg" alt=""/>/a>
>   </div class="di-anytime">
> File cycle-login is cycle-login.php and if working properly displays a
> login form.  Mysql is read and
> username-password is validated.  If successful user is presented with a
> second form for data input.
> Both these files reside in c:\apache2\htdocs.
> Contained in c:\apache2\conf\httpd.conf are following pertinent entries:
> ServerRoot "c:\apache2"
> DocumentRoot "c:\apache2\htdocs"
> *The Issue:*
> events_startup.html executes correctly and displays the website home
> page either by
> entering my domain name into a browser or entering
> localhost/events_startup.html or
> by entering my IP address followed by events_startup.html.
> When I mouse click into the anytime.jpg image I receive the messages
> "The requested URL /cycle-login was not found on this server."
> "Error 404 Not Found".
> Thank you for your help.
> Robert


It could be that you need to change: "cycle-login" to "cycle-login.php" 
in your html code and also make sure that cycle-login.php file resides 
in the root of the server.

<a href="cycle-login.php" target="_top" target='window1'title="Click to
  login for cycling stats...">
      <img class="ic-anytime" src="/images/anytime.jpg" alt=""/>/a>
    </div class="di-anytime">


Good luck.



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org