cicool icon indicating copy to clipboard operation
cicool copied to clipboard

Issue mising up method when install

Open ridwanskaterock opened this issue 1 year ago • 8 comments

in system libraries have error in PHP 8 in codeigniter but i have make check and change

this file system/libraries/Migration.php line 291

from this

elseif ( ! is_callable(array($class, $method)))
			{
				$this->_error_string = sprintf($this->lang->line('migration_missing_'.$method.'_method'), $class);
				return FALSE;
			}

to this

	elseif ( ! method_exists($class, $method))
			{
				$this->_error_string = sprintf($this->lang->line('migration_missing_'.$method.'_method'), $class);
				return FALSE;
			}

ridwanskaterock avatar Nov 01 '23 15:11 ridwanskaterock

That worked! I'm in using it.

Not related but since I have your ear.. How do I whitelable the solution? And remove all the blog/user/etc API pre-built?

I only want to show my custom solution needs - nothing more.

cmisak avatar Nov 02 '23 15:11 cmisak

Also "Like" can't find anything. If is hit the API with equals finds what I'm looking for exactly. But can't use part of the word and %%LIKE%% via the api

cmisak avatar Nov 02 '23 18:11 cmisak

image

vs

image

Adjust this image

Remove these image

cmisak avatar Nov 06 '23 14:11 cmisak

Also I run into a lot of menu areas that terminate here or (similiar path same 404)

image

cmisak avatar Nov 06 '23 14:11 cmisak

for forbidden page that's home page or ? you can change small icon on asset/img/icon-small.png

On Mon, Nov 6, 2023 at 9:43 AM cmisak @.***> wrote:

Also I run into a lot of menu areas that terminate here or (similiar path same 404)

[image: image] https://user-images.githubusercontent.com/13523555/280746877-86fc29e2-97c9-4720-b266-6816738e6ce3.png

— Reply to this email directly, view it on GitHub https://github.com/ridwanskaterock/cicool/issues/556#issuecomment-1794986689, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACGXJLK2RXKRCETOVMAW56DYDDZPNAVCNFSM6AAAAAA6ZON22KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTOOJUHE4DMNRYHE . You are receiving this because you authored the thread.Message ID: @.***>

--

Muhamad Ridwan Software Engineer | Cicool Engine m: +62 812 1310 9812 e: @.*** Bogor West Java - Indonesia

ridwanskaterock avatar Nov 06 '23 14:11 ridwanskaterock

How do I whitelabel the rest of the tool? And remove the default api endpoints?

cmisak avatar Nov 09 '23 16:11 cmisak

that's use https://apidocjs.com/, if you need custom or make your own doc you can read this

https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail Bebas virus.www.avast.com https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Thu, Nov 9, 2023 at 11:48 AM cmisak @.***> wrote:

How do I whitelabel the rest of the tool? And remove the default api endpoints?

— Reply to this email directly, view it on GitHub https://github.com/ridwanskaterock/cicool/issues/556#issuecomment-1804189417, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACGXJLMFX76KXG7JKHR2NK3YDUCM7AVCNFSM6AAAAAA6ZON22KVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMBUGE4DSNBRG4 . You are receiving this because you authored the thread.Message ID: @.***>

--

Muhamad Ridwan Software Engineer | Cicool Engine m: +62 812 1310 9812 e: @.*** Bogor West Java - Indonesia

ridwanskaterock avatar Nov 10 '23 06:11 ridwanskaterock

and if you need change existing doc you can change on cicoo/apidoc/api_data.js

ridwanskaterock avatar Nov 10 '23 06:11 ridwanskaterock