Code

Discussion on Eduo - School Management System

Discussion on Eduo - School Management System

Cart 11 sales

codervex supports this item

Supported

This author's response time can be up to 1 business day.

34 comments found.

Seller (codervex) claims comments are biased. However, all comments come from buyers personal experience and comprehensive research. Please review all customer comments provided, and I’m sure you’ll see a pattern fraud. Seller should provide refunds as promised.

DO NOT BUY THIS !!!!!!!!!! WARNING !!!!!!!!! SCAM ALERT !!!!!!!!! READ REVIEWS AND COMMENTS !!!!!!!!!!!!!! DO NOT BUY THIS !!!!!!!!!!

Hi, we didn’t install our script on her server because several PHP extensions were misconfigured. We requested cPanel support to fix the server issue and even offered a fresh installation at no additional cost, but she didn’t agree and didn’t provide the required access. Our script is still running perfectly on the web server (as shown in the [Live Preview] link). Without proper server access, it’s impossible for us to resolve her issue. Unfortunately, she is now blaming our script and leaving negative comments on all our items.

This companies app claims to be Supported. These apps ARE NOT Supported. I have been requesting basic installation support for several days. I am still waiting. Buyer Beware!!!!!!!! Company May be a scam: Research uncovered the following:

CODERVEX CORP LTD.

Company Status: The UK entity “CODERVEX CORP LTD” was incorporated in September 2023 and dissolved shortly after in February 2025.

The main occupant at Kalkofnsvegur 2, Reykjavík, 101. The building is the site of several virtual office providers and has been linked to websites used for cyber scams.

Kalkofnsvegur 2, Reykjavík, 101.

->

AKA: Md Suzan Mia, AKA Em Nusaiba,

Hi, we didn’t install our script on her server because several PHP extensions were misconfigured. We requested cPanel support to fix the server issue and even offered a fresh installation at no additional cost, but she didn’t agree and didn’t provide the required access. Our script is still running perfectly on the web server (as shown in the [Live Preview] link). Without proper server access, it’s impossible for us to resolve her issue. Unfortunately, she is now blaming our script and leaving negative comments on all our items.

Is there an issue? I sent Cpanel login info to: support@codervex.com. Awaiting installation support.

Sent cpanel login info to: support@codervex.com. Awaiting installation support.

This app IS NOT Supported. This app claims to be Supported. The literature says: Codervex supports this item. However, I have been requesting basic installation support for several days. I am still waiting. Buyer Beware!!!!!!!!

So far I have not rated this application. I hope I will be able to give it a good rating. Unfortunately I have not been able to get it installed. I only have one more day to get this installed before I must give up and move on.

Please explain in detail how to install this application manually. Your previous explanation was to vague. The demo works, but the production version appears questionable.

Please send detail installation details/steps,

Can you please send me manual installation steps. Installer not work. I am pressed for time. And do not have the time to figure out why the installer is not working. Need to get this installed ASAP! Urgent.

Please check the Documentation folder in the main downloaded file. There are 4 manual PDF files. 1) Eduo Developer Manual.pdf 2) Eduo Parent’s Manual.pdf 3) Eduo Students Manual.pdf 4) Eduo Teachers Manual.pdf

if need more please email us support@codervex.com

Unfortunately I can’t share cPanel details.

Please see attached screenshot.

It gets to the point where the installer attempts to create the database tables, but nothing happens. It just stops there. When I check the database, nothing has been created.

If you can provide manual installation steps, I can manually run SQL scripts and modify other files. Please give this request a high priority.

Please see attached screenshot.

So far I have not rated this application. I hope I will be able to give it a good rating. Unfortunately I have not been able to get it installed. I only have one more day to get this installed before I must give up and move on.

Please explain in detail how to install this application manually. Your previous explanation (and the accompanying documentation) is too vague.

Is it possible to implement the student exam interface to be secured such that no right clicking, copying, snapshots, navigating away and use of camera (if possible) with strict measures to ensure that students do not use AI to solve exam questions.

Thanks for advice. we will add in script.

How soon an this be added?

Please sir. Check your website as it is down for now. Kindly fix it sir.

Having issues installing it’s not accepting purchase code “Purchase Code Verification Failed”

please enter buyer name as you envato username “savagewhite”.

Live preview not working, is it still supported?

it still working please check again here https://eduo.codervex.com/login
yes it have 6 month support on features.
Thanks

Live preview is not working

now working ! check here https://eduo.codervex.com
it was our SSL issue.

does this portal have reports? for printing students, payment reports, staff reports, and other general reports.

I will love to know if you can add Mark Distribution feature just like you added in your Result Management System software?

Thank you for advice. we will do soon.

Do you have option of recording students attendance?

Hello, Do yo offer special price for this script for non-profit organizations?

yes we can less 15% on base price only for you. Thanks

Hello, please do you offer student price, i will love to work on a script like this customize and add more functions but i can’t afford this price.

Regards

Hello, please email us support@zwebtheme.com with full details like what function want to add.

Thanks

Send confirmation link and email activation not working.

please screenshot

You guys not sending email verification to any one after signup

Here is student signup code

function saveStudent()
   {
           $this->load->library('form_validation');
           $this->form_validation->set_rules('class_name','Class','trim|required|is_natural_no_zero');
           $this->form_validation->set_rules('department','Department','trim|required|is_natural_no_zero');
           $this->form_validation->set_rules('year','Year','trim|required|is_natural_no_zero');
$role       = $this->security->xss_clean($this->input->post('role'));
        $name       = $this->security->xss_clean($this->input->post('name'));
        $email      = $this->security->xss_clean($this->input->post('email'));
        $password   = $this->input->post('password');
        $mobile     = $this->security->xss_clean($this->input->post('mobile'));
        $class      = $this->security->xss_clean($this->input->post('class_name'));
        $department = $this->security->xss_clean($this->input->post('department'));
        $year       = $this->security->xss_clean($this->input->post('year'));
        $roll       = $this->security->xss_clean($this->input->post('roll'));
if($this->form_validation->run() == FALSE){
    $data['role_id']      = $role;
    $data['name']         = $name;
    $data['email']        = $email;
    $data['password']     = $password;
    $data['mobile']       = $mobile;
    $data['class']        = $class;
    $data['department']   = $department;
    $data['year']         = $year;
}else{
$account_info = array(
    'email'      =>$email,
    'password'   =>getHashedPassword($password), 
    'roleId'     =>$role, 
    'name'       => $name,
    'mobile'     =>$mobile, 
    'createdDtm' =>date('Y-m-d H:i:s')
);
$students_info = array(
    'roll'       => $roll, 
    'year'       => $year, 
    'class'      =>$class,
    'department' =>$department
);
$result = $this->user_model->addNewStudents($account_info, $students_info);
$message_success = getlang('student_registration_successfully');
$message_error = getlang('student_registration_failed');
if($result > 0){
}else{
    $this->session->set_flashdata('error', $message_error);
}
$this->session->set_flashdata('success', $message_success);
redirect('signup');
}
}

Yes we didn’t it for students, teachers & parents because after sign-up administrator be verify this information. so no need email verification the step for any school. now if you need for your institute please customization the script.

Thanks

Hi the app is good, I can pay more for it but i need some personal features added. Is it Possible?

yes we can add/remove any features with customization cost. could you tel us about your custom features ?

Thanks

Hi,

I have seen your current system and I would like to enhance the system to a business level that I am the main administrator for the schools.

I.e, I can add schools as my business portfolio and manage their subscriptions, the rest to remain as it is with few improvements.

Please share the cost as I plan this as my first phase , then I would move to phase two where as I would inquire applications both for android and apk.

Best regards.

Avin Ngoo.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey