Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: MySQL - Issue with SELECT & GROUP BY [SOLVED]
Post: RE: MySQL - Issue with SELECT & GROUP BY [SOLVED]

Use ANY_VALUE(tags.table_name) for all tags table in your select query.
21,305 Views
8 Replies
06-07-2021, 08:32 PM
inumaru
    Thread: Remove method and ID from URL
Post: RE: Remove method and ID from URL

I think it is posible to write the route as PHP Code: -- $routes->add('/(:any)', 'Frontend\Main::$1'); -- And dont forget to edit your main function too.
2,756 Views
3 Replies
07-10-2020, 10:32 AM
inumaru
    Thread: Live search with ajax
Post: RE: Live search with ajax

well for the style, just style it using css or inline style if you want(:D). From your picture I guest it use as the dropdown list for the suggestion. So just give it a class or inspect it to easier...
5,977 Views
5 Replies
07-05-2020, 10:27 AM
inumaru
    Thread: Table Custom
Post: RE: Table Custom

Your closing tag is wrong maybe try to correct it. you type Code: -- -- should be Code: -- -- and try to close all the form tag correctly, if the form is inside it should be okay.
2,672 Views
4 Replies
07-05-2020, 08:07 AM
inumaru
    Thread: Live search with ajax
Post: RE: Live search with ajax

There are many ways to do that, what did you use normally? You could just modified it a little for ci4 or maybe no need to modify it and just use it, depend on the code. maybe share some example of ...
5,977 Views
5 Replies
07-05-2020, 08:04 AM
inumaru
    Thread: Problem with redirect-> to
Post: RE: Problem with redirect-> to

Try to return in your my_method_a() function. PHP Code: -- return $this->_redirect_user(); --
1,784 Views
2 Replies
07-04-2020, 01:39 AM
inumaru
    Thread: help with setting up routes rules
Post: RE: help with setting up routes rules

I tried it, but both are working in my case. any other information you could provide? I also test with: PHP Code: -- $routes->group('admin', function ($routes) {     $routes->add('/', 'Admin\...
1,238 Views
1 Replies
07-03-2020, 10:05 AM
inumaru
    Thread: Problem with routes if Controller is in a subfolder
Post: RE: Problem with routes if Controller is in a subf...

Sorry I just able to go online and check this again. I have tried to replicate your folder structure and all your route and controller syntax, and I found something interesting. PHP ...
11,005 Views
11 Replies
07-03-2020, 09:42 AM
inumaru
    Thread: Redirect Help
Post: RE: Redirect Help

Oh right, as tgix say. I set my base_url to be dynamic so i don't need to change my .htaccess file. app/Config/Constants.php PHP Code: -- $protocol= (isset($_SERVER['HTTPS']) ? "https://" : "http:/...
2,227 Views
3 Replies
07-01-2020, 01:18 AM
inumaru
    Thread: Problem with routes if Controller is in a subfolder
Post: RE: Problem with routes if Controller is in a subf...

Do you have a folder in your public by the same name "admin"? I got an 403 error last time because of this. or maybe how are the contents of your routes file and Translations file? I use sub-fold...
11,005 Views
11 Replies
07-01-2020, 01:10 AM
inumaru
    Thread: Redirect Help
Post: RE: Redirect Help

So, is your problem is when you submit your form it got you 404? And did your submitted form data got in into your database? Maybe try change the route into: PHP Code: -- $routes->get('/', 'Page...
2,227 Views
3 Replies
06-30-2020, 01:24 PM
inumaru
    Thread: self hosted form submit sentapi.com - special request for help
Post: RE: self hosted form submit sentapi.com - special ...

from the folder structure I'm sure that is CI3 and not CI4. And about your problem, It will need more code tracing, so I cannot help much with just the response page. Does the developer give some d...
2,016 Views
3 Replies
06-30-2020, 01:15 PM
inumaru
    Thread: Problem with routes if Controller is in a subfolder
Post: RE: Problem with routes if Controller is in a subf...

By not working, what is it the error that you got? is it exception or 404 or what? Do you have a folder in your public by the same name "admin"? if you have it try to rename it into something else, ...
11,005 Views
11 Replies
06-30-2020, 12:57 PM
inumaru
    Thread: Image Manipulation - Convert
Post: RE: Image Manipulation - Convert

jreklund Wrote: (06-22-2020, 10:27 AM) -- Hi, this aren't possible at this time with the current stable version. The resource are only available if you do some image manipulation. It will work wit...
3,688 Views
3 Replies
06-24-2020, 11:39 PM
inumaru
    Thread: 403 in Controller Subdirectory access
Post: RE: 403 in Controller Subdirectory access

schertt Wrote: (06-24-2020, 10:15 AM) -- ... The other thing I'll say is that with 403 errors, you should pretty much go straight to whatever is hosting the application itself, e.g. Apache, Nginx,...
9,301 Views
9 Replies
06-24-2020, 11:09 AM
inumaru
    Thread: 403 in Controller Subdirectory access
Post: RE: 403 in Controller Subdirectory access

MatheusCastro Wrote: (06-24-2020, 05:53 AM) -- In this type of structure I usually use something like this: Taking advantage of the default controller As Home and the default method index. Cod...
9,301 Views
9 Replies
06-24-2020, 09:00 AM
inumaru
    Thread: 403 in Controller Subdirectory access
Post: RE: 403 in Controller Subdirectory access

InsiteFX Wrote: (06-24-2020, 04:27 AM) -- You also need to pass the sub-folder name. Code: -- http://mydevsite.vhost/admin/admin/home -- You need also to pass along the sub-folder name in the u...
9,301 Views
9 Replies
06-24-2020, 08:29 AM
inumaru
    Thread: 403 in Controller Subdirectory access
Post: 403 in Controller Subdirectory access

This is some of my syntax in Routes file: PHP Code: -- $routes->add("admin", "Admin/Login::index"); $routes->add("login", "Admin/Login::index"); $routes->add("admin/home", "Admin/Admin::index");...
9,301 Views
9 Replies
06-23-2020, 01:16 PM
inumaru
    Thread: Codeigniter 4 array the null key is not passed
Post: RE: Codeigniter 4 array the null key is not passed

I tried your code and it is working just fine, the null value got displayed in my controller as in my model. my php version is still 7.3.1 but I just install CI 4 so it is the latest 4.0.3 Did you...
2,400 Views
2 Replies
06-23-2020, 12:55 PM
inumaru
    Thread: Group routing
Post: RE: Group routing

Folder structure will be the same as the second parameter, like this in your case; Code: -- app/Controllers/Admin/Users.php app/Controllers/Admin/Blog.php -- as for the controller file i...
1,867 Views
2 Replies
06-23-2020, 12:19 PM
inumaru

Theme © iAndrew 2016 - Forum software by © MyBB