wp-config.php file. I need this before we can get started. Need more help? We got it. You can create a wp-config.php file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file.
Create a Configuration File", "WordPress › Error"); } } $wp_did_header = true; require_once( realpath('./../../../wp-config.php')); }else{ require_once(realpath('./../../../wp-load.php')); } if(get_option('anyfont_image_module') && get_option('anyfont_image_module') != "auto"){ $libver = get_option('anyfont_image_module'); } else { if(!function_exists('version_compare') || version_compare( phpversion(), '5', '<' )){ $libver = "php4"; }else if(!extension_loaded("imagick")) { if(!extension_loaded("gd")){ echo "This script requires either one of the GD or Imagick image modules installed to run correctly."; exit(0); }else{ $libver = "php4"; } }else{ $libver = "php5"; } } define('ANYFONT_LIBDIR', DOC_ROOT."/lib/$libver"); $req_vars = explode( "/", $_SERVER['REQUEST_URI']); foreach($req_vars as $n => $v){ if($v == "images"){ $sn = $n; continue; } } $style = urldecode($req_vars[($sn+1)]); $text = str_replace(".png", "", html_entity_decode(urldecode($req_vars[($sn+2)]))); if(!isset($text) || !isset($style)){ header("HTTP/1.0 404 Not Found"); exit(0); }else{ $gzip = isset($HTTP_SERVER_VARS['HTTP_ACCEPT_ENCODING']) ? strstr($HTTP_SERVER_VARS['HTTP_ACCEPT_ENCODING'], 'gzip') ? 1 : 0 : 0; require_once(ANYFONT_LIBDIR."/class.image.php"); new ttfImage($text, $style, $gzip); } ?>