Code

Discussion on Cicool - Page, Form, Rest API and CRUD Generator

Discussion on Cicool - Page, Form, Rest API and CRUD Generator

Cart 1,169 sales

ridwanskaterocks supports this item

Supported

This author's response time can be up to 2 business days.

805 comments found.

Hi, is this scripts now a modular system with mvc features. Can I create a module for another CI application using the cicool crud application.

Your CI project is HMVC also ?

My question is how do I integrate the hmvc module to another codeigniter project after using your tool to create a modular application. Which of the files will I be exporting

Yes try to export this

cicool/application/core/

cicool/application/libraries/

cicool/application/helpers/*

cicool/config/autoload.php

interested to buy this script would like to know will i able to export my work to integrate to any of my project will i get full source code as output ?

yes for now you can adjust the old project if the old project using codeigniter is very easy to make to cicool. or you can create a table in phpmyadmin and you can make CRUD on the CRUD builder in cicool

Thanks

if you have problem you can send me an email or make ticket on tab support for quick response

Thanks

Hi, thanks so much for the quick response. I have been trying for the past two days but it is not working.

Can you please give me a more complete explanation. As at now, the images are not safe from being directly downloaded by people.

Thank you.

Just a quick question. I know this system cannot directly import existing mysql tables created outside this script, but, can you suggest if I create the same fields under the built-in CRUD form and then, use the included API to copy and store the same data into the new database from the old or current database which I already have. What I want to accomplish is to reuse the same data I already have and find a way to copy it record by record into a newly created table generated by CICOOL script. Thanks. NOTICE: This is not a support question. I just want your best suggestion on how to tackle this idea I have in mind.

yes for tables outside such as non user management you can directly import them on this system and adjust for input on each field.

You cannot copy the old system script to Cicool even if you can you have to make some adjustments

Thanks

Is there any way to protect the folder into which images are saved?

Actualy if you direct access to image folder you will retrive forbidden access like http://prntscr.com/og3p77

but if you want to not allowed access direct upload folder you can use like this

example controller

header(‘Content-Type: image/jpeg’); readfile(‘link/to/protectet/picture.jpg’);

and you add htaccess on upload folder

Order allow, deny Deny from all

Thanks

Hi, thanks so much for the quick response. I have been trying for the past two days but it is not working.

Can you please give me a more complete explanation. As at now, the images are not safe from being directly downloaded by people.

Thank you.

Ok

for example you can try make an function in web controller like


        $file_path = $this->input->get('path');
        $this->helper('file');

        $image_content = read_file($file_path);

        // Image was not found
        if($image_content === FALSE)
        {
            show_error('Image "'.$file_path.'" could not be found.');
            return FALSE;
        }

        // Return the image or output it?
        if($mime_type_or_return === TRUE)
        {
            return $image_content;
        }

        header('Content-Length: '.strlen($image_content)); // sends filesize header
        header('Content-Type: '.$mime_type_or_return); // send mime-type header
        exit($image_content); // reads and outputs the file onto the output buffer
and on view you can call path like this on image element
        <img src="<?= base_url('web/image') . '?path=uploads/blog/image.jpg'" alt="" />

i got this error i can’t fixed

http://localhost/administrator/extension/add file_get_contents(): SSL operation failed with code 1. OpenSSL Error messages: error:00000000:lib(0):func(0):reason(0)

Hello, this is one of the best app i have ever purchased. i

I have two questions.

1. There is a short code to view the form, similarly do we have a option to show the results only to view/modify/delete the form data ? in that way i can have user mange a form data.

2. where can i find custom them to change instantly

3. For data view is showing the entire list of data from all the table in that way it has a horizontal scrolling and do not look good in mobile device. So can i use a class to hide few table so that we see only minimum values and then when i export or print i can get entire data view.

Help much appreciated.

for issue

1. you can use php version 7.0 and 7.1

2. you can change environtment to production on constant in file index.php

3. you can custom for result on view and make diff for date return

$date1 = new DateTime("2007-03-24");
$date2 = new DateTime("2009-06-26");
$interval = $date1->diff($date2);
echo "difference " . $interval->y . " years, " . $interval->m." months, ".$interval->d." days "; 

// shows the total amount of days (not divided into years, months and days like above)
echo "difference " . $interval->days . " days ";

4. for that is not avaiable for now but you can make custom for that

https://forum.codeigniter.com/thread-72604.html https://www.youtube.com/watch?v=bxA6M9LYrPk

Thanks

Thanks lot your support is great and i will recommend all my friends and developers to consider your products….

One last question for now if you can answer.

As you know i created a form for student registration how can i print an ID card with few details like image name etc… only in print view.

what is the function ? how do i call only a user profile to print

Thanks again

You can see that function on

https://cicool.go-moment.com/administrator/user/view/2 for example that’s avaiable object for user detail

path on application/controllers/administrator/user.php

on function view http://prntscr.com/of1aga

this code will retur for user information

Thanks you

mas, di tabel auth_users aku liat ada verificarion_code, pas saya coba registrasi akun baru, tidak ada verifikasi akun yang terjadi. mohon bantuannya mas agar verifikasi akun via email bisa diaktifkan terlebih dahulu saat registrasi. adakah setingan yg harus dirubah? trims

Iya mas untuk fitur itu tidak di build jadi bisa di pakai dengan library aauth

https://emreakay.github.io/CodeIgniter-Aauth/

Do you have option to create 2 cruds from same table?

Yes that’s must change for controller name and views folder name i think, and you must change some code to adjust path for it

Pre-Sale question

You have not set member and admin panel different. so when we add (current user_id) in crud this will not show members listing in admin panel

I am using your script on his laptop Your script is awesome but had you plan to update it? He just lost his access to codecanyon. i will share purchase code once he recover his account. But can you share “yes if update you can make condition if user is admin user_id not updated on edit_save” this code example?

And do you have plans to update this script and fix all bugs related to user_id and more than 1 crud generator and also security? I am much interested in your script.

““yes if update you can make condition if user is admin user_id not updated on edit_save” ” yes for that you just uncheck for this field on crud builder on update like http://prntscr.com/oasz74

yes for current one table can make only one CRUD, i will consider for make this feature for next

Thanks

I am interested in your script. But first tell me 1) do you have relation table feature? 2) do you have user_id base listing?

check next comment. Ignore this one

Try this:

Create “ci_session” folder under /Application/

and change config.ini like this: $config[‘sess_driver’] = ‘files’; $config[‘sess_cookie_name’] = ‘ci_session’; $config[‘sess_expiration’] = 86400; $config[‘sess_save_path’] = APPPATH.’ci_session’; $config[‘sess_match_ip’] = FALSE; $config[‘sess_time_to_update’] = 900; $config[‘sess_regenerate_destroy’] = FALSE;

Yes that’s will store session files in application/ci_session folder

maybe if some user error occurs therefore I will use it as default

hi, a few questions, 1. do u provide free installation? 2. can it have relational/conditional fields in CRUD eg – yes/no and on yes another field is displayed 3. can i use it to create product and sale of product? 4. can i create dashboard in backend to display data from crud?

Hi For free, it can be on our hosting,

for now support for relations

yes you can do it, you can learn and customize the code

yes you can make it in this application include the library chart you just use it

your server?? or ours

Hi, How can I resize/Crop images when images uploading

Hi this upload library using fineuploader you can try to read this doc to crop image

https://docs.fineuploader.com/features/scaling.html

$this->model_product_list->export(‘product_list’, ‘product_list’);

what location model export?

Hi you can see application/core/My_model.php

if you need custom for this function you can overide this function and make copy to application/model/model_product.php

I learned from your script. great thanks

How do I create a table in cicool i see blog already existing in the crud building forms. I want to create my own tables with cicool how do I do that?

Can I use this script to build a crud module and for another codeigniter project. Can it export the modules to the other project

Hi there, I got a message “warning! Error save data” while creating a form and saving it.

The response message: /var/www/html/plink/system/core/Common.php(623): My_Exceptions->show_php_error(2, ‘mkdir(): Permis…’, ’/var/www/html/p…’, 234)

the error message got truncated. Can’t tell what directory have been set to writable permission.

An Error Was Encountered

The action you have requested is not allowed.? Is the sicool broken from the start?

Can i have a refund please !!

Broken from the installation and you want me to play with this in production server you joke right?

The links maybe i say maybe solve the problem but…....

1. Server path exist and is is 777 just for testing so is no perms problem..

2. You send me a link from 2017 with similar problem is not acceptable.

Result

Is a problem from the day you start selling the Script and you don’t have any update to fix it for 2 years really?

Sorry but I do not compromise with this solutions your Script is broken !!

how can I use this in codeigniter

<? php session_name (‘name_of_the_session’); ?>

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