How to add a .php file to WordPress

I have a php file in my server (say www.example.com/up/up.php). If i access that file through the url, my site says no page found. but i want to call that php file using url parameter. I want to call that file to a download file using url access( say www.example.com/up/up.php?f=207).
can someone help me how to do this. as usual i searched fr few days for my problem and came here when i totally cornered.

my up.php contains the following code

Read More
<?php /* Template Name: Upload */ ?>


<?php
  $app_id = "12345678901234567890";
  $app_secret = "12345678901234567890";
  $post_login_url = "www.mysite.com";
  $album_id = "7777";
  $photo_url = "URL";
  $photo_caption = "cool pics";

  $code = $_REQUEST["code"];

  //Obtain the access_token with publish_stream permission 
  if (!$code){ 
    $dialog_url= "http://www.facebook.com/dialog/oauth?"
      . "client_id=" .  $app_id
      . "&redirect_uri=" . urlencode( $post_login_url)
      .  "&scope=publish_stream";
    echo("<script>top.location.href='" . $dialog_url
      . "'</script>");
  } else {
    $token_url="https://graph.facebook.com/oauth/access_token?"
      . "client_id=" . $app_id
      . "&client_secret=" . $app_secret
      . "&redirect_uri=" . urlencode( $post_login_url)
      . "&code=" . $code;
    $response = file_get_contents($token_url);
    $params = null;
    parse_str($response, $params);
    $access_token = $params['access_token'];

    // POST to Graph API endpoint to upload photos
    $graph_url= "https://graph.facebook.com/" 
      . $album_id . "/photos?"
      . "url=" . urlencode($photo_url)
      . "&message=" . urlencode($photo_caption)
      . "&method=POST"
      . "&access_token=" .$access_token;

    echo '<html><body>';
    echo file_get_contents($graph_url);
    echo '</body></html>';
  }
?>

I should pass a value to the url by using link

Related posts

Leave a Reply

3 comments

  1. What you can do is this:

    Put up.php in your active theme’s folder, and put this line at the top of your up.php file:

    <?php /* Template Name: Up */ ?>
    

    Create a page called Up in your WordPress Dashboard, then on the right side of the edit page screen, set the Template to ‘Up’.

    Depending on what you are doing with this file, you may need to add more code to make it completely secure, but this should at least solve the problem of you being able to access/use that file.

    Read the relevant WordPress Codex page for more information:

    http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates

  2. I have Found a way which I use regularly to add my own created PHP to a PHP PAGE or post through the use of Short Codes.
    Now Create a PHP page named example.php in your theme root directory.
    write something like:

    <?php
    echo "Hi! I am a PHP File in WordPress template Folder!"
    ?>
    

    Now add the following code to your functions.php

    function exampleFormInclude()
    {
    include( 'example.php' );
    }
    function exampleapp_func() {
    
    ob_start();
    
    exampleFormInclude();
    
    $output = ob_get_contents();;
    ob_end_clean();
    
    return $output;
    }
    add_shortcode( 'exampleapp', 'exampleapp_func' );  
    

    Now add shortcode [exampleapp] in your page or post.
    Done.

  3. 1.Create a page custom-page.php and
    save it under your theme directory.
    Now,

    write the following line at the top of the page

    2.<?php /* Template Name: Custom Page */ ?>

    3.Write your PHP code under the custom page definition line, you can call your other WP template, functions inside this file.

    Start like

    4.<?php require_once("header.php");?>
    or

    5.whatever way you are integrating your header and footer to keep the layout consistent.

    6.Since this is a custom page, you NEED TO CREATE A PAGE from WordPress admin panel.
    Go to Admin => Pages => Add New

    7.Add a page title, depending upon how you have coded the custom page, you might add page body (description) as well. You can fully skip the description if it’s written in the custom php page.

    8.At right hand side, select Template.
    Choose My Custom Page from the dropdown.
    You are all set! Go to the slug (permalink) created by wordpress and see the page.