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 - SergeTkach - 12-04-2019

[quote pid='369902' dateline='1575445968']
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
[/quote]

Thank you for your answer!
I will try.


RE: Basic App - Free CMS on CodeIgniter 4 - ci_user12345123 - 01-06-2020

Hi,

I keep getting 404 Not Found when I access the /admin on a fresh install. Can you help me? Thanks


RE: Basic App - Free CMS on CodeIgniter 4 - Basic App - 01-06-2020

(01-06-2020, 04:51 AM)ci_user12345123 Wrote: Hi,

I keep getting 404 Not Found when I access the /admin on a fresh install. Can you help me? Thanks

Hello. I think you have a problem with the server setup. Check if you have configured the mod_rewrite module and override the .htaccess file is enabled.


RE: Basic App - Free CMS on CodeIgniter 4 - Basic App - 02-25-2020

Basic App has been updated. This update completes the basic functionality of the system. After bug fixes, versioning of the system will be implemented. This is the official pre-release of the system.

I invite everyone to test the system. Also write your ideas about what you would like to see in the system.

Join us!


RE: Basic App - Free CMS on CodeIgniter 4 - Basic App - 03-04-2020

To make text editing more convenient, the visual editor TinyMCE can now be configured from the admin panel.


RE: Basic App - Free CMS on CodeIgniter 4 - sllieal - 03-20-2020

i had try example.com/admin
and browser return :

The page isn’t redirecting properly

An error occurred during a connection to example.com.

This problem can sometimes be caused by disabling or refusing to accept cookies.

and when i try to reach example.com, site return

Error

Class 'PhpTheme\Html\HtmlHelper' not found

/var/www/main/vendor/basic-app/theme-clean-blog/Theme.php at line 16

9
10 public $baseUrl = '/themes/startbootstrap-clean-blog';
11
12 public function __construct()
13 {
14 parent::__construct();
15
16 $this->head .= HtmlHelper::linkCss($this->baseUrl . '/custom.css');
17 }
18
19 }

what i have done :

baseURL = http://example.com/' or http://example.com'
change time zone
change database
chmod -R 0777 writable

i'm using nginx 1.17.9 with php 7.4.4


---update---

I'd look into PhpTheme\ there is dir html-helper so i change 'PhpTheme\Html\HtmlHelper' > 'PhpTheme\HtmlHelper\HtmlHelper'

and now i face this problem :

Error

Call to undefined method PhpTheme\HtmlHelper\HtmlHelper::linkCss()


RE: Basic App - Free CMS on CodeIgniter 4 - Basic App - 03-21-2020

(03-20-2020, 01:08 PM)sllieal Wrote: I'd look into PhpTheme\ there is dir html-helper so i change 'PhpTheme\Html\HtmlHelper' > 'PhpTheme\HtmlHelper\HtmlHelper'

and now i face this problem :

Error

Call to undefined method PhpTheme\HtmlHelper\HtmlHelper::linkCss()

Thanks. I fixed the error. You need to update the system:
git pull
composer install
or
composer/update


RE: Basic App - Free CMS on CodeIgniter 4 - Codinglander - 03-26-2020

Is there a way for non-composer install ?
Everytime I try to install via composer I will be asked for a Token (Hidden) .... Sad


RE: Basic App - Free CMS on CodeIgniter 4 - Basic App - 03-26-2020

(03-26-2020, 07:41 AM)Codinglander Wrote: Is there a way for non-composer install ?
Everytime I try to install via composer I will be asked for a Token (Hidden) .... Sad

Composer is required to keep the system running. There is no other way to install the system.


RE: Basic App - Free CMS on CodeIgniter 4 - Codinglander - 03-26-2020

(03-26-2020, 07:41 AM)Codinglander Wrote: Is there a way for non-composer install ?
Everytime I try to install via composer I will be asked for a Token (Hidden) .... Sad
In that case I can't use it because I can't install it...  Huh