irishguy9 Posted April 3, 2015 Share Posted April 3, 2015 Ok this is what I have done: Changed: if (!tep_session_is_registered('customer_id')) { to if (!isset($_SESSION['customer_id'])) { However, now I am getting this error: Undefined index: back_x in /home/giftboun/public_html/gv_send.php on line 24 line 24 reads: if (($_POST['back_x']) || ($_POST['back_y'])) { $_GET['action'] = ''; } Link to comment Share on other sites More sharing options...
AngusD Posted April 3, 2015 Share Posted April 3, 2015 Hi, try changing the line to: if (isset($_POST['back_x']) || isset($_POST['back_y'])) { $_GET['action'] = ''; } AD Link to comment Share on other sites More sharing options...
irishguy9 Posted April 3, 2015 Author Share Posted April 3, 2015 @@AngusD getting error now of this: Undefined index: back_y Undefined index: action this line: if ($_GET['action'] == 'process') { I am thinking it needs to be changed to if (isset($GET['process'])); Undefined index: action this line reads: if ($_GET['action'] == 'send' && !$error) { Undefined index: action this line reads: elseif ($_GET['action']=='' || $error) { Link to comment Share on other sites More sharing options...
irishguy9 Posted April 3, 2015 Author Share Posted April 3, 2015 I think I figured it out thanks Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.