Hello Iam testing a php script and i get a notice error how do i fix it

+2 votes

A PHP Error was encountered

Severity: Notice

Message: Undefined variable: currency_symbol

Filename: controllers/Signup.php

Line Number: 149

Backtrace:

File: /srv/disk9/3048335/www/cyclos.za.org/application/controllers/Signup.php
Line: 149
Function: _error_handler

File: /srv/disk9/3048335/www/cyclos.za.org/index.php
Line: 315
Function: require_once

A PHP Error was encountered

Severity: Warning

Message: Cannot modify header information - headers already sent by (output started at /srv/disk9/3048335/www/cyclos.za.org/system/core/Exceptions.php:271)

Filename: helpers/url_helper.php

Line Number: 564

Backtrace:

File: /srv/disk9/3048335/www/cyclos.za.org/application/controllers/Signup.php
Line: 212
Function: redirect

File: /srv/disk9/3048335/www/cyclos.za.org/index.php
Line: 315
Function: require_once

Aug 28, 2020 in Software Testing by Titus
• 160 points

edited Aug 28, 2020 by Niroj 1,139 views

Hello @

Share your Signup.php and index.php code so that i can help you out and provide me with more information what you are trying to do?

<?php

defined( 'BASEPATH' )OR exit( 'No direct script access allowed' );

class Signup extends MY_Controller {

function __construct() {

parent::__construct();

$this->load->model( "signin_model" );

/* cache control */

$this->output->set_header( 'Last-Modified: ' . gmdate( "D, d M Y H:i:s" ) . ' GMT' );

$this->output->set_header( 'Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0' );

$this->output->set_header( 'Pragma: no-cache' );

$this->output->set_header( "Expires: Mon, 26 Jul 2010 05:00:00 GMT" );

}

public function index() {

$this->selectplan();

}

public function ref($referrer_email='') {

$this->session->set_userdata('referrer_email', $referrer_email);

$this->selectplan();

}

// Signup step 1 - Choose Plan

public function selectplan() {

$this->data['investment_plans'] = $this->db->get_where('investment_plans', array('active' => 'yes'))->result_array();

$this->load->view( 'select_plan_page', $this->data);

}

// Signup step 2 - Registration form

public function register($selected_plan='') {

$plans_query = $this->db->get_where('investment_plans', array('active' => 'yes', 'name'=> $selected_plan));

if ($plans_query->num_rows() > 0) {

$this->data['min_capital'] = $plans_query->row()->min_capital;

$this->data['max_capital'] = $plans_query->row()->max_capital;

}

else{

redirect(base_url('signup'));

}

$this->data['selected_plan'] = $selected_plan;

$this->data['selected_planID'] = $plans_query->row()->planID;

$this->data['investment_plans'] = $this->db->get_where('investment_plans', array('active' => 'yes'))->result_array();

$this->load->view('register_page', $this->data);

}

// Signup step 3 - Registration form submit & process

public function submit() {

$this->form_validation->set_error_delimiters('<div class="error">', '</div>');

$this->form_validation->set_rules( 'email', 'Email', 'trim|required|max_length[40]|valid_email|xss_clean|is_unique[user.email]',

array(

                'required'      => 'You have not provided %s.',

                'is_unique'     => 'This %s already has an account. Please, <a href=" '.base_url("login").' ">Sign In</a> instead and make a new investment from your account.'

        ) );

$this->form_validation->set_rules( 'password', 'Password', 'trim|required|xss_clean|min_length[6]|callback_password_check' );

$this->form_validation->set_rules( 'retype_password', 'Repeat Password', 'trim|required|xss_clean|matches[password]' );

$this->form_validation->set_rules( 'firstname', 'Firstname', 'trim|required|xss_clean' );

$this->form_validation->set_rules( 'othernames', 'Othernames', 'trim|required|xss_clean' );

$this->form_validation->set_rules( 'country', 'Country', 'trim|required|xss_clean' );

$this->form_validation->set_rules( 'city', 'City', 'trim|required|xss_clean' );

$this->form_validation->set_rules( 'phone', 'Phone', 'trim|required|xss_clean' );

$this->form_validation->set_rules( 'investment_plan', 'Investment Plan', 'trim|required|xss_clean' );

$this->form_validation->set_rules( 'min_capital', 'Minimum Capital', 'trim|required|xss_clean|numeric' );

$this->form_validation->set_rules( 'max_capital', 'Maximum Capital', 'trim|required|xss_clean' );

$this->form_validation->set_rules( 'investment_capital', 'Investment Capital', 'trim|required|xss_clean|numeric|greater_than_equal_to['.$this->input->post("min_capital").']|callback_max_capital_check' );

$this->form_validation->set_rules( 'roi_modelID', 'ROI Model', 'trim|required|xss_clean' );

$this->form_validation->set_rules( 'deposit_typeID', 'Investment Funding Medium', 'trim|required|xss_clean' );

$this->form_validation->set_rules( 'terms', 'Terms Agreement', 'trim|required|xss_clean' );

if ( $this->form_validation->run() == TRUE ) { //  form validation pass

//ASSEMBLE DETAILS FOR NEW ACCOUNT CREATION

$account_data = array(

'firstname' => strtoupper( $this->input->post("firstname") ),

'othernames' => strtoupper( $this->input->post("othernames") ),

'country' => $this->input->post("country"),

'city' => strtoupper( $this->input->post("city") ),

'phone' => $this->input->post("phone"),

'email' => strtolower( $this->input->post("email") ),

'password' => $this->signin_model->hash( $this->input->post("password") ),

'regdate' => strtotime(date('D M d, Y h:i a') ),

'email_verified' => md5($this->input->post("email").$this->input->post("firstname"))

);

//SAVE NEW ACCOUNT DETAILS TO DATABASE user table

$this->db->insert( 'user', $account_data );

$userID = $this->db->insert_id();

//ASSEMBLE DETAILS FOR NEW INVESTMENT CREATION

$deposit_channelID=0;

if ( !is_numeric( $this->input->post("deposit_typeID") )  ) {

$deposit_channelID = $this->input->post("deposit_typeID");

}

$investment_data = array(

'userID' => $userID,

'user_email' => $account_data['email'],

'investment_code' => $this->common_model->generate_investment_code($this->input->post("investment_plan")),

'investment_plan' => $this->input->post("investment_plan"),

'investment_planID' => $this->input->post("investment_planID"),

'roi_modelID' => $this->input->post("roi_modelID"),

'deposit_typeID' => $this->input->post("deposit_typeID"),

'deposit_channelID' => $deposit_channelID,

'investment_capital' => $this->input->post("investment_capital"),

'creation_timestamp' => strtotime(date('D M d, Y h:i a') ),

'status' => 'unfunded'

);

//SAVE NEW INVESTMENT DETAILS TO DATABASE investments table

$this->db->insert( 'investments', $investment_data );

$investmentID = $this->db->insert_id();

// SEND NEW ACCOUNT NOTIFICATION (+ ACCOUNT VERIFICATION) EMAIL TO THE USER'S EMAIL

$subject = 'Welcome. New Account Registration [Account Activation Required]';

$message  = 'Hello ' . $this->input->post("firstname") . '. <br><br>' ;

$message .= ' Welcome on board to DatroIncome.<br> <br> Here at Datro Investments we help your money work better for you once you give us the chance to Trade and Invest on your behalf. You need not be a pro in Financial Investments to invest and earn better. You simply decide. We take it from there. <br>';

$message  .= 'Your Investment Account has been successfully created, and that is a great step towards investing smartly. <br><br>

<b>So, What is next?</b> <br>

1) Verify your Account by clicking <a href="'.base_url('signup/confirm/'.$account_data['email'].'/'.$account_data['email_verified']).'" type="button" style="padding:4px; background:#ffa800; color:#fff; font-size:17px; text-decoration:none;"> here </a> <br>

2) Fund your Investment Account by making your Investment Capital Deposit as will be shown on your Account Dashboard.<br>

3) Our Experts start Investing and Trading on your behalf with your fund. <br>

4) You start receiving interests (ROI) in your Account Wallet as stipulated during your account registration. <br>

5) You may choose to request payout of your interests (ROI) or re-invest them for more returns.

<br><br>' ;

$this->email_model->send_email( $subject, $message, $account_data['email']);

// SEND NEW ACCOUNT NOTIFICATION TO ADMINISTRATIVE EMAILS

$subject = 'New Account Sign Up Notification ['.date("d/m/Y H:i").']';

$message  = 'Hello, <br><br>' ;

$message .= 'You are hereby notified of a new account sign up by: <br> Firstname - '.$this->input->post("firstname").' <br> Email - '.$account_data['email'].'. <br> ';

$this->email_model->send_admin_email( $subject, $message );

//SEND NEW INVESTMENT INITIATION NOTIFICATION EMAIL TO THE USER'S EMAIL

$subject = 'New Investment Initiated ['.$investment_data["investment_code"].']';

$message  = 'Hello ' . $this->input->post("firstname") . '. <br><br>' ;

$message .= 'A new Investment has been initiated by your account as follows: <br> ';

$message .= 'Investment ID: '. $investment_data["investment_code"] .' <br> ';

$message .= 'Investment Plan: '. $investment_data["investment_plan"] .' <br> ';

$message .= 'Investment Capital: '. $currency_symbol.number_format($investment_data["investment_capital"],2) .' <br> <br>';

$message .= 'Date: '. date('d/m/Y H:i', $investment_data["creation_timestamp"]) .' <br> ';

// $message .= 'Investment ROI Model: '. $investment_data["investment_plan"] .' <br> ';

$message  .= 'You can now sign in to your account <a href="'.base_url('login').'">here</a> to complete the Investment deposit, if you are yet to, so we can start trading and investing for you. <br><br>' ;

$this->email_model->send_email( $subject, $message, $account_data['email']);

//Check if a Referrer was provided and do the needful

if ($this->input->post("referrer_email")!='' || $this->session->userdata('referrer_email')!='') {

$referrer_email = $this->session->userdata('referrer_email');

if ($this->input->post("referrer_email")!='') {

$referrer_email = $this->input->post("referrer_email");

}

$referrer = $this->db->get_where('user', array('email'=>$referrer_email ) );

if ( $referrer->num_rows() > 0  ) { //then, the referrer exists

// update the referrer in the new user's data in users table

$this->db->where('userID', $userID);

$this->db->update('user', array('referreremail' => $referrer->row()->email ));

//ASSEMBLE DETAILS FOR NEW REFERRAL COMMISSION CREATION

$ref_data = array(

'userID' => $referrer->row()->userID,

'user_email' => $referrer->row()->email,

'referred_userID' => $userID,

'referred_user_email' => $account_data['email'],

'commission_code' => $this->common_model->generate_commission_code(),

'creation_timestamp' => strtotime(date('D M d, Y h:i a') ),

'investment_code' => $investment_data['investment_code'],

// 'investment_plan' => $investment_data['investment_plan'],

'investment_capital' => $investment_data['investment_capital'],

'commission_amount' => $this->common_model->get_commission_amount($investment_data['investment_capital'], 'first_investment'),

'status' => 'unfunded'

);

if ( $ref_data['commission_amount'] > 0 ) {

//SAVE NEW Referral Commission DETAILS TO DATABASE referral_commission table

$this->db->insert( 'referral_commission', $ref_data );

$commissionID = $this->db->insert_id();

//SEND NEW REFERRED ACCOUNT NOTIFICATION EMAIL TO THE REFERRER'S EMAIL

$currency_symbol = $this->db->get_where('system_settings' , array('option' => 'currency_symbol' ))->row()->value;

$subject = 'New Account Referred by you';

$message  = 'Hello ' . $referrer->row()->firstname . '. <br><br>' ;

$message .= 'A new Investment Account, '.$account_data['email'].', has been registered, and was referred by you.

<br> You have been rewarded with a referral commission of '.$currency_symbol.number_format($ref_data['commission_amount'],2).'.

<br> This commission will be available as soon as the referred user funds the investment.

<br><br>

Refer more users to earn even more commissions. <br><br>';

$this->email_model->send_email( $subject, $message, $referrer->row()->email );

}

}

}

// Registration Success message

$this->session->set_flashdata('flash_message', 'Your Investment Account Registration was successful. <br> Please Sign in below with your details to continue. <br><br> PS: <br> A welcome message with your Account Confirmation link has been sent to your email, '.$account_data['email'].'. Ensure you check your Inbox and follow the link to activate your account.');

redirect(base_url('login'));

}

else {

$this->session->set_flashdata( 'flash_message_error', 'Please provide all details as required to continue.' );

$this->register($this->input->post('investment_plan'));

}

}

public function confirm($email='', $email_verify_code='') {

if ($email=='' || $email_verify_code=='') {

redirect(base_url());

}

$verify = $this->db->get_where('user', array('email'=>$email, 'email_verified'=>$email_verify_code))->num_rows();

if ($verify > 0) {

$this->db->where('email', $email);

$this->db->update('user', array('email_verified'=>'yes'));

//SEND ACCOUNT CONFIRMATION SUCCESS EMAIL

$subject = 'Account Confirmation Successful';

$message  = 'Hello ' . $this->input->post("firstname") . '. <br><br>' ;

$message  .= 'Your Investment Account has been successfully confirmed. You are now fully welcome on board. <br> We do hope to serve you with the best of our abilities.<br> If you are yet to, please do fund your Investment(s) so we can start Trading and Investing for you.<br>

<br><br>' ;

$this->email_model->send_email( $subject, $message, $account_data['email']);

// Account Confirmation Success message

$this->session->set_flashdata('flash_message', 'Your Investment Account has been successfully confirmed. You are now fully welcome on board. <br> We do hope to serve you with the best of our abilities.<br> If you are yet to, please do fund your Investment(s) so we can start Trading and Investing for you.<br> ');

}

elseif ( $this->db->get_where('user', array('email'=>$email, 'email_verified'=>'yes'))->num_rows() > 0 ) {

//Then, account had been confirmed earlier

$this->session->set_flashdata('flash_message', 'Your Investment Account had already been confirmed. You are now fully welcome on board. <br> We do hope to serve you with the best of our abilities.<br> If you are yet to, please do fund your Investment(s) so we can start Trading and Investing for you.<br> ');

}

else{

// Account Confirmation Error message

$this->session->set_flashdata('flash_message_error', 'Error identifying the Account Confirmation details submitted.<br> You can sign in and resend the Account Confirmation Email from your Account. ');

}

redirect(base_url('login'));

}

public function password_check($str) {

   if ( preg_match('#[0-9]#', $str) && preg_match('#[a-zA-Z]#', $str) ) {

     return TRUE;

   }

   else{

    $this->form_validation->set_message( "password_check", 'Password should have alphabets and numbers' );

    return FALSE;

   }

}

public function max_capital_check($investment_capital){

$max_capital = $this->input->post('max_capital');

if ( preg_match('#[a-zA-Z]#', $max_capital) ) {

return TRUE;

}

elseif ( preg_match('#[0-9]#', $max_capital) ) {

if ($investment_capital <= $max_capital ) {

return TRUE;

}

else{

$this->form_validation->set_message( "max_capital_check", 'Investment Capital should not be greater than '.$max_capital );

    return FALSE;

}

}

}

}
<?php

/**

 * CodeIgniter

 *

 * An open source application development framework for PHP

 *

 * This content is released under the MIT License (MIT)

 *

 * Copyright (c) 2014 - 2017, British Columbia Institute of Technology

 *

 * Permission is hereby granted, free of charge, to any person obtaining a copy

 * of this software and associated documentation files (the "Software"), to deal

 * in the Software without restriction, including without limitation the rights

 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell

 * copies of the Software, and to permit persons to whom the Software is

 * furnished to do so, subject to the following conditions:

 *

 * The above copyright notice and this permission notice shall be included in

 * all copies or substantial portions of the Software.

 *

 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR

 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,

 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE

 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER

 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,

 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN

 * THE SOFTWARE.

 *

 * @package CodeIgniter

 * @author EllisLab Dev Team

 * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (https://ellislab.com/)

 * @copyright Copyright (c) 2014 - 2017, British Columbia Institute of Technology (http://bcit.ca/)

 * @license http://opensource.org/licenses/MIT MIT License

 * @link https://codeigniter.com

 * @since Version 1.0.0

 * @filesource

 */

/*

 *---------------------------------------------------------------

 * APPLICATION ENVIRONMENT

 *---------------------------------------------------------------

 *

 * You can load different configurations depending on your

 * current environment. Setting the environment also influences

 * things like logging and error reporting.

 *

 * This can be set to anything, but default usage is:

 *

 *     development

 *     testing

 *     production

 *

 * NOTE: If you change these, also change the error_reporting() code below

 */

define('ENVIRONMENT', isset($_SERVER['CI_ENV']) ? $_SERVER['CI_ENV'] : 'development');

/*

 *---------------------------------------------------------------

 * ERROR REPORTING

 *---------------------------------------------------------------

 *

 * Different environments will require different levels of error reporting.

 * By default development will show errors but testing and live will hide them.

 */

switch (ENVIRONMENT)

{

case 'development':

error_reporting(-1);

ini_set('display_errors', 1);

break;

case 'testing':

case 'production':

ini_set('display_errors', 0);

if (version_compare(PHP_VERSION, '5.3', '>='))

{

error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_USER_NOTICE & ~E_USER_DEPRECATED);

}

else

{

error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_USER_NOTICE);

}

break;

default:

header('HTTP/1.1 503 Service Unavailable.', TRUE, 503);

echo 'The application environment is not set correctly.';

exit(1); // EXIT_ERROR

}

/*

 *---------------------------------------------------------------

 * SYSTEM DIRECTORY NAME

 *---------------------------------------------------------------

 *

 * This variable must contain the name of your "system" directory.

 * Set the path if it is not in the same directory as this file.

 */

$system_path = 'system';

/*

 *---------------------------------------------------------------

 * APPLICATION DIRECTORY NAME

 *---------------------------------------------------------------

 *

 * If you want this front controller to use a different "application"

 * directory than the default one you can set its name here. The directory

 * can also be renamed or relocated anywhere on your server. If you do,

 * use an absolute (full) server path.

 * For more info please see the user guide:

 *

 * https://codeigniter.com/user_guide/general/managing_apps.html

 *

 * NO TRAILING SLASH!

 */

$application_folder = 'application';

/*

 *---------------------------------------------------------------

 * VIEW DIRECTORY NAME

 *---------------------------------------------------------------

 *

 * If you want to move the view directory out of the application

 * directory, set the path to it here. The directory can be renamed

 * and relocated anywhere on your server. If blank, it will default

 * to the standard location inside your application directory.

 * If you do move this, use an absolute (full) server path.

 *

 * NO TRAILING SLASH!

 */

$view_folder = '';

/*

 * --------------------------------------------------------------------

 * DEFAULT CONTROLLER

 * --------------------------------------------------------------------

 *

 * Normally you will set your default controller in the routes.php file.

 * You can, however, force a custom routing by hard-coding a

 * specific controller class/function here. For most applications, you

 * WILL NOT set your routing here, but it's an option for those

 * special instances where you might want to override the standard

 * routing in a specific front controller that shares a common CI installation.

 *

 * IMPORTANT: If you set the routing here, NO OTHER controller will be

 * callable. In essence, this preference limits your application to ONE

 * specific controller. Leave the function name blank if you need

 * to call functions dynamically via the URI.

 *

 * Un-comment the $routing array below to use this feature

 */

// The directory name, relative to the "controllers" directory.  Leave blank

// if your controller is not in a sub-directory within the "controllers" one

// $routing['directory'] = '';

// The controller class file name.  Example:  mycontroller

// $routing['controller'] = '';

// The controller function you wish to be called.

// $routing['function'] = '';

/*

 * -------------------------------------------------------------------

 *  CUSTOM CONFIG VALUES

 * -------------------------------------------------------------------

 *

 * The $assign_to_config array below will be passed dynamically to the

 * config class when initialized. This allows you to set custom config

 * items or override any default config values found in the config.php file.

 * This can be handy as it permits you to share one application between

 * multiple front controller files, with each file containing different

 * config values.

 *

 * Un-comment the $assign_to_config array below to use this feature

 */

// $assign_to_config['name_of_config_item'] = 'value of config item';

// --------------------------------------------------------------------

// END OF USER CONFIGURABLE SETTINGS.  DO NOT EDIT BELOW THIS LINE

// --------------------------------------------------------------------

/*

 * ---------------------------------------------------------------

 *  Resolve the system path for increased reliability

 * ---------------------------------------------------------------

 */

// Set the current directory correctly for CLI requests

if (defined('STDIN'))

{

chdir(dirname(__FILE__));

}

if (($_temp = realpath($system_path)) !== FALSE)

{

$system_path = $_temp.DIRECTORY_SEPARATOR;

}

else

{

// Ensure there's a trailing slash

$system_path = strtr(

rtrim($system_path, '/\\'),

'/\\',

DIRECTORY_SEPARATOR.DIRECTORY_SEPARATOR

).DIRECTORY_SEPARATOR;

}

// Is the system path correct?

if ( ! is_dir($system_path))

{

header('HTTP/1.1 503 Service Unavailable.', TRUE, 503);

echo 'Your system folder path does not appear to be set correctly. Please open the following file and correct this: '.pathinfo(__FILE__, PATHINFO_BASENAME);

exit(3); // EXIT_CONFIG

}

/*

 * -------------------------------------------------------------------

 *  Now that we know the path, set the main path constants

 * -------------------------------------------------------------------

 */

// The name of THIS file

define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));

// Path to the system directory

define('BASEPATH', $system_path);

// Path to the front controller (this file) directory

define('FCPATH', dirname(__FILE__).DIRECTORY_SEPARATOR);

// Name of the "system" directory

define('SYSDIR', basename(BASEPATH));

// The path to the "application" directory

if (is_dir($application_folder))

{

if (($_temp = realpath($application_folder)) !== FALSE)

{

$application_folder = $_temp;

}

else

{

$application_folder = strtr(

rtrim($application_folder, '/\\'),

'/\\',

DIRECTORY_SEPARATOR.DIRECTORY_SEPARATOR

);

}

}

elseif (is_dir(BASEPATH.$application_folder.DIRECTORY_SEPARATOR))

{

$application_folder = BASEPATH.strtr(

trim($application_folder, '/\\'),

'/\\',

DIRECTORY_SEPARATOR.DIRECTORY_SEPARATOR

);

}

else

{

header('HTTP/1.1 503 Service Unavailable.', TRUE, 503);

echo 'Your application folder path does not appear to be set correctly. Please open the following file and correct this: '.SELF;

exit(3); // EXIT_CONFIG

}

define('APPPATH', $application_folder.DIRECTORY_SEPARATOR);

// The path to the "views" directory

if ( ! isset($view_folder[0]) && is_dir(APPPATH.'views'.DIRECTORY_SEPARATOR))

{

$view_folder = APPPATH.'views';

}

elseif (is_dir($view_folder))

{

if (($_temp = realpath($view_folder)) !== FALSE)

{

$view_folder = $_temp;

}

else

{

$view_folder = strtr(

rtrim($view_folder, '/\\'),

'/\\',

DIRECTORY_SEPARATOR.DIRECTORY_SEPARATOR

);

}

}

elseif (is_dir(APPPATH.$view_folder.DIRECTORY_SEPARATOR))

{

$view_folder = APPPATH.strtr(

trim($view_folder, '/\\'),

'/\\',

DIRECTORY_SEPARATOR.DIRECTORY_SEPARATOR

);

}

else

{

header('HTTP/1.1 503 Service Unavailable.', TRUE, 503);

echo 'Your view folder path does not appear to be set correctly. Please open the following file and correct this: '.SELF;

exit(3); // EXIT_CONFIG

}

define('VIEWPATH', $view_folder.DIRECTORY_SEPARATOR);

/*

 * --------------------------------------------------------------------

 * LOAD THE BOOTSTRAP FILE

 * --------------------------------------------------------------------

 *

 * And away we go...

 */
The first file is the signup.php and the second is index.php.

I am getting the error during the signup process of a new user on my website. You can try to register as a user on the following site: www.cyclos.za.org and you can be able to see the error.

thanks in advance,

Titus

Hii @Titus,

l'm executing your query in my system. I will post the solution here stay tuned

Thanks Niroj. Waiting....
Hello @Titus,
Send me your signup.blade.php
There is no signup.blade.php
Hello @Niroj

I cant find the file signup.blade.php in my script

Hello @Titus,

In Your error page it is show something related to your signup.blade.php page.

and where are you getting the currency symbol? It's not there in the form that I tested. What did you use to build this?

Hello @Niroj

Would you kindly give me your email so that i can send you the full files rather?

Hello @Titus,

Can you please upload your file in drive and share that link here so that your problem will be handled with most optimal solution

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.

Related Questions In Software Testing

+1 vote
1 answer

How to do stress testing in Apache flink? Kindly suggest the tool which is used to do stress testing.

Hey, @Savitha, Loadrunner from HP is the widely used ...READ MORE

answered Dec 9, 2020 in Software Testing by Gitika
• 65,910 points

edited Jun 23, 2023 by Khan Sarfaraz 1,203 views
+2 votes
1 answer

How to find Predicate String and IOS Class chain through Xpath in Appium IOS Platform. ?

https://github.com/facebookarchive/WebDriverAgent/wiki/Class-Chain- ...READ MORE

answered Dec 2, 2019 in Software Testing by anonymous
4,389 views
+1 vote
2 answers

Scp Php files into server using gradle

Tru something like this: plugins { id ...READ MORE

answered Oct 11, 2018 in DevOps & Agile by lina
• 8,220 points
1,162 views
0 votes
1 answer

How do I create folder under an Amazon S3 bucket through PHP API?

Of Course, it is possible to create ...READ MORE

answered Apr 24, 2018 in AWS by anonymous
10,922 views
0 votes
1 answer

Failure uploading Image on AmazonS3 with PHP SDK

Try this, I took it out from ...READ MORE

answered May 4, 2018 in AWS by Cloud gunner
• 4,670 points
3,697 views
0 votes
1 answer

Trying to call AWS API via PHP

Try using AWS SDK for PHP, Link ...READ MORE

answered Jun 6, 2018 in AWS by Cloud gunner
• 4,670 points
1,465 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP