phphp Posted July 29, 2008 Share Posted July 29, 2008 Hi Phpfreaks (and I mean that respectfully ), I'm especially thankful for your phpfreakyness at this moment because I'm getting an error that has thrown me for a loop. The error says: Parse Error- Unexpected T_LNUMBER in line 31 Here is my config file as I'm having trouble identifying both where line 31 is as well as would could be the unexpected T_LNUMBER. Please advise and thanks! <?PHP //Config file generated by install.php - Do not alter now - Use your control panel to make changes //---------------------------------------------------------------------------------- //Monetization modules $show_google = "0"; $show_yahoo ="0"; $show_sf ="0"; $show_chitika="0"; $show_subscribe="1"; $show_amazon ="1"; $show_partners="1"; $show_bestseller="1"; $show_bestproducts="1"; $show_persobanner_center="1"; $show_persobanner_right="1"; $show_addarticles="1"; $_numResults ="1"; $formatarticle="1"; $switch="1"; //----------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- // Configuration of your local installation and personnal site definitions $templatefoldername="datas"; $mysitename ="Entrepreneurship Success Guide"; $mainkeyword ="Entrepreneurship,Entrepreneurship Success Guide; //----------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- // your personnal affiliate ID in the following programs $adsense_pub ="0"; $adsense_channel ="0"; $yahoo_pub ="0"; $yahoo_channel="0"; $chitika_pub ="0"; $chitika_channel="0"; $clickbank_pub ="imbsinc1"; $sf_account_id ="0"; $sf_track_id ="0"; $amazon_country="toptracom-20"; $Aassociates_id="toptracom-20"; $ebayaffid="0"; $num_amazon="3"; //------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- //Personal details $firstname="Doug"; $lastname="Barger"; $email="entrepreneur@internetmarketingbusinesssuccess.com"; $autoresponder="entrepreneurs1@aweber.com"; $domainname="entrepreneurshipsuccess.com"; //----------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------- // WARNING do not edit below this line $site = "http://"; $site .= $_SERVER["HTTP_HOST"]; $sitexml = $site."/"; $full = $_SERVER["REQUEST_URI"]; $dir = dirname($full); $dir = str_replace("/datas", "", $dir); $rootdir = str_replace("datas", "", $templatefoldername); $rooturl = $sitexml.$rootdir; $site .= $dir; $nr_links = 10; $template_index = "theindex.php"; $template_pages = "pages.php"; $template_sitemap = "thesitemap.php"; require_once("google_function.php"); require_once("chitika_function.php"); require_once("yahoo_function.php"); $ARTICLEPERPAGE = "5"; // This array for exclude pages when system is generating keywords page.... $array = array("index.php","sitemap.php","privacy.php","tos.php","permalink.php","partners.php", "wfb.php", "article_list.php", "wfbtrash", "partners_instr.php", "submitarticle.php", "tellafriend.php"); ?> Quote Link to comment https://forums.phpfreaks.com/topic/117240-help-neededparse-error-unexpected-t_lnumber-on-line-31/ Share on other sites More sharing options...
ignace Posted July 29, 2008 Share Posted July 29, 2008 $mainkeyword ="Entrepreneurship,Entrepreneurship Success Guide"; Quote Link to comment https://forums.phpfreaks.com/topic/117240-help-neededparse-error-unexpected-t_lnumber-on-line-31/#findComment-603075 Share on other sites More sharing options...
revraz Posted July 29, 2008 Share Posted July 29, 2008 If you post your code using CODE tags, you would have caught the missing quote. Quote Link to comment https://forums.phpfreaks.com/topic/117240-help-neededparse-error-unexpected-t_lnumber-on-line-31/#findComment-603081 Share on other sites More sharing options...
phphp Posted July 29, 2008 Author Share Posted July 29, 2008 Thanks for the help guys as I added the missing quote, but it still appears there is something more to this equation as this error still comes up for it: Parse error: syntax error, unexpected T_LNUMBER in /homepages/35/d213093335/htdocs/entrepreneurship/datas/config.php on line 31 Quote Link to comment https://forums.phpfreaks.com/topic/117240-help-neededparse-error-unexpected-t_lnumber-on-line-31/#findComment-603096 Share on other sites More sharing options...
dezkit Posted July 29, 2008 Share Posted July 29, 2008 <?PHP //Config file generated by install.php - Do not alter now - Use your control panel to make changes //---------------------------------------------------------------------------------- //Monetization modules $show_google = "0"; $show_yahoo ="0"; $show_sf ="0"; $show_chitika="0"; $show_subscribe="1"; $show_amazon ="1"; $show_partners="1"; $show_bestseller="1"; $show_bestproducts="1"; $show_persobanner_center="1"; $show_persobanner_right="1"; $show_addarticles="1"; $_numResults ="1"; $formatarticle="1"; $switch="1"; //----------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- // Configuration of your local installation and personnal site definitions $templatefoldername="datas"; $mysitename ="Entrepreneurship Success Guide"; $mainkeyword ="Entrepreneurship,Entrepreneurship Success Guide"; //----------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- // your personnal affiliate ID in the following programs $adsense_pub ="0"; $adsense_channel ="0"; $yahoo_pub ="0"; $yahoo_channel="0"; $chitika_pub ="0"; $chitika_channel="0"; $clickbank_pub ="imbsinc1"; $sf_account_id ="0"; $sf_track_id ="0"; $amazon_country="toptracom-20"; $Aassociates_id="toptracom-20"; $ebayaffid="0"; $num_amazon="3"; //------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- //Personal details $firstname="Doug"; $lastname="Barger"; $email="entrepreneur@internetmarketingbusinesssuccess.com"; $autoresponder="entrepreneurs1@aweber.com"; $domainname="entrepreneurshipsuccess.com"; //----------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------- // WARNING do not edit below this line $site = "http://"; $site .= $_SERVER["HTTP_HOST"]; $sitexml = $site."/"; $full = $_SERVER["REQUEST_URI"]; $dir = dirname($full); $dir = str_replace("/datas", "", $dir); $rootdir = str_replace("datas", "", $templatefoldername); $rooturl = $sitexml.$rootdir; $site .= $dir; $nr_links = 10; $template_index = "theindex.php"; $template_pages = "pages.php"; $template_sitemap = "thesitemap.php"; require_once("google_function.php"); require_once("chitika_function.php"); require_once("yahoo_function.php"); $ARTICLEPERPAGE = "5"; // This array for exclude pages when system is generating keywords page.... $array = array("index.php","sitemap.php","privacy.php","tos.php","permalink.php","partners.php", "wfb.php", "article_list.php", "wfbtrash", "partners_instr.php", "submitarticle.php", "tellafriend.php"); ?> Quote Link to comment https://forums.phpfreaks.com/topic/117240-help-neededparse-error-unexpected-t_lnumber-on-line-31/#findComment-603098 Share on other sites More sharing options...
phphp Posted July 29, 2008 Author Share Posted July 29, 2008 I appreciate the help guys, but still getting the same error. Any ideas? Thanks, Doug Quote Link to comment https://forums.phpfreaks.com/topic/117240-help-neededparse-error-unexpected-t_lnumber-on-line-31/#findComment-603102 Share on other sites More sharing options...
revraz Posted July 29, 2008 Share Posted July 29, 2008 Then you are not saving the file. <?php //Config file generated by install.php - Do not alter now - Use your control panel to make changes //---------------------------------------------------------------------------------- //Monetization modules $show_google = "0"; $show_yahoo ="0"; $show_sf ="0"; $show_chitika="0"; $show_subscribe="1"; $show_amazon ="1"; $show_partners="1"; $show_bestseller="1"; $show_bestproducts="1"; $show_persobanner_center="1"; $show_persobanner_right="1"; $show_addarticles="1"; $_numResults ="1"; $formatarticle="1"; $switch="1"; //----------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- // Configuration of your local installation and personnal site definitions $templatefoldername="datas"; $mysitename ="Entrepreneurship Success Guide"; $mainkeyword ="Entrepreneurship,Entrepreneurship Success Guide"; //----------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- // your personnal affiliate ID in the following programs $adsense_pub ="0"; $adsense_channel ="0"; $yahoo_pub ="0"; $yahoo_channel="0"; $chitika_pub ="0"; $chitika_channel="0"; $clickbank_pub ="imbsinc1"; $sf_account_id ="0"; $sf_track_id ="0"; $amazon_country="toptracom-20"; $Aassociates_id="toptracom-20"; $ebayaffid="0"; $num_amazon="3"; //------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- //Personal details $firstname="Doug"; $lastname="Barger"; $email="entrepreneur@internetmarketingbusinesssuccess.com"; $autoresponder="entrepreneurs1@aweber.com"; $domainname="entrepreneurshipsuccess.com"; //----------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------- // WARNING do not edit below this line $site = "http://"; $site .= $_SERVER["HTTP_HOST"]; $sitexml = $site."/"; $full = $_SERVER["REQUEST_URI"]; $dir = dirname($full); $dir = str_replace("/datas", "", $dir); $rootdir = str_replace("datas", "", $templatefoldername); $rooturl = $sitexml.$rootdir; $site .= $dir; $nr_links = 10; $template_index = "theindex.php"; $template_pages = "pages.php"; $template_sitemap = "thesitemap.php"; require_once("google_function.php"); require_once("chitika_function.php"); require_once("yahoo_function.php"); $ARTICLEPERPAGE = "5"; // This array for exclude pages when system is generating keywords page.... $array = array("index.php","sitemap.php","privacy.php","tos.php","permalink.php","partners.php", "wfb.php", "article_list.php", "wfbtrash", "partners_instr.php", "submitarticle.php", "tellafriend.php"); ?> Quote Link to comment https://forums.phpfreaks.com/topic/117240-help-neededparse-error-unexpected-t_lnumber-on-line-31/#findComment-603105 Share on other sites More sharing options...
phphp Posted July 29, 2008 Author Share Posted July 29, 2008 Then you are not saving the file. I wish that were the case because it would make things easier, however, I can assure you I saved the file and uploaded it. I thought perhaps the fact that the files are saved in a subfolder entrepreneurship of the root domain entrepreneurshipsuccess.com, that by editing the destination of the domain to point to entrepreneurshipsuccess.com/entrepreneurship may solve it. However, now it is showing an entirely different error and the previous one had yet to be solved before the editing of the destination in order to correct it. I still have no idea what's wrong. Doug <?php //Config file generated by install.php - Do not alter now - Use your control panel to make changes //---------------------------------------------------------------------------------- //Monetization modules $show_google = "0"; $show_yahoo ="0"; $show_sf ="0"; $show_chitika="0"; $show_subscribe="1"; $show_amazon ="1"; $show_partners="1"; $show_bestseller="1"; $show_bestproducts="1"; $show_persobanner_center="1"; $show_persobanner_right="1"; $show_addarticles="1"; $_numResults ="1"; $formatarticle="1"; $switch="1"; //----------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- // Configuration of your local installation and personnal site definitions $templatefoldername="datas"; $mysitename ="Entrepreneurship Success Guide"; $mainkeyword ="Entrepreneurship,Entrepreneurship Success Guide"; //----------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- // your personnal affiliate ID in the following programs $adsense_pub ="0"; $adsense_channel ="0"; $yahoo_pub ="0"; $yahoo_channel="0"; $chitika_pub ="0"; $chitika_channel="0"; $clickbank_pub ="imbsinc1"; $sf_account_id ="0"; $sf_track_id ="0"; $amazon_country="toptracom-20"; $Aassociates_id="toptracom-20"; $ebayaffid="0"; $num_amazon="3"; //------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- //Personal details $firstname="Doug"; $lastname="Barger"; $email="entrepreneur@internetmarketingbusinesssuccess.com"; $autoresponder="entrepreneurs1@aweber.com"; $domainname="entrepreneurshipsuccess.com"; //----------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------- // WARNING do not edit below this line $site = "http://"; $site .= $_SERVER["HTTP_HOST"]; $sitexml = $site."/"; $full = $_SERVER["REQUEST_URI"]; $dir = dirname($full); $dir = str_replace("/datas", "", $dir); $rootdir = str_replace("datas", "", $templatefoldername); $rooturl = $sitexml.$rootdir; $site .= $dir; $nr_links = 10; $template_index = "theindex.php"; $template_pages = "pages.php"; $template_sitemap = "thesitemap.php"; require_once("google_function.php"); require_once("chitika_function.php"); require_once("yahoo_function.php"); $ARTICLEPERPAGE = "5"; // This array for exclude pages when system is generating keywords page.... $array = array("index.php","sitemap.php","privacy.php","tos.php","permalink.php","partners.php", "wfb.php", "article_list.php", "wfbtrash", "partners_instr.php", "submitarticle.php", "tellafriend.php"); ?> Quote Link to comment https://forums.phpfreaks.com/topic/117240-help-neededparse-error-unexpected-t_lnumber-on-line-31/#findComment-603133 Share on other sites More sharing options...
phphp Posted July 29, 2008 Author Share Posted July 29, 2008 Then you are not saving the file. I wish that were the case because it would make things easier, however, I can assure you I saved the file and uploaded it. I thought perhaps the fact that the files are saved in a subfolder entrepreneurship of the root domain entrepreneurshipsuccess.com, that by editing the destination of the domain to point to entrepreneurshipsuccess.com/entrepreneurship may solve it. However, now it is showing an entirely different error and the previous one had yet to be solved before the editing of the destination in order to correct it. I still have no idea what's wrong. Doug <?php //Config file generated by install.php - Do not alter now - Use your control panel to make changes //---------------------------------------------------------------------------------- //Monetization modules $show_google = "0"; $show_yahoo ="0"; $show_sf ="0"; $show_chitika="0"; $show_subscribe="1"; $show_amazon ="1"; $show_partners="1"; $show_bestseller="1"; $show_bestproducts="1"; $show_persobanner_center="1"; $show_persobanner_right="1"; $show_addarticles="1"; $_numResults ="1"; $formatarticle="1"; $switch="1"; //----------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- // Configuration of your local installation and personnal site definitions $templatefoldername="datas"; $mysitename ="Entrepreneurship Success Guide"; $mainkeyword ="Entrepreneurship,Entrepreneurship Success Guide"; //----------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- // your personnal affiliate ID in the following programs $adsense_pub ="0"; $adsense_channel ="0"; $yahoo_pub ="0"; $yahoo_channel="0"; $chitika_pub ="0"; $chitika_channel="0"; $clickbank_pub ="imbsinc1"; $sf_account_id ="0"; $sf_track_id ="0"; $amazon_country="toptracom-20"; $Aassociates_id="toptracom-20"; $ebayaffid="0"; $num_amazon="3"; //------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------- //Personal details $firstname="Doug"; $lastname="Barger"; $email="entrepreneur@internetmarketingbusinesssuccess.com"; $autoresponder="entrepreneurs1@aweber.com"; $domainname="entrepreneurshipsuccess.com"; //----------------------------------------------------------------------------------- //---------------------------------------------------------------------------------------- // WARNING do not edit below this line $site = "http://"; $site .= $_SERVER["HTTP_HOST"]; $sitexml = $site."/"; $full = $_SERVER["REQUEST_URI"]; $dir = dirname($full); $dir = str_replace("/datas", "", $dir); $rootdir = str_replace("datas", "", $templatefoldername); $rooturl = $sitexml.$rootdir; $site .= $dir; $nr_links = 10; $template_index = "theindex.php"; $template_pages = "pages.php"; $template_sitemap = "thesitemap.php"; require_once("google_function.php"); require_once("chitika_function.php"); require_once("yahoo_function.php"); $ARTICLEPERPAGE = "5"; // This array for exclude pages when system is generating keywords page.... $array = array("index.php","sitemap.php","privacy.php","tos.php","permalink.php","partners.php", "wfb.php", "article_list.php", "wfbtrash", "partners_instr.php", "submitarticle.php", "tellafriend.php"); ?> Quote Link to comment https://forums.phpfreaks.com/topic/117240-help-neededparse-error-unexpected-t_lnumber-on-line-31/#findComment-603141 Share on other sites More sharing options...
phphp Posted July 30, 2008 Author Share Posted July 30, 2008 Okay guys, When I edited my domain destination to the sub-folder, it did the trick to overcome the previous error, however, I'm now getting this one... Fatal error: Call to undefined function: xu() in /homepages/35/d213093335/htdocs/entrepreneurship/datas/amazon.php on line 268 Here is the code and I appreciate anyone who can help me. Thanks so much in advance for any help you may be able to lend. code: <?php $search=$mainkeyword; $amazon_country=strtolower($amazon_country); $mtime0=getmicrotime(); //time at start if ($_GET) { $language =$_GET['language' ]; $locale =$_GET['locale' ]; $mode =$_GET['mode' ]; $page =$_GET['page' ]; if (!$search) $search =$_GET['search' ]; $searchtype=$_GET['searchtype']; $show_array=$_GET['show_array']; $show_url =$_GET['show_url' ]; $show_xml =$_GET['show_xml' ]; $type =$_GET['type' ]; } //countries with a local Amazon $Alocale=array( 'ca' => 'Canada' , // (since 2005-01-21) 'uk' => 'UK' , 'us' => 'USA' , ); //You can remove or disable the local Amazon's here that you don't want to support. //servers per country $Aserver=array( 'ca' => array( 'nor' => 'http://www.amazon.ca' , //Canadian normal server 'xml' => 'http://xml.amazon.com' , //Canadian xml server ), 'uk' => array( 'nor' => 'http://www.amazon.co.uk' , //UK normal server 'xml' => 'http://xml-eu.amazon.com', //UK xml server ), 'us' => array( 'nor' => 'http://www.amazon.com' , //USA normal server 'xml' => 'http://xml.amazon.com' , //USA xml server ), ); //product categories per country server //source for this array: kit3_1/AmazonWebServices/API%20Guide/using_international_data.htm //they are kept in the order of that list $Amode=array( 'us' => array( 'books' => 'books' , 'music' => 'popular music' , 'classical' => 'classical music' , 'dvd' => 'DVD' , 'vhs' => 'video movies' , 'electronics' => 'electronics' , 'kitchen' => 'kitchen and housewares' , 'software' => 'software' , 'videogames' => 'computer and video games', 'magazines' => 'magazines' , 'toys' => 'toys and games' , 'photo' => 'camera and photo' , 'baby' => 'baby' , 'garden' => 'outdoor living' , 'pc-hardware' => 'computers' , 'tools' => 'tools and hardware' , 'hpc' => 'Health and personal care', //20050412: new, suggested by DvH 'gourmet' => 'Gourmet' , //20050412: new, suggested by DvH ), 'uk' => array( 'books-uk' => 'books' , 'music' => 'popular music' , 'classical' => 'classical music' , 'dvd-uk' => 'DVD' , 'vhs-uk' => 'video movies' , 'electronics-uk' => 'electronics' , 'kitchen-uk' => 'kitchen and housewares' , 'software-uk' => 'software' , 'video-games-uk' => 'computer and video games', 'toys-uk' => 'toys and games' , ), ); //search types //see for example kit3_1/AmazonWebServices/API%20Guide/index.html $Asearchtype=array( 'ActorSearch' => 'Actor/Actress' , 'ArtistSearch' => 'Artist/Musician', 'AsinSearch' => 'ASIN/ISBN' , //give an ASIN as the search string 'AuthorSearch' => 'Author' , 'BlendedSearch' => 'Blended' , //this will search in several categories (modes) 'BrowseNodeSearch' => 'Browse node' , 'DirectorSearch' => 'Director' , 'ExchangeSearch' => 'Exchange' , 'KeywordSearch' => 'Keyword' , 'ListmaniaSearch' => 'Listmania' , 'ManufacturerSearch' => 'Manufacturer' , 'MarketplaceSearch' => 'Marketplace' , 'PowerSearch' => 'Power' , 'SellerSearch' => 'Seller' , 'SimilaritySearch' => 'Similarity' , 'TextStreamSearch' => 'TextStream' , //will search inside of books? 'UpcSearch' => 'UPC' , 'WishlistSearch' => 'Wishlist' , ); //error messages //and how to handle them $Aerror=array( 'There are no exact matches for the search.'=>'print', ); //all the possible languages $Alanguage=array( 'en' => 'English', //also spoken in the USA and Australia and parts of Canada ); //is character a regula abc or ABC letter? function is_alpha($c) { return $c>='A' and $c<='Z' or $c>='a' and $c<='z'; } //set these to correspond with your site //the user can overrule them $Adefault=array( 'language' =>'en', //what language to render the page in 'locale' =>"$amazon_country", //which country's products? 'mode' =>'books', //what product category? 'page' =>'1', //first page is 1 not 0 'search' =>'totally+hot+info', //what to search for? 'searchtype'=>'KeywordSearch', //what kind of search? 'show_array'=>false, //debug: show complete array? 'show_url' =>false, //debug: show XML request url to be send to Amazon? 'show_xml' =>false, //debug: show incoming XML code? 'type' =>lite, //heavy will cause Amazon to send a much bigger (typically six times bigger) file ); //other flags: $f_rich =true; //when set to true this will convert the URL so you'll get 7.5% on qualifying books instead of 5%. It doesn't work yet outside of the USA. //change it to false when you prefer to get only 5% ;-) //see http://forums.prospero.com/n/mb/message.asp?webtag=am-assosdev&msg=6.1&ctx=0, or search the forum for 'nosim' //This is only helpful for certain books //correction: keep this option set to true, to prevent the showing of Amazon's annoying distraction pages. $f_user_search=false; //add a user search form and allow user searches? //============================================================================== //==You don't have to change anything after this line, to start earning money.== //============================================================================== //if the user hasn't overruled them yet, use the default if (!isset($language )) $language =$Adefault['language' ]; //20040815: isset()'s added if (!isset($locale )) $locale =$Adefault['locale' ]; if (!isset($mode )) $mode =$Adefault['mode' ]; if (!isset($page )) $page =$Adefault['page' ]; if (!isset($search )) $search =$Adefault['search' ]; if (!isset($searchtype)) $searchtype=$Adefault['searchtype']; if (!isset($show_url )) $show_url =$Adefault['show_url' ]; if (!isset($show_xml )) $show_xml =$Adefault['show_xml' ]; if (!isset($show_array)) $show_array=$Adefault['show_array']; if (!isset($type )) $type =$Adefault['type' ]; //use which servers? $norserver=$Aserver[$locale]['nor']; $xmlserver=$Aserver[$locale]['xml']; $dev_token='D2WMCOIPS9D14E'; //you can replace this with your own developer token if you have changed the script a lot //get one from http://associates.amazon.com/exec/panama/associates/join/developer/application.html //see: //http://forums.prospero.com/n/mb/message.asp?webtag=am-assocdevxml&msg=378.1&ctx=0 //form the URL to send to Amazon as a search request $file="$xmlserver/onca/xml3?". //should also still work with xml2 "$searchtype" .'='.urlencode($search) .'&'. 'dev-t' .'='.$dev_token .'&'. 'f' .'='.'xml' .'&'. 'locale' .'='.$locale .'&'. 'mode' .'='.$mode .'&'. 'page' .'='.$page .'&'. 't' .'='.$Aassociates_id .'&'. 'type' .'='.$type ; if ($show_url) { //change this to true, if you want to see the exact search URL printed echo "<hr />\n"; echo "Debugging:<br />\n"; echo "Asking Amazon's XML interface for:<br />\n"; echo $file."<br />\n"; echo "<hr />\n"; } //do you want to use caching? $cache_time=3600; //in seconds how long a cache entry may be used //Use 0 for no caching or don't make a cache directory //Amazon has a maximum of one day for most data, //but one hour for prices unfortunately, I think //if you want to cache make a subdirectory called cache //and make sure Apache/PHP can write into it. Under Unix: chmod a+w cache $time0=time(); $cache='cache/'; //directory where to cache things //should we cache? $f_cache=($cache_time && is_dir ($cache) && is_readable($cache) && is_writable($cache)); //first we are cleaning out the cache if ($f_cache and $hd=opendir($cache)) { while ($fn=readdir($hd)) { if ($time0-filemtime($cache.$fn)>=$cache_time) { //is the file too old? if (!($fn=='.' or $fn=='..')) unlink($cache.$fn); //remove it } } closedir($hd); } $cache_file_name=$cache.md5($file); //determine the name of the cache file if ($f_cache and //are we caching? is_readable($cache_file_name) and //file already readable in cache? $hf=fopen($cache_file_name,'r')) { //can it be opened? $A=unserialize(fread($hf,filesize($cache_file_name))); fclose($hf); } else { $mtime1=getmicrotime(); //time before Amazon if ($hf=fopen($file,'r')) { //else open the file from Amazon for ($sfile='';$buf=fread($hf,1024) { //read the complete file (binary safe) 20040715: $sfile='' added $sfile.=$buf; } fclose($hf); $mtime2=getmicrotime(); //time after Amazon if ($show_xml) { //print the raw XML? echo "<pre>\n"; echo htmlentities($sfile); //print the file echo "</pre>\n"; echo "<hr />\n"; } $A=xml2array(utf8_decode($sfile)); //interpret the XML if ($f_cache and !($A['ErrorMsg'] or $A['ProductInfo']['ErrorMsg'])) { if ($hf=fopen($cache_file_name,'w')) { fwrite($hf,serialize($A)."\n"); fclose($hf); } } } else die(xu("can't get data from Amazon").".<br />\n"); } //echo "<h2>".xu('searching for')." '$search'</h2>"; //you can change the h2's to h1's //now print the stuff if ($A) { //echo "Searchtype is '$searchtype'<br />\n"; //echo "<p />\n"; if ($show_array) { //show the array? print_array($A); //show the complete array } if ($e=$error_msg) { switch ($Aerror[$e]) { case 'print': echo "<!--$e--><br />\n"; break; default: echo xu('<!--Amazon returned the error').': '.$e."<br />\n"; echo "<br />\n"; echo xu('please add this error message to the '). "<a href='http://www.chipdir.nl/amazon/errorlist.php?do=add&da=".urlencode($e)."&ur=".$file."'>". xl('database')."</a>.<br />-->\n"; break; } } else { switch ($searchtype) { case 'BlendedSearch': foreach ($A['BlendedSearch']['ProductLine'] as $d) { echo "<hr />\n"; echo "<b>".xu('category' ).": ".$d['Mode' ]."</b><br />\n"; echo "<b>".xu('relevance').": ".$d['RelevanceRank']."</b><br />\n"; print_mode($d); } break; default: // echo "<hr />\n"; print_mode($A); break; } } } function print_mode($A) { global $language; global $locale; global $mode; global $page; global $search; global $searchtype; $np=$A['ProductInfo']['TotalResults']; // echo '<b>'.xu('number of products').": $np</b><br />\n"; // echo '<b>'.xu('page').' '.($page).' '.xl('of').' '.(int)(($np+9)/10)."</b><br />\n"; // echo "<p />\n"; echo '<table border="0" cellpadding="0" cellspacing="0" id="tableamaz">' . "\n"; if (is_array($D=$A['ProductInfo']['Details']) and $D[0]) { $count=1; foreach ($D as $i => $E) { printProduct($E); global $num_amazon; $count++; echo "<!-- $count $num_amazon -->\n"; if ($count > $num_amazon) {break;} } } else { printProduct($D); } echo "</table>\n"; } if ($f_user_search) { //the next section adds a search box for the users echo "<hr />\n"; echo "<form method='get' action='".$_SERVER['PHP_SELF']."'>\n"; //echo "<input type='hidden' name='language' value='$language' />\n"; //echo "<input type='hidden' name='locale' value='$locale' />\n"; //print " <input type='text' name='ty'>Search type </input><br />\n"; echo "<table>"; echo "<tr><td>".xu('product category:')."</td><td><select name='mode'>\n"; foreach ($Amode[($locale=='uk' || $locale=='jp')?'us':$locale] as $i=>$d) { //uk and jp not ready yet echo "<option value='$i'".($mode==$i?' selected':'').">".xl($d)."</option>\n"; } echo "</select></td></tr>\n"; echo "<tr><td>".xu('search type:')."</td><td><select name='searchtype'>\n"; foreach ($Asearchtype as $i=>$d) { echo "<option value='$i'".($searchtype==$i?' selected':'').">".$d."</option>\n"; } echo "</select></td></tr>\n"; echo "<tr><td>".xu('which server:')."</td><td><select name='locale'>\n"; foreach ($Alocale as $i=>$d) { echo "<option value='$i'".($locale==$i?' selected':'').">".xl($d)."</option>\n"; } echo "</select></td></tr>\n"; echo "<tr><td>".xu('language for page:')."</td><td><select name='language'>\n"; foreach ($Alanguage as $i=>$d) { echo "<option value='$i'".($language==$i?' selected':'').">".xu($d)."</option>\n"; } echo "</select></td></tr>\n"; echo "<tr>"; echo "<td>".xu('search string:')."</td>"; echo "<td><input type='text' name='search' value='$search' /></td>\n"; echo "</tr>\n"; echo "</table>"; echo "<input type='submit' value='Search' />\n"; echo "</form>\n"; //end of the search box section } //convert an XML-string to an array function xml2array($s) { if ($Atmp1=explode('>',$s,2) and ereg('^<\?(xml .*)\?$',$Atmp1[0],$Atmp2)) { $A['xml']=$Atmp2[1]; xml2array_sub($A,$Atmp1[1]); } return $A; } function xml2array_sub(&$A,$s) { global $error_msg; for ($c=0;ereg('<([^<>/ ]*)( [^<>]*)?/>(.*)',$s,$Atmp1) or ereg('<([^<>/ ]*)( [^<>]*)?>(.*)',$s,$Atmp1) and $Atmp2=explode('</'.$Atmp1[1].'>',$Atmp1[3],2);++$c) { $E=array(); $tag=$Atmp1[1]; if ($Atmp1[2]) { $Atmp3=explode(' ',substr($Atmp1[2],1)); foreach ($Atmp3 as $d) { $Atmp4=explode('=',$d,2); $Atmp4[1]=ereg_replace('^"(.*)"$','\1',$Atmp4[1]); $E[$Atmp4[0]]=$Atmp4[1]; } } if ($Atmp2) { if (!xml2array_sub($E,$Atmp2[0])) { $E=$Atmp2[0]; } $s=$Atmp2[1]; //rest of the xml-code $Atmp2=false; } else { $s=$Atmp1[3]; //rest of the xml-code } if (isset($A[$tag])) { //does it already exist? 20040715: isset() added if (!is_array($A[$tag]) or !$A[$tag][0]) { //not already a numberically indexed array? $Atag=$A[$tag]; //remove element again unset($A[$tag]); $A[$tag][]=$Atag; //make old element first element of it's former self } if ($E) { $A[$tag][]=$E; //add new element } } else { if ($E) { $A[$tag]=$E; //put it in the array under it's tag name if ($tag=='ErrorMsg') $error_msg=$E; //make this a global error message, because it can be anywhere in the XML code } } } return $c; } //print one Amazon product function printProduct($E) { global $Aassociates_id; global $dev_token; global $f_rich; //do you want 15% or 5%? (only for discounted books) global $locale; global $mode; global $norserver; if ($E) { //rebuild the URL if you want 7.5% instead of 5% and want to get rid of the distracting inbetween page: $url=($f_rich /*and $mode=='books' and $locale=='us'*/)?"$norserver/exec/obidos/ASIN/".$E['Asin'].'/ref=nosim/'.$Aassociates_id.'?dev-t='.$dev_token:$E['url']; echo "<tr>"; #echo "<td valign='top' width='30%'>"; #echo "</td>"; echo "<td valign='top' width='100%'>"; if ($d=$E['ProductName']) { echo "<a href='$url'>$d</a>"; } if ($d=$E['ImageUrlMedium']) { echo "<a href='$url'><img align='left' vspace='5' hspace='0' src='$d' border=0 width='100'></a></td></tr><tr><td>"; } echo ''; if (is_array($dd=$E['Authors']['Author'])) { // MORE THAN 1 AUTHOR!!! Show All Authors echo "-"; echo 'By' . ": "; foreach ($dd as $i=>$d) { if ($i) print ', '; echo "<b>" . $d . "</b>"; } echo "<br>"; } else if ($d=$dd) { // ONLY 1 AUTHOR!!! Show The Author echo "-"; echo ('By') . ": <b>" . $d . "</b>"; echo "<br>"; } $da=$E['Reviews']['AvgCustomerRating']; if ($da and $ds) print ", "; echo ""; echo ''; echo "-"; echo 'Price' . ": "; $do=$E['OurPrice' ]; $du=$E['UsedPrice']; // SHOW NEW PRICE if ($do) { echo "<b>$do</b> (" . 'New' . ")"; } // SHOW USED PRICE if ($du) { echo "<br><b>$du</b> (" . 'Used' . ")"; } echo ""; echo "<p>"; echo "</td>"; echo "</tr>\n"; } } function print_array($A) { echo "<table border=1>\n"; for (reset($A);list($ky,$da)=each($A) { echo "<tr><td valign=top>$ky</td><td>"; if (is_array($da)) print_array($da); else { echo "<pre>"; echo htmlentities($da); echo "</pre>"; } echo "</td></tr>\n"; } echo "</table>\n"; reset($A); } $mtime3=getmicrotime(); //time at end function getmicrotime() { list($us,$s)=explode(' ',microtime()); return (float)$us+(float)$s; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/117240-help-neededparse-error-unexpected-t_lnumber-on-line-31/#findComment-603245 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.