CodeIgniter Forums
Basic App - Free CMS on CodeIgniter 4 - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Addins (https://forum.codeigniter.com/forumdisplay.php?fid=34)
+--- Thread: Basic App - Free CMS on CodeIgniter 4 (/showthread.php?tid=73103)

Pages: 1 2 3 4 5 6 7


RE: Basic App - Free CMS on CodeIgniter 4 - Basic App - 10-23-2019

(10-22-2019, 03:38 PM)sllieal Wrote: I get 

mysqli_sql_exception #1146

Table '"database_name".pages' doesn't exist

SYSTEMPATH/Database/MySQLi/Connection.php at line 329
Code:
322             $this->connID->next_result();
323             if ($res = $this->connID->store_result())
324             {
325                 $res->free();
326             }
327         }
328
329         return $this->connID->query($this->prepQuery($sql));
330     }
331
332     //--------------------------------------------------------------------
333
334     /**
335      * Prep the query
336      *


do you have idea ?

This error means that you did not install the system. You need to apply all migrations. You can find the installation instruction in the README.md file.


RE: Basic App - Free CMS on CodeIgniter 4 - sllieal - 10-23-2019

(10-23-2019, 11:23 AM)Basic App Wrote:
(10-22-2019, 03:38 PM)sllieal Wrote: I get 

mysqli_sql_exception #1146

Table '"database_name".pages' doesn't exist

SYSTEMPATH/Database/MySQLi/Connection.php at line 329
Code:
322             $this->connID->next_result();
323             if ($res = $this->connID->store_result())
324             {
325                 $res->free();
326             }
327         }
328
329         return $this->connID->query($this->prepQuery($sql));
330     }
331
332     //--------------------------------------------------------------------
333
334     /**
335      * Prep the query
336      *


do you have idea ?

This error means that you did not install the system. You need to apply all migrations. You can find the installation instruction in the README.md file.

Yeah i get it, if i install on local then i do backup and restore database on other host. Can it run?



RE: Basic App - Free CMS on CodeIgniter 4 - Basic App - 10-23-2019

(10-23-2019, 11:57 AM)sllieal Wrote:
(10-23-2019, 11:23 AM)Basic App Wrote:
(10-22-2019, 03:38 PM)sllieal Wrote: I get 

mysqli_sql_exception #1146

Table '"database_name".pages' doesn't exist

SYSTEMPATH/Database/MySQLi/Connection.php at line 329
Code:
322             $this->connID->next_result();
323             if ($res = $this->connID->store_result())
324             {
325                 $res->free();
326             }
327         }
328
329         return $this->connID->query($this->prepQuery($sql));
330     }
331
332     //--------------------------------------------------------------------
333
334     /**
335      * Prep the query
336      *


do you have idea ?

This error means that you did not install the system. You need to apply all migrations. You can find the installation instruction in the README.md file.

Yeah i get it, if i install on local then i do backup and restore database on other host. Can it run?

Yes, you can do it.


RE: Basic App - Free CMS on CodeIgniter 4 - Basic App - 10-25-2019

I have some good news!

The main work on the system code is completed! System code refactoring has been done several times. We invite you to test the system.

What's new:

* Stable version of the system core modules (pre-release).
* Basic App Minimal (Basic App starter application without additional modules).
* Clean theme based on Bootstrap 4 added.
* Manage site admins from a configuration file.


RE: Basic App - Free CMS on CodeIgniter 4 - Basic App - 10-31-2019

I added an online demo version of the system.
http://demo.basic-app.com
http://demo.basic-app.com/admin
login: admin
password: admin


RE: Basic App - Free CMS on CodeIgniter 4 - Kesstryl - 11-02-2019

This seems cool but how do you view the site when you are logged in without needing to log out so you can see your changes on the live site? All I'm seeing are links to edit things in the admin panel, I can't figure out how to view the actual pages without logging out.


RE: Basic App - Free CMS on CodeIgniter 4 - Basic App - 11-19-2019

(11-02-2019, 07:20 AM)Kesstryl Wrote: This seems cool but how do you view the site when you are logged in without needing to log out so you can see your changes on the live site?  All I'm seeing are links to edit things in the admin panel, I can't figure out how to view the actual pages without logging out.

Other users may have deleted something important. I removed the ability to disable the index page. Also, now all data is reset to defaults every hour.


RE: Basic App - Free CMS on CodeIgniter 4 - Basic App - 11-26-2019

Hi All! I have some good news for you! The Basic App has a new module for managing site users. Together with him, user registration, editing a user profile, password recovery by email, verification of email addresses appeared in the system. Everything is done as simple as possible, but you can expand any classes of the system in your application, and replace the templates of any system pages to get more functionality.


RE: Basic App - Free CMS on CodeIgniter 4 - SergeTkach - 12-03-2019

Excuse me for misunderstanding. I did not work with composer... Blush

I expected to see start CMS-files in app/Controllers/
But I see that it is empty. Found them in the directory vendor/basic-app/admin/Controllers/

Where should I put my controllers?

Perhaps there is some kind of instruction for further development of the application based on BasicApp?

Thank you!


RE: Basic App - Free CMS on CodeIgniter 4 - Basic App - 12-04-2019

(12-03-2019, 01:05 AM)SergeTkach Wrote: Excuse me for misunderstanding. I did not work with composer... Blush

I expected to see start CMS-files in app/Controllers/
But I see that it is empty. Found them in the directory vendor/basic-app/admin/Controllers/

Where should I put my controllers?

Perhaps there is some kind of instruction for further development of the application based on BasicApp?

Thank you!

Basic App is built on the CodeIgniter 4 framework, first of all you need to follow its instructions.

https://codeigniter4.github.io/CodeIgniter4/general/modules.html