Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6986389
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T18:48:09+00:00 2026-05-27T18:48:09+00:00

I need some help translating the following shell scripts calls to PHP curl -3

  • 0

I need some help translating the following shell scripts calls to PHP

curl -3 --cookie /tmp/cookie --cookie-jar /tmp/cookie --insecure --data "login=login" --data "username=admin" --data "password=password" URL-HERE/login

curl -3 --cookie /tmp/cookie --cookie-jar /tmp/cookie --insecure --data "json={'cmd':'get-data', 'id':'1'}" URL-HERE/api

I’m having some difficulties with the first curl command.

Got as far as:

    $curl=curl_init();
    curl_setopt($curl,CURLOPT_RETURNTRANSFER ,1 );
    curl_setopt($curl,CURLOPT_HEADER , 1);
    curl_setopt($curl,CURLOPT_FOLLOWLOCATION, 1);
    curl_setopt($curl,CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($curl,CURLOPT_SSL_VERIFYHOST, FALSE);

    curl_setopt($curl,CURLOPT_COOKIEJAR, "/tmp/cookie");
    curl_setopt($curl,CURLOPT_COOKIEFILE, "/tmp/cookie");
    curl_setopt($curl,CURLOPT_TIMEOUT,10000);
    curl_setopt($curl,CURLOPT_URL,"URL-HERE/login");

    curl_setopt($curl,CURLOPT_POST ,1);
    $post = array(
      "username" => 'admin',
      "password" => 'password',
      "login" => 'login',
    );
    curl_setopt($curl,CURLOPT_POSTFIELDS,$post);
    echo curl_exec($curl);

Which seems to always render the the login form from URL-HERE/login, and subsequent JSON requests using the above cookie seem to fail with error message “need to be logged in before attempting these requests”. However, the two shell command above work flawlessly.

Am I correct in thinking –data parameters become post vars. and JSON data is a post field named “json” with contents that’s been returned by json_encode()?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T18:48:10+00:00Added an answer on May 27, 2026 at 6:48 pm

    You could try this: (I rewrote some of my code, NOT tested)

    $url = 'URL-HERE/login';
    $username = 'username';
    $password = 'password';
    $postfields = "login=login&username=$username&password=$password";
    
    $cookie="/tmp/cookie";
    $ch = curl_init();
    curl_setopt ($ch, CURLOPT_URL, $url);
    curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
    curl_setopt ($ch, CURLOPT_TIMEOUT, 60);
    curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1);
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookie);
    curl_setopt ($ch, CURLOPT_COOKIEFILE, $cookie);
    curl_setopt ($ch, CURLOPT_REFERER, $url);
    curl_setopt ($ch, CURLOPT_POSTFIELDS, $postfields);
    curl_setopt ($ch, CURLOPT_POST, 1);
    $result = curl_exec ($ch);
    
    curl_close($ch);
    echo $result;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need some help from the shell-script gurus out there. I have a .txt
I need some help to be able to handle the following logic. The program
I need some help/guidance on WinForms data binding and I can't seem to get
I need help with translating some code from VB to C#. Public Function ToBase36(ByVal
Need some help with extracting 2 pieces of information from the following string: viewed
Need some help about with Memcache. I have created a class and want to
Need some help, please. I have a line of horizontal thumbnails loaded as ONE
Need some help to solve this. I have a gridview and inside the gridview
Need some help with this problem in implementing with XSLT, I had already implemented
Need some help gathering thoughts on this issue. Our team is moving ahead with

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.