Jump to content

Search the Community

Showing results for tags 'yahoo'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome to PHP Freaks
    • Announcements
    • Introductions
  • PHP Coding
    • PHP Coding Help
    • Regex Help
    • Third Party Scripts
    • FAQ/Code Snippet Repository
  • SQL / Database
    • MySQL Help
    • PostgreSQL
    • Microsoft SQL - MSSQL
    • Other RDBMS and SQL dialects
  • Client Side
    • HTML Help
    • CSS Help
    • Javascript Help
    • Other
  • Applications and Frameworks
    • Applications
    • Frameworks
    • Other Libraries
  • Web Server Administration
    • PHP Installation and Configuration
    • Linux
    • Apache HTTP Server
    • Microsoft IIS
    • Other Web Server Software
  • Other
    • Application Design
    • Other Programming Languages
    • Editor Help (PhpStorm, VS Code, etc)
    • Website Critique
    • Beta Test Your Stuff!
  • Freelance, Contracts, Employment, etc.
    • Services Offered
    • Job Offerings
  • General Discussion
    • PHPFreaks.com Website Feedback
    • Miscellaneous

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Age


Donation Link

Found 4 results

  1. Hello, I am not sure how to approach this at all. I require a utility that requests the weather code for the area code given; example url being: "/getweather.php?code=USCA1085" An example site is this: http://www.real-samp-weather.tk/RSW_GET.php?code=USCA1085. Unfortunately, I have no idea how to approach this. I am not a PhP developer and simply cannot understand the yahoo weather API. Any assistance would be greatly appreciated.
  2. I am creating yahoo japan auction bidding website using php. I am almost finish 70% of work. but now i am totally stuck in automate bidding. because yahoo japan does not provide yahoo bid url so i am unable to bid. The bid process in yahoo japan is login before only bid. so i am try to use curl and many more methods but its not working please guide me. Now i got yahoo auction script in java format. how can i convert into php. my java script url is given below. https://code.google.com/p/dlcsdk/source/browse/trunk/DLC+Models/src/com/mogan/model/netAgent/NetAgentYJV2.java?r=52 Please help me i am already post this question in many forums My stackoverflow questions are give below http://stackoverflow.com/questions/18077269/yahoo-japan-action-bidding-api-url http://stackoverflow.com/questions/18288382/yahoo-auction-placebid-api-url http://stackoverflow.com/questions/18954018/yahoo-co-jp-login-using-php-curl http://stackoverflow.com/questions/18981712/auto-login-yahoo-co-jp-using-curl-or-oauth http://stackoverflow.com/questions/18997322/oauth-error-code-400-on-yahoo-co-jp-get-token-request
  3. Has any one imported contacts from hotmail and yahoo using cakephp/php?Please suggest some useful links. ‪#‎Thanks‬ I found that php sdk for yahoo has been depicated and the php5 sdk is still experimental. Any thoughts?
  4. Hello, I'm hoping someone will be able to help with this issue I'm having. I'm a fairly new PHP user so this is a bit outside my abilities. Any assistance would be much appreciated. The Situation: A script hosted on Yahoo Small Business that submits a query to a third-party site and returns shipment tracking data. When I run the script on my local web server, the data is returned correctly. However when I run it from Yahoo hosting environment, no data is returned for the same query parameters. The Response Header: Server:YTS/1.19.11 P3P:policyref="http://info.yahoo.com/w3c/p3p.xml", CP="CAO DSP COR CUR ADM DEV TAI PSA PSD IVAi IVDi CONi TELo OTPi OUR DELi SAMi OTRi UNRi PUBi IND PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA POL HEA PRE LOC GOV" Date:Thu, 15 Nov 2012 13:14:05 GMT Content-Type:text/html Connection:close Age:2 The script provided by Vendor (Full code is attached..) checkstatus.txt <?php // Error reporting (comment out for debug) //error_reporting(E_ALL); //ini_set("display_errors", 1); // Disable all errors and warnings (comment out in debug) error_reporting(0); define("COMPANY_URL", "https://xxxx.xxxxxxx.xxxxx/cargoQuery?"); // Change second argument to company URL define("COMPANY_USERNAME", "xxxxxxxx"); // Change the second argument to company username define("COMPANY_PASSWORD", "xxxxxxxx"); // Change the second argument to company password // --------------------------------- DO NOT EDIT BELOW THIS LINE --------------------------------- function get_request($url) { $context = stream_context_create(array( 'http' => array( 'method' => "GET", 'header' => sprintf("Authorization: Basic %s\r\n", base64_encode(COMPANY_USERNAME . ":" . COMPANY_PASSWORD)) ), )); $response = file_get_contents($url, false, $context); return $response; } $indicators = array('1' => 'Message Content Accepted', '2' => 'Message Content Rejected with comment', '4' => 'Goods Released', '5' => 'Goods required for examination - referred', '8' => 'Goods May Move under Customs transfer, Detain at Destination (CFIA)', '9' => 'Declaration Accepted, Awaiting arrival of goods.', '14' => 'Error message', '23' => 'Authorised to deliver CSA Shipment', '34' => 'Transaction awaiting processing'); $cargoNum = (trim($_GET['cargo']) != "") ? "cargo=" . strtoupper(trim($_GET['cargo'])) : ""; $transNum = (trim($_GET['transaction']) != "") ? "transaction=" .(trim($_GET['transaction'])) : ""; $data = trim(get_request(COMPANY_URL . $cargoNum . $transNum)); ?> ............... <?php if (!empty($data)) { echo "Data returned!"; $doc = new DOMDocument(); $doc->preserveWhiteSpace = FALSE; $doc->loadXML($data); $messages = $doc->getElementsByTagName('rns'); $hasAttributes = FALSE; $duplicates = Array(); foreach ($messages as $rns) { $hasAttributes = TRUE; $releaseDate = $rns->getAttribute('release_date'); if (in_array($releaseDate, $duplicates)) { continue; } array_push($duplicates, $releaseDate); $ind = $rns->getAttribute('processing_ind'); ?> <tr> <td> <div style="color: #2f2f2f;"> <?= $rns->getAttribute('transaction_num') ?> </div> </td> <td> <div style="color: #2f2f2f;"> <?= $rns->getAttribute('cargo_ctl_num') ?> </div> </td> <td> <div style="color: #2f2f2f;"> <?= $releaseDate ?> </div> </td> <td> <div style="color: #2f2f2f;"> <?= $rns->getAttribute('port') ?> </div> </td> <td> <div style="color: #2f2f2f;"> <?= (array_key_exists($ind, $indicators)) ? $indicators[$ind] : $ind ?> </div> </td> </tr> <?php } } if (!$hasAttributes) { ?> <tr> <td colspan="5"> <p><b>No data to display.</b></p> </td> </tr> <?php } ?> ...... The Environment Yahoo is running PHP 5.3.6 My local server: PHP 5.3.1 Apache 2.2.14
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.