Book Editing :  Student Freelance Forum For Work Experience Builders' (CertificationPoint) The fastest message board... ever.
 

Pages: Previous12345...LastNext
Current Page: 2 of 15
Results 31 - 60 of 445
4 years ago
adcertpoint
The notes() method can be used to make various Apache modules talk to each other. In the following snippet the PHP module talks to the mod_perl code (PHP code): if (isset($user) && substr($user,0,1) == "+" { apache_note("user", substr($user,1)); virtual("/internal/getquota" $quota = apache_note("quota" $usage_pp = apache
Forum: Programming
4 years ago
adcertpoint
Unless you use some well known module like CGI::Cookie or Apache::Cookie, you need to handle cookies yourself. Cookies come in the $ENV{HTTP_COOKIE} variable. You can print the raw cookie string as $ENV{HTTP_COOKIE}. Here is a fairly well-known bit of code to take cookie values and put them into a hash: sub get_cookies { # cookies are separated by a semicolon and a space, this wil
Forum: Programming
4 years ago
adcertpoint
Sometimes you want to access variables from the caller's package. One way is to do something like this: { no strict 'vars' ; my $caller = caller; print qq[$caller --- ${"${caller}::var"}]; }
Forum: Programming
4 years ago
adcertpoint
I wrote this script a long time ago, when I had to debug my CGI scripts but didn't have access to the error_log file. I asked the admin to install this script and have used it happily since then. If your scripts are running on these 'Get-free-site' servers, and you cannot debug your script because you can't telnet to the server or can't see the error_log, you can ask your sysadmin to install t
Forum: Programming
4 years ago
adcertpoint
Under mod_cgi it's not easy to redirect POST requests to some other location. With mod_perl you can easily redirect POST requests. All you have to do is read in the content, set the method to GET, populate args() with the content to be forwarded and finally do the redirect: use Apache::Constants qw(M_GET); my $r = shift; my $content = $r->content; $r->method("GET" $
Forum: Programming
4 years ago
adcertpoint
What happens if you need to access the POSTed data more than once, say to reuse it in subsequent handlers of the same request? POSTed data comes directly from the socket, and at the low level data can only be read from a socket once. So you have to store it to make it available for reuse. There is an experimental option for Makefile.PL called PERL_STASH_POST_DATA. If you turn it on, you can ge
Forum: Programming
4 years ago
adcertpoint
Many error conditions result in an exception (or signal -- same thing) which is raised in order to tell the operating system that a condition has arisen which needs more urgent attention than can be given by other means. One of the most familiar ways of raising a signal is to hit Ctrl-C on your terminal's keyboard. The signal interrupts the processor. In the case of Ctrl-C the INT signal is gener
Forum: Programming
4 years ago
adcertpoint
The Apache::Request module gives you an easy way to get form content, including uploaded files. In order to add file upload functionality to your form, you need to add two things. First, you'll need to add a form field which is type file. This will put a browse button on the form that will allow the user to choose a file to upload. Second, you'll neet to make sure to add, to the form tag th
Forum: Programming
4 years ago
adcertpoint
By Mikko Eerola on August 27, 2001 - Version: 4.01 Type: Full Script Category: HTTP License: GNU General Public License Description: If you put this script at the top of your pages, you can deny the configured IP from viewing your pages. It has an option to notify you by email if there is a request from the configured IP. ? Class definition of the improved
Forum: Programming
4 years ago
adcertpoint
By Brian Sanders on December 13, 2002 - Version: 0.1.0 Type: Class Category: Other License: GNU General Public License Description: This class is used to load an XML document into an associative array, using xpat. Each element is given a unique id within its element group, and each element contains the name and id of its parent, thereby retaining the hierarchy of the source
Forum: Programming
4 years ago
adcertpoint
By The Gamblers on March 28, 2002 - Version: 2.2 Type: Full Script Category: Other License: GNU General Public License Description: View online some statistics from your server. Only for Windows nt/2000/XP server running Apache or iss ? <? If ($lang=="du"{ $lbl_general_info="Algemene informatie"; $lbl_current_time="Huid
Forum: Programming
4 years ago
adcertpoint
By Jeff Espiritu on October 26, 2004 - Version: 1 Type: Function Category: Graphics License: GNU General Public License Description: Write a text to your image without altering the image itself. Normally if you have an exclusive pictures you normally place your domain name as a symbol that you own the picture, but if you have hundred or more pictures it will be time cons
Forum: Programming
4 years ago
adcertpoint
43. PHPrint
By Sijis Aviles on January 16, 2003 - Version: 1.45 Type: Full Script Category: HTML License: Other Description: Printer friendly pages from anywhere on a website. This dynamic “Print This Page” script works right out of the box – cut and paste. Has the option to leave images in the new print friendly page if required. Just link to this script, and it will give a printer
Forum: Programming
4 years ago
adcertpoint
By Gary Jones on March 21, 2004 - Version: 0.3 Type: Full Script Category: Other License: GNU General Public License Description: Yes theres alot, but this ones object oriented! ? class counter { var $file = 'hits.txt'; // Rename this path/to/file to your choosing - it will store the data. // Best to create file first, with 777 permiss
Forum: Programming
4 years ago
adcertpoint
By Nate Sanden on February 4, 2004 - Version: 1.11 Type: Class Category: Databases License: GNU General Public License Description: This is class creates 1,2,3… links and previous/next links which will page through any records from a mysql database table. It can easily be modified (one line) to use with any database however. ? Put this class in its own file
Forum: Programming
4 years ago
adcertpoint
By Niklas Forsberg on July 5, 2002 - Version: 1.1 Type: Full Script Category: Other License: GNU General Public License Description: This small snippet just makes it possible to display the online-status of a ICQ-user account. It is originally written to display the status in plain text, but with a small change you can use images instead! ? <? # # IC
Forum: Programming
4 years ago
adcertpoint
By Dave Silvia on January 15, 2006 - Version: 1.2 Type: Function Category: Networking License: Other Description: Often the mail functions of php cannot be used because they need access to sendmail or an equivalent binary and/or specific settings in php.ini on a given server and that access and/or configuration is not present. This code provides for sending mail in most all
Forum: Programming
4 years ago
adcertpoint
By tufat marketing on July 5, 2006 - Version: 1.3.2 Type: Full Script Category: BBS/Discussion License: Other Description: This set of add-ons to <a target=_blank href=http://www.tufat.com/chat.php>FlashChat</a> include: an MP3 player, a web radio player, a banner ad rotator, a text ads/announcements module, an admin module, and an early release of the audio/vid
Forum: Programming
4 years ago
adcertpoint
By jonseddon on August 6, 2006 - Version: 1.0 Type: Sample Code (HOWTO) Category: Calendars/Dates License: GNU General Public License Description: A short piece of code to help move dates and times around. Store the date and time in one column in mysql and use this to help display it however you want. My first post and first explode() function. A very proud moment.
Forum: Programming
4 years ago
adcertpoint
By Panos A on December 17, 2002 - Version: 1.0 Type: Full Script Category: Databases License: GNU General Public License Description: A very simple Create and Delete tables snippet. Requires some knowledge of mySQL. Tested with PHP 4.0.6. ? A simple Create and delete tables snippet. Need PHP (I tried it on 4.0.6) mySQL and some basic knowledge of mySQL.
Forum: Programming
4 years ago
adcertpoint
By Leo on August 21, 2003 - Version: 1.0 Type: Function Category: Other License: GNU General Public License Description: Export your data to a csv and read with Excel ? <?php /* * Export your array to csv * Created by Leo Watanabe <leow_74 at yahoo dot com> - August 2003 */ // Caution: $data MUST be an array of array function convertT
Forum: Programming
4 years ago
adcertpoint
By Josh Malan on January 7, 2004 - Version: 1.0 Type: Full Script Category: Other License: GNU General Public License Description: This page will validate the structure of a string to your specifications. This script will verify a password to make sure it contains a lower and upper case alpha character, a numeric character, a symbol in the valid_symbol array, and not a symb
Forum: Programming
4 years ago
adcertpoint
By Mike Jewell on July 9, 2001 - Version: 1.02 Type: Full Script Category: HTML License: Other Description: PSH highlights and indents source code using highlight configuration files (which are similar to Ultraedit highlighting files). As such, it currently supports C, C#, Java, Perl, PHP, Pascal, Lisp, Mumps, Eiffel, Euphoria, and x86 Assembler, amongst others. PSH handles
Forum: Programming
4 years ago
adcertpoint
When it comes to new innovations, 2020 promises to be an exciting year marked by the emergence of some of the most transformative and perhaps even revolutionary technologies of this decade. For the nerds among us who grew up dreaming about Buck Rogers, watching Star Trek, and reading Isaac Asimov novels by flashlight till the wee hours of the morning, 2020 could be Christmas morning — where dream
Forum: Certifications
4 years ago
adcertpoint
The value of certifications and micro-credentials to both companies and individuals is increasing as the pace of technology quickens. Certifications help employers identify prospective new hires, evaluate job performance and invest in staff by directing professional development opportunities. For an individual, certifications provide assurance that they have the competency to be successful wit
Forum: Certifications
4 years ago
adcertpoint
cloud computing business services Getty Images / motionxcom It seems like everything is moving to the cloud these days – servers, storage, applications, devops, internet of things (IoT) data, advanced analytics -- you name it, it’s happening in the cloud, either in a public, private or hybrid cloud environment. Maybe it’s time for your career to make the jump to th
Forum: Certifications
4 years ago
adcertpoint
Technology certifications can help you achieve career goals. They show employers you’re committed to learning, you take professional development seriously, and you have special skills and knowledge. At least, that’s the traditional thinking. But when asked about the return on investment (ROI) of IT-related certifications, respondents to IDG’s 2020 IT Salary Survey were positive — but not overw
Forum: Certifications
4 years ago
adcertpoint
enetration testing is a lot like hacking. Both involve scanning devices, software and wireless networks for tiny security vulnerabilities. The only difference is the underlying intentions: penetration testers work for tech companies, reporting any cybersecurity issues so they can get patched. Hackers intend to hack, and penetration testers intend to help. The line between the two is porous, t
Forum: Certifications
4 years ago
adcertpoint
https://www.leaderquestonline.com/blog/test-taking-strategies-and-study-strategies-for-certification-exams/
Forum: Certifications
4 years ago
adcertpoint
1. A single study cram session will not suffice “This certification is not one in which you can study one afternoon and take the test the next morning.” Google Cloud Platform (GCP) expert David Ross is specifically referencing a GCP certification here, but it applies to all certifications. Few individuals can show up on exam day and pass with little or no prep. GCP exams, for example, ar
Forum: Certifications
Pages: Previous12345...LastNext
Current Page: 2 of 15

This forum powered by Phorum.