Sponsored Content
Full Discussion: Apache
Top Forums UNIX for Dummies Questions & Answers Apache Post 4789 by Neo on Tuesday 31st of July 2001 02:16:07 PM
Old 07-31-2001
My thoughts:


Someone earlier suggested using dynamic content generation. This would be the way to go, i.e. using PHP or JSP or GGI in a more DHTML environment.

If I was going to 'dive into this problem' I would also look at the HTML return codes and see if not having an IMG returns a
status code. There are many of these status codes. However,
I don't have much faith in this approach.

The action based on the status (return) codes could have file-level
granularity, but this would require a great deal of work for a large server and I would not advise it.

The dynamic HTML method using JSP, PHP, etc. would be my
first choice.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Apache!

How do you tell which apache version is currently running. the situation is that I got multiply httpd.conf files on a solaris 2.6 server and I need to tell which version is what? I have checked the httpd.conf but no joy Thanks in Advance (3 Replies)
Discussion started by: hassan2
3 Replies

2. IP Networking

Apache

I want to have multiple domains to be configured in apache web server on redhat linux Please help me Vijay (2 Replies)
Discussion started by: Vijayanand
2 Replies

3. IP Networking

Apache

I want to have multiple domains to be configured in apache web server on redhat linux can i have that without DNS server configured. What all i have to do for that.What all to configure ? And importantly i want the site be accessed by name rather IP address. Please help me ... (1 Reply)
Discussion started by: Vijayanand
1 Replies

4. IP Networking

Apache

I want to have multiple domains to be configured in apache web server on redhat linux can i have that without DNS server being configured. What all i have to do for that.What all to configure ? please note that i need to access the site by its name not by IP . I want this in a LAN . I dont... (4 Replies)
Discussion started by: Vijayanand
4 Replies

5. UNIX for Dummies Questions & Answers

apache

on my webserver, and im sure many of you who also run one see this all the time, but the majority of my access log is filled with attempted exploits from computers compromised by some virus (NIMBDA?) and anyway i know this is harmless to an apache/linux webserver, but its annoying, anyway, on... (5 Replies)
Discussion started by: norsk hedensk
5 Replies

6. UNIX for Advanced & Expert Users

Apache

I am tring to configure Apache so that it displays the ip address of users browsing the web in the header. mod_header is installed on my apache as default. I tried including the following in httpd.conf file but no joy Header set remoteip %{REMOTE_ADDR} I have also tried Header add... (3 Replies)
Discussion started by: hassan2
3 Replies

7. UNIX for Dummies Questions & Answers

Apache help

Hi, I am new to unix and am trying to determine if apache is installed on my server. Is there a command to determine the running version or if it is even installed. I appreciate your help. Thanks, Eric (2 Replies)
Discussion started by: ejbrever
2 Replies

8. Web Development

Apache module development on apache 2.2

Hi, I'm new to developing modules for Apache. I understand the basics now and can develop something simple which allows a 'GET' request to happen, but what I want to do is actually 'POST' information to my site. I know the basic POST Request works and I can see that it is post by looking at... (2 Replies)
Discussion started by: fishman2001
2 Replies

9. Red Hat

Process not running: /opt/java15/jdk/bin/java -classpath /opt/apache/apache-ant-1.7.0-mod/lib/ant-la

Have no idea on what the below error message is: Process not running: /opt/java15/jdk/bin/java -classpath /opt/apache/apache-ant-1.7.0-mod/lib/ant-launcher.jar org.apache.tools.ant.launch.Launcher -buildfile build.xml dist. Any help? (3 Replies)
Discussion started by: gull05
3 Replies
PHPCREDITS(3)								 1							     PHPCREDITS(3)

phpcredits - Prints out the credits for PHP

SYNOPSIS
bool phpcredits ([int $flag = CREDITS_ALL]) DESCRIPTION
This function prints out the credits listing the PHP developers, modules, etc. It generates the appropriate HTML codes to insert the information in a page. PARAMETERS
o $flag - To generate a custom credits page, you may want to use the $flag parameter. Pre-defined phpcredits(3) flags +-----------------+---------------------------------------------------+ | name | | | | | | | description | | | | +-----------------+---------------------------------------------------+ | CREDITS_ALL | | | | | | | All the credits, equivalent to using: CRED- | | | ITS_DOCS + CREDITS_GENERAL + CREDITS_GROUP + | | | CREDITS_MODULES + CREDITS_FULLPAGE. It generates | | | a complete stand-alone HTML page with the appro- | | | priate tags. | | | | | CREDITS_DOCS | | | | | | | The credits for the documentation team | | | | |CREDITS_FULLPAGE | | | | | | | Usually used in combination with the other | | | flags. Indicates that a complete stand-alone HTML | | | page needs to be printed including the informa- | | | tion indicated by the other flags. | | | | |CREDITS_GENERAL | | | | | | | General credits: Language design and concept, | | | PHP authors and SAPI module. | | | | | CREDITS_GROUP | | | | | | | A list of the core developers | | | | |CREDITS_MODULES | | | | | | | A list of the extension modules for PHP, and | | | their authors | | | | | CREDITS_SAPI | | | | | | | A list of the server API modules for PHP, and | | | their authors | | | | +-----------------+---------------------------------------------------+ RETURN VALUES
Returns TRUE on success or FALSE on failure. EXAMPLES
Example #1 Prints the general credits <?php phpcredits(CREDITS_GENERAL); ?> Example #2 Prints the core developers and the documentation group <?php phpcredits(CREDITS_GROUP | CREDITS_DOCS | CREDITS_FULLPAGE); ?> Example #3 Printing all the credits <html> <head> <title>My credits page</title> </head> <body> <?php // some code of your own phpcredits(CREDITS_ALL - CREDITS_FULLPAGE); // some more code ?> </body> </html> NOTES
Note phpcredits(3) outputs plain text instead of HTML when using the CLI mode. SEE ALSO
phpversion(3), php_logo_guid(3), phpinfo(3). PHP Documentation Group PHPCREDITS(3)
All times are GMT -4. The time now is 02:27 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy