• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: tech support?

tech support? 17 years 4 months ago #1266

can i get an answer for ticket VFHERJSF21


Thanks my client is killing me.
The administrator has disabled public write access.

Re:tech support? 17 years 4 months ago #1268

  • alex
  • alex's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 443
  • Thank you received: 3
Hello Michael,

I replied to your e-mail on the same day. You probably did not get it. Sorry for that. My answer was(i sent it to jim@..) :

Hi Michael,

I'm not that familiar with the curl library, but here's how i think the code should look like. Please let me know if that worked.
if(isset($_POST['form']['FirstName'])){
   $n = urlencode($_POST['form']['FirstName']);
   $e = urlencode($_POST['form']['Email]);
   $su = \"your url here...\";
   $cUrl = curl_init();
curl_setopt(|$cUrl, CURLOPT_URL, $su);
curl_setopt(|$cUrl, CURLOPT_POST, 1);
curl_setopt(|$cUrl, CURLOPT_POSTFIELDS, \"n=\".$n.\"&e=\".$e);
curl_setopt($cUrl, CURLOPT_RETURNTRANSFER, 1);
   curl_exec($cUrl);
   curl_close($cUrl);
}
<br><br>Post edited by: alex, at: 2007/11/22 06:51
The administrator has disabled public write access.

Re:tech support? 17 years 4 months ago #1353

Ok that didn't work. Do you have any other way I can do this in PHP?

Thanks
The administrator has disabled public write access.

Re:tech support? 17 years 4 months ago #1362

  • alex
  • alex's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 443
  • Thank you received: 3
It was solved i guess. There was a missing ' in the $e = urlencode($_POST);
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!