Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Help needed for CI v3
Post: RE: Help needed for CI v3

A bit too late for me to see this, but I am also interested into helping to maintain the CI3 project. :D I'm gxgpet on github. Edit: Btw, we must also go through a process of changing stuff that's n...
52,018 Views
26 Replies
12-17-2020, 02:23 AM
gxgpet
    Thread: FireSessions - making the CI3 Session lib available as a standalone component
Post: RE: FireSessions - making the CI3 Session lib avai...

That's really nice! :) I was thinking to start a DB "componentization" attempt as well. But I was also thinking to rewrite almost the entire DB lib/structure. As from the point of view of FireSe...
2,761 Views
2 Replies
08-02-2017, 11:14 PM
gxgpet
    Thread: FireSessions - making the CI3 Session lib available as a standalone component
Post: FireSessions - making the CI3 Session lib availabl...

Hello, guys! This is my first attempt to make one of the greatest CI3 libs available as a standalone, separate & installable component: the Session library, available under the name of FireSessions...
2,761 Views
2 Replies
08-02-2017, 03:05 PM
gxgpet
    Thread: Introducing Phassets, an universal Web assets manager
Post: Introducing Phassets, an universal Web assets mana...

Hello, CI devs! :) I would like to introduce to you Phassets, a Web assets management library. Point out the sources of your .js, .css (and much more soon!), and this lib will minify them, and d...
1,887 Views
0 Replies
07-05-2017, 10:44 AM
gxgpet
    Thread: Which browser do you guys recommend?
Post: RE: Which browser do you guys recommend?

Chrome here.
129,384 Views
97 Replies
04-24-2017, 01:05 PM
gxgpet
    Thread: CodeIgniter 3.1.1 Released
Post: RE: CodeIgniter 3.1.1 Released

The Session has been changed (https://github.com/bcit-ci/CodeIgniter/commit/6c6ee1a1e73b3f8a93ca031107bec35e56272a0a) (including docs), making id from ci_sessions be varchar(128). Shouldn't be that me...
52,475 Views
19 Replies
10-23-2016, 04:59 AM
gxgpet
    Thread: Accessing Image On CSS with Codeigniter
Post: RE: Accessing Image On CSS with Codeigniter

Hi wolfgang1983, ciadmin is trying to tell you that you should access the CSS file by pointing out directly the path; so, accessing the CSS file should work this way: Code: -- background: url('./a...
10,721 Views
6 Replies
07-09-2016, 01:37 AM
gxgpet
    Thread: Parser and if statement
Post: RE: Parser and if statement

I don't see why it shouldn't work. Are you sure the field is called active? In my opinion, you shouldn't use the parsing solution. Instead, send the data to your view and iterate it from there: ...
21,572 Views
19 Replies
04-15-2016, 09:04 AM
gxgpet
    Thread: Parser and if statement
Post: RE: Parser and if statement

Change your controller code as this: PHP Code: -- $query = $this->users_mod->allProducts(); foreach($query as &$item) { if($item['active'] == 1) { $item['active'] = 'Active'; } ...
21,572 Views
19 Replies
04-15-2016, 08:46 AM
gxgpet
    Thread: Parser and if statement
Post: RE: Parser and if statement

Hello!  Unfortunately, this is not possible. As you can see on Template Parsing library (http://www.codeigniter.com/user_guide/libraries/parser.html): Quote: -- The Template Parser Class is not a...
21,572 Views
19 Replies
04-15-2016, 08:32 AM
gxgpet
    Thread: Improvement of lang() function
Post: RE: Improvement of lang() function

Narf Wrote: (04-15-2016, 03:36 AM) -- gxgpet Wrote: (04-15-2016, 02:03 AM) -- Narf Wrote: (04-15-2016, 12:53 AM) -- Code: -- // lang file: $lang['greeting'] = "Hello, %s"; // Usage echo spr...
6,491 Views
4 Replies
04-15-2016, 04:00 AM
gxgpet
    Thread: Improvement of lang() function
Post: RE: Improvement of lang() function

Narf Wrote: (04-15-2016, 12:53 AM) -- Code: -- // lang file: $lang['greeting'] = "Hello, %s"; // Usage echo sprintf($this->lang->line('greeting'), "John Doe"); -- We don't add features th...
6,491 Views
4 Replies
04-15-2016, 02:03 AM
gxgpet
    Thread: Improvement of lang() function
Post: Improvement of lang() function

Hello! I'm using a modified version of line() function from system/core/Lang.php, which also deals with numeric parameters within lang lines: PHP Code: -- public function line($line, $log_errors =...
6,491 Views
4 Replies
04-14-2016, 01:19 PM
gxgpet
    Thread: Database error 1064
Post: RE: Database error 1064

koficypher Wrote: (04-14-2016, 11:25 AM) -- i added a ci_session table to my database with the code i found in the codeigniter user guide. i then changed the session driver to database and added a fu...
13,224 Views
3 Replies
04-14-2016, 12:40 PM
gxgpet

Theme © iAndrew 2016 - Forum software by © MyBB