Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to run a small PHP Code after the successful Registration.

Means when anyone register to my Joomla 2.5 website my custom PHP Code should be run after successful Registration.

Anyone kindly help me.

share|improve this question

2 Answers

You should try to build a plugin that is triggered on by the onAfterStoreUser() event.

Also you may want to check this question here: Joomla - onAfterStoreUser does nothing

share|improve this answer

Thanks for your reply I have tried to run my phpcode as follows - XML file -

<?xml version="1.0" encoding="iso-8859-1"?>
<install version="1.5" type="plugin" group="user">
   <name>afterRegistration</name>
   <author>Destiny Enterprises</author>
   <creationDate>August 2012</creationDate>
   <copyright>(C) 2012 Open Source Matters. All rights reserved.</copyright>
   <license>GNU/GPL</license>
   <authorEmail>admin@joomla.org</authorEmail>
   <authorUrl>www.joomla.org</authorUrl>
   <version>1.1</version>
   <description>Sent a SMS when register a new user</description>
   <files>
       <filename plugin="afterregistration">afterregistration.php</filename>
   </files>
</install>

PHP file -

<?php
defined( '_JEXEC' ) or die( 'Restricted access' );
jimport('joomla.plugin.plugin');
class plgUserAfterregistration extends JPlugin
{
 function onAfterStoreUser($user, $isnew, $success, $msg)
 {
        if ($isnew)
        {
    $smsurl = "http://dndopen.dove-sms.com/SMSAPI.jsp?username=myusername&password=mypassword&sendername=Info&mobileno=919999999999&message=testing";                                                                                  
    $result = file_get_contents($smsurl);
        }
 }
}
?>

But the url $smsurl doen't reach. Please rectify my error.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.