Some have asked for a link or a banner to display on their website. Well here are a few for you to choose from.
The Above Code Shows:
/** * AutomaticBackLinks.com - PHP linking code * Copy and paste this code in your php document where you want your links to display * Make sure that this code is inside PHP tags in a php file */ error_reporting(1); //Settings $abCacheFolderName = "automaticbacklinks_cache"; $abAccountCode = "b31f7d64f51ae9ab98938838bb577feb"; $abCacheHours = "24"; /** * Do not change anything below * Do not change anything below * Do not change anything below * Do not change anything below * Do not change anything below */ $v = "2.3"; $s = "php"; $abMsg = array(); if (trim($_GET['ab_debug']) == 'b31f7d64f51ae9ab98938838bb577feb') { $debug = true; echo "Version: ".$v; echo "System: ".$s; unset($_GET['ab_debug']); } //Create cache folder if it does not exist $cacheFolder = abGetCacheFolder($abCacheFolderName, $debug); if ($cacheFolder) { //Current URL $page = abGetPageUrl($debug); if (abIsValidUrl($page, $debug)) { $cacheFileName = $cacheFolder."/".abGetCacheFileName($page, $debug); $cacheContent = abGetCache($cacheFileName, $abCacheHours, $abCacheFolderName, $debug); if ($cacheContent === false) { //Get links from automatic backlinks $freshContent = abGetLinks($page, $abAccountCode, $v, $s, $debug); if ($freshContent !== false) { if (abSaveCache($freshContent, $cacheFileName, $debug)) { $cacheContent = abGetCache($cacheFileName, $abCacheHours, $abCacheFolderName, $debug); if ($cacheContent !== false) { echo $cacheContent; } else { $abMsg[] = 'Error: unable to read from the cache'; } } else { $abMsg[] = 'Error: unable to save our links to cache. Please make sure that the folder '.$abCacheFolderName.' located in the folder '.$_SERVER['DOCUMENT_ROOT'].' and has CHMOD 0777'; } } else { $abMsg[] = 'Error: unable to get links from server. Please make sure that your site supports either file_get_contents() or the cURL library.'; } } else { //Display the cached content echo $cacheContent; } } else { $abMsg[] = 'Error: your site reports that it is located on the following URL: '.$page.' - This is not a valid URL and we can not display links on this page. This is probably due to an incorrect setting of the $_SERVER variable.'; } } else { $abMsg[] = 'Error: Unable to create or read from your link cache folder. Please try to create a folder by the name "'.$abCacheFolderName.'" directly in the root of your site and CHMOD the folder to 0777'; } foreach ($abMsg as $error) { echo $error.""; } /** * Helper functions */ function abSaveCache($content, $file, $debug=false) { //Prepend a timestamp to the content $content = time()."|".$content; echo ($debug) ? "Saving Cache: ".$content : ""; $fh = fopen($file, 'w'); if ($fh !== false) { if (!fwrite($fh, $content)) { echo ($debug) ? "Error Saving Cache!" : ""; return false; } } else { echo ($debug) ? "Error opening cache file for writing!" : ""; return false; } if (!fclose($fh)) { echo ($debug) ? "Error closing file handle!" : ""; return false; } if (!file_exists($file)) { echo ($debug) ? "Error could not create cache file!" : ""; return false; } else { echo ($debug) ? "Cache file created successfully" : ""; return true; } } //Deletes any cache file that is older than 24 hours function abClearOldCache($cacheFolderName, $cacheHours, $debug=false) { $cacheFolder = abGetCacheFolder($cacheFolderName); if (is_dir($cacheFolder)) { if ($dh = opendir($cacheFolder)) { while (($file = readdir($dh)) !== false) { if (strpos($file, ".cache")) { $modified = filemtime($cacheFolder."/".$file); $timeCutOff = time()-(60*60*$cacheHours); if ($modified < $timeCutOff) { @unlink($cacheFolder."/".$file); } } } closedir($dh); } } } //Returns the full path to the cache folder and also creates it if it does not work function abGetCacheFolder($cacheFolderName, $debug=false) { $docRoot = rtrim($_SERVER['DOCUMENT_ROOT'],"/"); //Remove any trailing slashes $cacheFolder = $docRoot."/".$cacheFolderName; echo ($debug) ? "Cache folder is: ".$cacheFolder : ""; if (!file_exists($cacheFolder)) { echo ($debug) ? "Cache folder does not exist: ".$cacheFolder : ""; if (!@mkdir($cacheFolder,0777)) { echo ($debug) ? "Error - could not create cache folder: ".$cacheFolder : ""; return false; } else { echo ($debug) ? "Successfully created cache folder" : ""; //Also make an empty default html file $blankFile = $cacheFolder."/index.html"; if (!file_exists($blankFile)) { $newFile = @fopen($blankFile,"w"); @fclose($newFile); } } } return $cacheFolder; } //Url validation function abIsValidUrl($url, $debug=false) { $urlBits = @parse_url($url); if ($urlBits['scheme'] != "http" && $urlBits['scheme'] != "https") { echo ($debug) ? "Error! URL does not start with http: ".$url : ""; return false; } else if (strlen($urlBits['host']) < 4 || strpos($urlBits['host'], ".") === false) { echo ($debug) ? "Error! URL is incorrect: ".$url : ""; return false; } return true; } //Get the name of the cache file name function abGetCacheFileName($url, $debug=false) { $cacheFileName = md5($url).".cache"; echo ($debug) ? "Cache file name for URL: ".$url." is ".$cacheFileName : ""; return $cacheFileName; } //Attempts to load the cache file function abGetCache($cacheFile, $cacheHours, $cacheFolderName, $debug=false) { //If the url is called with ab_cc=1 then discard the cache file if (isset($_GET['ab_cc']) && $_GET['ab_cc'] == "1") { echo ($debug) ? "Clear cache invoked!" : ""; abRemoveCacheFile($cacheFile); unset($_GET['ab_cc']); return false; } if (!file_exists($cacheFile)) { echo ($debug) ? "Error! Cache file does not exist! ".$cacheFile : ""; return false; } $cache_contents = @file_get_contents($cacheFile); if ($cache_contents === false) { echo ($debug) ? "Error: Cache file is completely empty!" : ""; return false; } else { echo ($debug) ? "Cache file contents".$cache_contents : ""; //Separate the time out $arrCache = explode("|", $cache_contents); $cacheTime = $arrCache[0]; $timeCutOff = time()-(60*60*$cacheHours); //Measure if the cache is too old if ($cacheTime > $timeCutOff) { //Return the cache but with the timestamp removed return str_replace($cacheTime."|", "", $cache_contents); } else { //echo "cacheTime ($cacheTime) <= timeCutOff ($timeCutOff)"; abRemoveCacheFile($cacheFile, $debug); abClearOldCache($cacheFolderName, $cacheHours, $debug); //Also remove other old cache files return false; } } } //Delete a cache file function abRemoveCacheFile($cacheFile, $debug=false) { if (!@unlink($cacheFile)) { echo ($debug) ? "Error: Could not remove cache file: ".$cacheFile : ""; return false; } else { echo ($debug) ? "Successfully removed the cache file: ".$cacheFile : ""; return true; } } //Loads links from the automaticbacklinks web site function abGetLinks($page, $accountCode, $v, $s, $debug=false) { //Make the URL $url = "http://www.automaticbacklinks.com/links.php"; $url = $url."?a=".$accountCode; $url = $url."&v=".$v; $url = $url."&s=".$s; $url = $url."&page=".urlencode($page); echo ($debug) ? "Making call to AB: ".$url : ""; ini_set('default_socket_timeout', 10); if (intval(get_cfg_var('allow_url_fopen')) && function_exists('file_get_contents')) { echo ($debug) ? "Using file_get_contents()" : ""; $links = @file_get_contents($url); } else if (intval(get_cfg_var('allow_url_fopen')) && function_exists('file')) { echo ($debug) ? "Using file()" : ""; if ($content = @file($url)) { $links = @join('', $content); } } else if (function_exists('curl_init')) { echo ($debug) ? "Using cURL()" : ""; $ch = curl_init ($url); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $links = curl_exec($ch); curl_close ($ch); } else { echo ($debug) ? "Error: no method available to fetch links!" : ""; return false; } return $links; } //remove ab_cc etc. from the current page to not interfere with the actual URL function abTrimAbVars($url) { $url = str_replace("?ab_cc=1", "", $url); $url = str_replace("&ab_cc=1", "", $url); $url = str_replace("?ab_debug=b31f7d64f51ae9ab98938838bb577feb", "", $url); $url = str_replace("&ab_debug=b31f7d64f51ae9ab98938838bb577feb", "", $url); $url = str_replace("&phpinfo=1", "", $url); return $url; } //Get page function abGetPageUrl($debug=false) { $query = ""; $protocol = (isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) != "off") ? "https://" : "http://"; $host = $_SERVER['HTTP_HOST']; if ($_SERVER["REDIRECT_URL"]) { //Redirect if (isset($_SERVER['REDIRECT_SCRIPT_URI'])) { //Use URI - it is complete $page = $_SERVER['REDIRECT_SCRIPT_URI']; } else { //Use file and query $file = $_SERVER["REDIRECT_URL"]; if (isset($_SERVER['REDIRECT_QUERY_STRING'])) { $query = "?".$_SERVER['REDIRECT_QUERY_STRING']; } } } else { //No redirect if (isset($_SERVER['REQUEST_URI'])) { //Use URI if (substr($_SERVER['REQUEST_URI'],0,4) == "http") { //Request URI has host in it $page = $_SERVER['REQUEST_URI']; } else { //Request uri lacks host $page = $protocol.$host.$_SERVER['REQUEST_URI']; } } else if (isset($_SERVER['SCRIPT_URI'])) { //Use URI - it is complete $page = $_SERVER['SCRIPT_URI']; } else { $file = $_SERVER['SCRIPT_NAME']; if (isset($_SERVER['QUERY_STRING'])) { $query = "?".$_SERVER['QUERY_STRING']; } } } if (!$page) { $page = $protocol.$host.$file.$query; } $page = abTrimAbVars($page); echo ($debug) ? "This page is reported as: ".$page : ""; return $page; } //Show phpinfo if debug is on and phpinfo is requested if ($debug && $_GET['phpinfo']) { ?> phpinfo() PHP Version 5.2.11 System Linux bexar.nswebhost.com 2.6.18-164.11.1.el5 #1 SMP Wed Jan 20 07:32:21 EST 2010 x86_64 Build Date Feb 21 2010 03:37:08 Configure Command './configure' '--enable-bcmath' '--enable-calendar' '--enable-dbase' '--enable-exif' '--enable-fastcgi' '--enable-ftp' '--enable-gd-native-ttf' '--enable-libxml' '--enable-magic-quotes' '--enable-mbstring' '--enable-pdo=shared' '--enable-soap' '--enable-sockets' '--enable-wddx' '--enable-zip' '--prefix=/usr' '--with-bz2' '--with-curl=/opt/curlssl/' '--with-curlwrappers' '--with-freetype-dir=/usr' '--with-gd' '--with-gettext' '--with-imap=/opt/php_with_imap_client/' '--with-imap-ssl=/usr' '--with-jpeg-dir=/usr' '--with-kerberos' '--with-libdir=lib64' '--with-libexpat-dir=/usr' '--with-libxml-dir=/opt/xml2' '--with-libxml-dir=/opt/xml2/' '--with-mcrypt=/opt/libmcrypt/' '--with-mhash=/opt/mhash/' '--with-mime-magic' '--with-mysql=/usr' '--with-mysql-sock=/var/lib/mysql/mysql.sock' '--with-mysqli=/usr/bin/mysql_config' '--with-openssl=/usr' '--with-openssl-dir=/usr' '--with-pdo-mysql=shared' '--with-pdo-sqlite=shared' '--with-pgsql=/usr' '--with-pic' '--with-png-dir=/usr' '--with-pspell' '--with-sqlite=shared' '--with-tidy=/opt/tidy/' '--with-ttf' '--with-xmlrpc' '--with-xpm-dir=/usr' '--with-xsl=/opt/xslt/' '--with-zlib' '--with-zlib-dir=/usr' Server API CGI/FastCGI Virtual Directory Support disabled Configuration File (php.ini) Path /usr/lib Loaded Configuration File /home/remotehe/public_html/php.ini Scan this dir for additional .ini files (none) additional .ini files parsed (none) PHP API 20041225 PHP Extension 20060613 Zend Extension 220060519 Debug Build no Thread Safety disabled Zend Memory Manager enabled IPv6 Support enabled Registered PHP Streams compress.zlib, compress.bzip2, tftp, ftp, telnet, dict, http, https, ftps, php, file, data, zip Registered Stream Socket Transports tcp, udp, unix, udg, ssl, sslv3, sslv2, tls Registered Stream Filters zlib.*, bzip2.*, convert.iconv.*, string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed This program makes use of the Zend Scripting Language Engine:Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies with the ionCube PHP Loader v3.3.11, Copyright (c) 2002-2010, by ionCube Ltd., and with Zend Extension Manager v1.2.2, Copyright (c) 2003-2007, by Zend Technologies with Zend Optimizer v3.3.3, Copyright (c) 1998-2007, by Zend Technologies PHP Credits Configuration PHP Core DirectiveLocal ValueMaster Value allow_call_time_pass_referenceOnOn allow_url_fopenOnOn allow_url_includeOnOn always_populate_raw_post_dataOffOff arg_separator.input&& arg_separator.output&& asp_tagsOffOff auto_append_fileno valueno value auto_globals_jitOnOn auto_prepend_fileno valueno value browscapno valueno value default_charsetno valueno value default_mimetypetext/htmltext/html define_syslog_variablesOffOff disable_classesno valueno value disable_functionsno valueno value display_errorsOnOn display_startup_errorsOffOff doc_rootno valueno value docref_extno valueno value docref_rootno valueno value enable_dlOnOn error_append_stringno valueno value error_logerror_logerror_log error_prepend_stringno valueno value error_reporting06135 exec_dirno valueno value expose_phpOnOn extension_dir/usr/local/lib/php/extensions/no-debug-zts-20060613/usr/local/lib/php/extensions/no-debug-zts-20060613 file_uploadsOnOn highlight.bg#FFFFFF#FFFFFF highlight.comment#FF8000#FF8000 highlight.default#0000BB#0000BB highlight.html#000000#000000 highlight.keyword#007700#007700 highlight.string#DD0000#DD0000 html_errorsOnOn ignore_repeated_errorsOffOff ignore_repeated_sourceOffOff ignore_user_abortOffOff implicit_flushOffOff include_path.:/usr/lib/php:/usr/local/lib/php.:/usr/lib/php:/usr/local/lib/php log_errorsOnOn log_errors_max_len10241024 magic_quotes_gpcOnOn magic_quotes_runtimeOffOff magic_quotes_sybaseOffOff mail.force_extra_parametersno valueno value max_execution_time3030 max_input_nesting_level6464 max_input_time6060 memory_limit128M128M open_basedirno valueno value output_bufferingno valueno value output_handlerno valueno value post_max_size16M16M precision1212 realpath_cache_size16K16K realpath_cache_ttl120120 register_argc_argvOnOn register_globalsOffOff register_long_arraysOnOn report_memleaksOnOn report_zend_debugOnOn safe_modeOffOff safe_mode_exec_dirno valueno value safe_mode_gidOffOff safe_mode_include_dirno valueno value sendmail_fromno valueno value sendmail_path/usr/sbin/sendmail -t -i/usr/sbin/sendmail -t -i serialize_precision100100 short_open_tagOnOn SMTPlocalhostlocalhost smtp_port2525 sql.safe_modeOffOff track_errorsOffOff unserialize_callback_funcno valueno value upload_max_filesize2M2M upload_tmp_dirno valueno value user_dirno valueno value variables_orderEGPCSEGPCS xmlrpc_error_number00 xmlrpc_errorsOffOff y2k_complianceOnOn zend.ze1_compatibility_modeOffOff bcmath BCMath support enabled bz2 BZip2 Support Enabled Stream Wrapper support compress.bz2:// Stream Filter support bzip2.decompress, bzip2.compress BZip2 Version 1.0.3, 15-Feb-2005 calendar Calendar support enabled cgi-fcgi DirectiveLocal ValueMaster Value cgi.check_shebang_line11 cgi.fix_pathinfo11 cgi.nph00 cgi.rfc2616_headers00 fastcgi.logging11 ctype ctype functions enabled curl cURL support enabled cURL Information libcurl/7.19.7 OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5 date date/time support enabled "Olson" Timezone Database Version 2009.13 Timezone Database internal Default timezone America/New_York DirectiveLocal ValueMaster Value date.default_latitude31.766731.7667 date.default_longitude35.233335.2333 date.sunrise_zenith90.58333390.583333 date.sunset_zenith90.58333390.583333 date.timezoneno valueno value dom DOM/XML enabled DOM/XML API Version 20031129 libxml Version 2.7.6 HTML Support enabled XPath Support enabled XPointer Support enabled Schema Support enabled RelaxNG Support enabled exif EXIF Support enabled EXIF Version 1.4 $Id: exif.c 287371 2009-08-16 14:31:27Z iliaa $ Supported EXIF Version 0220 Supported filetypes JPEG,TIFF filter Input Validation and Filtering enabled Revision $Revision: 288083 $ DirectiveLocal ValueMaster Value filter.defaultunsafe_rawunsafe_raw filter.default_flagsno valueno value ftp FTP support enabled gd GD Support enabled GD Version bundled (2.0.34 compatible) FreeType Support enabled FreeType Linkage with freetype FreeType Version 2.2.1 GIF Read Support enabled GIF Create Support enabled JPG Support enabled PNG Support enabled WBMP Support enabled XPM Support enabled XBM Support enabled gettext GetText Support enabled hash hash support enabled Hashing Engines md2 md4 md5 sha1 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru gost adler32 crc32 crc32b haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5 iconv iconv support enabled iconv implementation glibc iconv library version 2.5 DirectiveLocal ValueMaster Value iconv.input_encodingISO-8859-1ISO-8859-1 iconv.internal_encodingISO-8859-1ISO-8859-1 iconv.output_encodingISO-8859-1ISO-8859-1 imap IMAP c-Client Version 2007e SSL Support enabled Kerberos Support enabled json json support enabled json version 1.2.1 libxml libXML support active libXML Version 2.7.6 libXML streams enabled mbstring Multibyte Support enabled Multibyte string engine libmbfl Multibyte (japanese) regex support enabled Multibyte regex (oniguruma) version 4.4.4 Multibyte regex (oniguruma) backtrack check On mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1. DirectiveLocal ValueMaster Value mbstring.detect_orderno valueno value mbstring.encoding_translationOffOff mbstring.func_overload00 mbstring.http_inputpasspass mbstring.http_outputpasspass mbstring.internal_encodingno valueno value mbstring.languageneutralneutral mbstring.strict_detectionOffOff mbstring.substitute_characterno valueno value mcrypt mcrypt supportenabled Version 2.5.8 Api No 20021217 Supported ciphers cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes Supported modes cbc cfb ctr ecb ncfb nofb ofb stream DirectiveLocal ValueMaster Value mcrypt.algorithms_dirno valueno value mcrypt.modes_dirno valueno value mhash MHASH support Enabled MHASH API Version 20060101 mime_magic mime_magic supportenabled DirectiveLocal ValueMaster Value mime_magic.debugOffOff mime_magic.magicfile/usr/local/apache/conf/magic/usr/local/apache/conf/magic mysql MySQL Supportenabled Active Persistent Links 0 Active Links 0 Client API version 5.0.89 MYSQL_MODULE_TYPE external MYSQL_SOCKET /var/lib/mysql/mysql.sock MYSQL_INCLUDE -I/usr/include/mysql MYSQL_LIBS -L/usr/lib64 -lmysqlclient DirectiveLocal ValueMaster Value mysql.allow_persistentOnOn mysql.connect_timeout6060 mysql.default_hostno valueno value mysql.default_passwordno valueno value mysql.default_portno valueno value mysql.default_socketno valueno value mysql.default_userno valueno value mysql.max_linksUnlimitedUnlimited mysql.max_persistentUnlimitedUnlimited mysql.trace_modeOffOff mysqli MysqlI Supportenabled Client API library version 5.0.89 Client API header version 5.0.89 MYSQLI_SOCKET /var/lib/mysql/mysql.sock DirectiveLocal ValueMaster Value mysqli.default_hostno valueno value mysqli.default_port33063306 mysqli.default_pwno valueno value mysqli.default_socketno valueno value mysqli.default_userno valueno value mysqli.max_linksUnlimitedUnlimited mysqli.reconnectOffOff openssl OpenSSL support enabled OpenSSL Version OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008 pcre PCRE (Perl Compatible Regular Expressions) Support enabled PCRE Library Version 7.9 2009-04-11 DirectiveLocal ValueMaster Value pcre.backtrack_limit100000100000 pcre.recursion_limit100000100000 pgsql PostgreSQL Supportenabled PostgreSQL(libpq) Version 8.1.18 Multibyte character support enabled SSL support enabled Active Persistent Links 0 Active Links 0 DirectiveLocal ValueMaster Value pgsql.allow_persistentOnOn pgsql.auto_reset_persistentOffOff pgsql.ignore_noticeOffOff pgsql.log_noticeOffOff pgsql.max_linksUnlimitedUnlimited pgsql.max_persistentUnlimitedUnlimited posix Revision $Revision: 286880 $ pspell PSpell Support enabled Reflection Reflectionenabled Version $Id: php_reflection.c 287991 2009-09-03 14:02:51Z sebastian $ session Session Support enabled Registered save handlers files user Registered serializer handlers php php_binary wddx DirectiveLocal ValueMaster Value session.auto_startOffOff session.bug_compat_42OnOn session.bug_compat_warnOnOn session.cache_expire180180 session.cache_limiternocachenocache session.cookie_domainno valueno value session.cookie_httponlyOffOff session.cookie_lifetime00 session.cookie_path// session.cookie_secureOffOff session.entropy_fileno valueno value session.entropy_length00 session.gc_divisor100100 session.gc_maxlifetime14401440 session.gc_probability11 session.hash_bits_per_character44 session.hash_function00 session.namePHPSESSIDPHPSESSID session.referer_checkno valueno value session.save_handlerfilesfiles session.save_pathno valueno value session.serialize_handlerphpphp session.use_cookiesOnOn session.use_only_cookiesOffOff session.use_trans_sid00 SimpleXML Simplexml supportenabled Revision $Revision: 272374 $ Schema support enabled soap Soap Client enabled Soap Server enabled DirectiveLocal ValueMaster Value soap.wsdl_cache11 soap.wsdl_cache_dir/tmp/tmp soap.wsdl_cache_enabled11 soap.wsdl_cache_limit55 soap.wsdl_cache_ttl8640086400 sockets Sockets Support enabled SPL SPL supportenabled Interfaces Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject Classes AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, DirectoryIterator, DomainException, EmptyIterator, FilterIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RegexIterator, RuntimeException, SimpleXMLIterator, SplFileInfo, SplFileObject, SplObjectStorage, SplTempFileObject, UnderflowException, UnexpectedValueException standard Regex Library Bundled library enabled Dynamic Library Support enabled Path to sendmail /usr/sbin/sendmail -t -i DirectiveLocal ValueMaster Value assert.active11 assert.bail00 assert.callbackno valueno value assert.quiet_eval00 assert.warning11 auto_detect_line_endings00 default_socket_timeout6060 safe_mode_allowed_env_varsPHP_PHP_ safe_mode_protected_env_varsLD_LIBRARY_PATHLD_LIBRARY_PATH url_rewriter.tagsa=href,area=href,frame=src,input=src,form=,fieldset=a=href,area=href,frame=src,input=src,form=,fieldset= user_agentno valueno value tidy Tidy supportenabled libTidy Release 6 November 2007 Extension Version 2.0 ($Id: tidy.c 272374 2008-12-31 11:17:49Z sebastian $) DirectiveLocal ValueMaster Value tidy.clean_output00 tidy.default_configno valueno value tokenizer Tokenizer Support enabled wddx WDDX Supportenabled WDDX Session Serializer enabled xml XML Support active XML Namespace Support active EXPAT Version expat_1.95.8 xmlreader XMLReader enabled xmlrpc core library version xmlrpc-epi v. 0.51 php extension version 0.51 author Dan Libby homepage http://xmlrpc-epi.sourceforge.net open sourced by Epinions.com xmlwriter XMLWriter enabled xsl XSL enabled libxslt Version 1.1.26 libxslt compiled against libxml Version 2.7.6 EXSLT enabled libexslt Version 1.1.26 Zend Optimizer Optimization Pass 1 enabled Optimization Pass 2 enabled Optimization Pass 3 enabled Optimization Pass 4 enabled Optimization Pass 9 enabled Zend Loader enabled License Path no value Obfuscation level 3 zip Zip enabled Extension Version $Id: php_zip.c 287723 2009-08-26 02:16:41Z guenter $ Zip version 1.8.11 Libzip version 0.9.0 zlib ZLib Support enabled Stream Wrapper support compress.zlib:// Stream Filter support zlib.inflate, zlib.deflate Compiled Version 1.2.3 Linked Version 1.2.3 DirectiveLocal ValueMaster Value zlib.output_compressionOffOff zlib.output_compression_level-1-1 zlib.output_handlerno valueno value Additional Modules Module Name dbase ionCube Loader Environment VariableValue DOCUMENT_ROOT /home/remotehe/public_html GATEWAY_INTERFACE CGI/1.1 HTTP_ACCEPT text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 HTTP_ACCEPT_CHARSET ISO-8859-1,utf-8;q=0.7,*;q=0.7 HTTP_ACCEPT_ENCODING gzip HTTP_ACCEPT_LANGUAGE en-us,en;q=0.5 HTTP_CACHE_CONTROL no-cache HTTP_CONNECTION close HTTP_HOST www.web-hosting-service.org HTTP_PRAGMA no-cache HTTP_USER_AGENT CCBot/1.0 (+http://www.commoncrawl.org/bot.html) HTTP_X_CC_ID ccc02-01 PATH /bin:/usr/bin PHPRC /home/remotehe/public_html QUERY_STRING no value REDIRECT_STATUS 200 REMOTE_ADDR 38.107.191.82 REMOTE_PORT 54773 REQUEST_METHOD GET REQUEST_URI /links.php SCRIPT_FILENAME /home/remotehe/public_html/links.php SCRIPT_NAME /links.php SERVER_ADDR 207.210.125.235 SERVER_ADMIN webmaster@web-hosting-service.org SERVER_NAME www.web-hosting-service.org SERVER_PORT 80 SERVER_PROTOCOL HTTP/1.1 SERVER_SIGNATURE <address>Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at www.web-hosting-service.org Port 80</address> SERVER_SOFTWARE Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 UNIQUE_ID S5ohe0VJuRIAAD-oU8gAAAMC PHP Variables VariableValue _SERVER["DOCUMENT_ROOT"]/home/remotehe/public_html _SERVER["GATEWAY_INTERFACE"]CGI/1.1 _SERVER["HTTP_ACCEPT"]text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 _SERVER["HTTP_ACCEPT_CHARSET"]ISO-8859-1,utf-8;q=0.7,*;q=0.7 _SERVER["HTTP_ACCEPT_ENCODING"]gzip _SERVER["HTTP_ACCEPT_LANGUAGE"]en-us,en;q=0.5 _SERVER["HTTP_CACHE_CONTROL"]no-cache _SERVER["HTTP_CONNECTION"]close _SERVER["HTTP_HOST"]www.web-hosting-service.org _SERVER["HTTP_PRAGMA"]no-cache _SERVER["HTTP_USER_AGENT"]CCBot/1.0 (+http://www.commoncrawl.org/bot.html) _SERVER["HTTP_X_CC_ID"]ccc02-01 _SERVER["PATH"]/bin:/usr/bin _SERVER["PHPRC"]/home/remotehe/public_html _SERVER["QUERY_STRING"]no value _SERVER["REDIRECT_STATUS"]200 _SERVER["REMOTE_ADDR"]38.107.191.82 _SERVER["REMOTE_PORT"]54773 _SERVER["REQUEST_METHOD"]GET _SERVER["REQUEST_URI"]/links.php _SERVER["SCRIPT_FILENAME"]/home/remotehe/public_html/links.php _SERVER["SCRIPT_NAME"]/links.php _SERVER["SERVER_ADDR"]207.210.125.235 _SERVER["SERVER_ADMIN"]webmaster@web-hosting-service.org _SERVER["SERVER_NAME"]www.web-hosting-service.org _SERVER["SERVER_PORT"]80 _SERVER["SERVER_PROTOCOL"]HTTP/1.1 _SERVER["SERVER_SIGNATURE"]<address>Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at www.web-hosting-service.org Port 80</address> _SERVER["SERVER_SOFTWARE"]Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 _SERVER["UNIQUE_ID"]S5ohe0VJuRIAAD-oU8gAAAMC _SERVER["PHP_SELF"]/links.php _SERVER["REQUEST_TIME"]1268392315 _SERVER["argv"]Array ( ) _SERVER["argc"]0 _ENV["DOCUMENT_ROOT"]/home/remotehe/public_html _ENV["GATEWAY_INTERFACE"]CGI/1.1 _ENV["HTTP_ACCEPT"]text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 _ENV["HTTP_ACCEPT_CHARSET"]ISO-8859-1,utf-8;q=0.7,*;q=0.7 _ENV["HTTP_ACCEPT_ENCODING"]gzip _ENV["HTTP_ACCEPT_LANGUAGE"]en-us,en;q=0.5 _ENV["HTTP_CACHE_CONTROL"]no-cache _ENV["HTTP_CONNECTION"]close _ENV["HTTP_HOST"]www.web-hosting-service.org _ENV["HTTP_PRAGMA"]no-cache _ENV["HTTP_USER_AGENT"]CCBot/1.0 (+http://www.commoncrawl.org/bot.html) _ENV["HTTP_X_CC_ID"]ccc02-01 _ENV["PATH"]/bin:/usr/bin _ENV["PHPRC"]/home/remotehe/public_html _ENV["QUERY_STRING"]no value _ENV["REDIRECT_STATUS"]200 _ENV["REMOTE_ADDR"]38.107.191.82 _ENV["REMOTE_PORT"]54773 _ENV["REQUEST_METHOD"]GET _ENV["REQUEST_URI"]/links.php _ENV["SCRIPT_FILENAME"]/home/remotehe/public_html/links.php _ENV["SCRIPT_NAME"]/links.php _ENV["SERVER_ADDR"]207.210.125.235 _ENV["SERVER_ADMIN"]webmaster@web-hosting-service.org _ENV["SERVER_NAME"]www.web-hosting-service.org _ENV["SERVER_PORT"]80 _ENV["SERVER_PROTOCOL"]HTTP/1.1 _ENV["SERVER_SIGNATURE"]<address>Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at www.web-hosting-service.org Port 80</address> _ENV["SERVER_SOFTWARE"]Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 _ENV["UNIQUE_ID"]S5ohe0VJuRIAAD-oU8gAAAMC PHP License This program is free software; you can redistribute it and/or modify it under the terms of the PHP License as published by the PHP Group and included in the distribution in the file: LICENSE This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. If you did not receive a copy of the PHP license, or have any questions about PHP licensing, please contact license@php.net. 1 The Above Code Shows: Vertical OR Horizontl text links from Automatic Backlinks
Array ( )
This program is free software; you can redistribute it and/or modify it under the terms of the PHP License as published by the PHP Group and included in the distribution in the file: LICENSE
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
If you did not receive a copy of the PHP license, or have any questions about PHP licensing, please contact license@php.net.
Copyright © 2007-2010 Web-Hosting-Service. All rights are reserved. Link to us | Terms Of Service | Privacy Policy | News | Sitemap