Search Results
|
Post |
Author |
Forum |
Replies |
Views |
Posted
[asc]
|
|
|
Thread: Best way to project, plan and structure an app with CI
Post: RE: Best way to project, plan and structure an app...
Hi, usually I start with weak (simple) entities from the database, creating its models and domain classes.
Then I start creating controllers with empty methods (future implementation) to build like a... |
|
fmertins |
Best Practices
|
9 |
6,101 |
08-15-2019, 05:50 AM |
|
|
Thread: The most used Design Patterns with a CI project?
Post: The most used Design Patterns with a CI project?
Hello everyone,
I wonder what are the most used OO Design Patterns you guys use along with your CI projects?
I'm asking this because sometimes I kind of end up writing heavy controllers with a lot o... |
|
fmertins |
Lounge
|
1 |
1,507 |
08-12-2019, 11:38 AM |
|
|
Thread: How often do you use the backup() method of the database drivers?
Post: RE: How often do you use the backup() method of th...
I'm on the team of devs that use mysqldump :-) |
|
fmertins |
CodeIgniter 4 Development
|
33 |
27,450 |
02-15-2019, 09:05 AM |
|
|
Thread: CodeIgniter 4.0.0-alpha.3 released :)
Post: RE: CodeIgniter 4.0.0-alpha.3 released :)
|
fmertins |
News & Discussion
|
20 |
22,024 |
12-03-2018, 12:43 PM |
|
|
Thread: CodeIgniter 4.0.0-alpha.1 released
Post: RE: CodeIgniter 4.0.0-alpha.1 released
Well done, I'll also take a look on it. |
|
fmertins |
News & Discussion
|
29 |
40,110 |
10-01-2018, 10:11 AM |
|
|
Thread: Different URI segments because subfolder?
Post: RE: Different URI segments because subfolder?
Hi there, I'm sorry to inform that in fact didn't work, because only some URLs were OK, not all. Something about when I get only the root URL (only index.php) versus when I get a URL with segments.
I... |
|
fmertins |
Issues
|
10 |
7,701 |
07-14-2017, 12:13 PM |
|
|
Thread: Different URI segments because subfolder?
Post: RE: Different URI segments because subfolder?
And the sentence of the day goes to...
Quote:The default setting of 'AUTO' works for most servers.
Well, it seems not to this server... :@ :P :s
Now it works, I had to change in config/config.p... |
|
fmertins |
Issues
|
10 |
7,701 |
07-14-2017, 06:21 AM |
|
|
Thread: Different URI segments because subfolder?
Post: RE: Different URI segments because subfolder?
(07-14-2017, 03:53 AM)salain Wrote: Did you set the bases_url in your config file to include your subfolder ?
Code:$config['base_url']= 'http://xyz.hospedagemdesites.ws/HOMOLOGACAO/';
Good mor... |
|
fmertins |
Issues
|
10 |
7,701 |
07-14-2017, 05:18 AM |
|
|
Thread: Different URI segments because subfolder?
Post: RE: $this->uri->segment(1) with subfolder
(07-13-2017, 02:34 PM)InsiteFX Wrote: Look in the CodeIgniter Users Guide - URI Class - segment
Hi, thank you, but I already did this, it was one of my first readings... :-) |
|
fmertins |
Issues
|
10 |
7,701 |
07-13-2017, 02:52 PM |
|
|
Thread: Different URI segments because subfolder?
Post: RE: $this->uri->segment(1) with subfolder
OK I have a better comparison now.
It's the same site, but with two environments: production and testing. I just separate the testing environment cloning the application and system folders, the front... |
|
fmertins |
Issues
|
10 |
7,701 |
07-13-2017, 02:31 PM |
|
|
Thread: Different URI segments because subfolder?
Post: RE: $this->uri->segment(1) with subfolder
I'm sorry, but I have been trying to find the bug and googling and comparing versions both of CI code and my code for ~3 hours and I have no idea whats going on :-( Very stuck :-(
I'm afraid all the ... |
|
fmertins |
Issues
|
10 |
7,701 |
07-13-2017, 01:49 PM |
|
|
Thread: Different URI segments because subfolder?
Post: Different URI segments because subfolder?
Hi, I'm using CI 3.0.6 with PHP 7.0.x and my URL is:
Code:http://xyz.hospedagemdesites.ws/homologacao/index.php
The "/homologacao" is a subfolder. When doing this:
PHP Code:$this->uri->seg... |
|
fmertins |
Issues
|
10 |
7,701 |
07-13-2017, 12:12 PM |
|
|
Thread: How much is too much session data?
Post: RE: How much is too much session data?
Hi Paul, I use database sessions since a few years, with MySQL, it's working 100% fine and fast.
I use a mediumblob datatype for the data column and my application saves a lot of data, usually my own... |
|
fmertins |
Best Practices
|
12 |
12,447 |
07-07-2017, 10:18 AM |
|
|
Thread: CodeIgniter 3.1.4 released
Post: RE: CodeIgniter 3.1.4 released
Thank you and congratulations, CI is very very useful. |
|
fmertins |
News & Discussion
|
37 |
71,199 |
03-23-2017, 05:04 AM |
|
|
Thread: Database session table - IDs
Post: RE: Database session table - IDs
(03-21-2017, 03:09 PM)Narf Wrote: Also, 1MB of session data?!
Hi there, new day, fresh head... :-)
I was doing this:
Code:$this->CI->session->set_userdata('paginacao', $this);
In ... |
|
fmertins |
Issues
|
2 |
2,372 |
03-22-2017, 06:06 AM |
|
|
Thread: Session:transient error
Post: RE: Session:transient error
Hi there, are you using blob or mediumblob for the "data" column? Please post your "desc" session table. |
|
fmertins |
Issues
|
7 |
4,679 |
03-21-2017, 01:46 PM |
|
|
Thread: Database session table - IDs
Post: Database session table - IDs
Hi folks, I'm using CI 3.0.6 with database session. I got these records:
[Image: http://www.dgt.inf.br/print.png]
I'm wondering here... Why having 3 records with the same IP and timestamp, but diffe... |
|
fmertins |
Issues
|
2 |
2,372 |
03-21-2017, 01:36 PM |
|
|
Thread: Confused about variables
Post: RE: Confused about variables
Hi friends,
By the way, how do you "control" or document your view variables? Example: at view code, I have a $foo var because it was injected by CI at controller, cool, but my IDE like Eclipse d... |
|
fmertins |
General Help
|
15 |
11,314 |
07-29-2016, 01:14 PM |
|
|
Thread: Phar support?
Post: RE: Phar support?
About 2011 was my first attempt to make this :-)
http://forum.codeigniter.com/archive/ind...42841.html |
|
fmertins |
CodeIgniter 4 Feature Requests
|
2 |
2,760 |
04-13-2016, 12:40 PM |
|
|
Thread: Phar support?
Post: Phar support?
Hi there, this is Fernando from Brazil.
I've just searched for "phar" at CodeIgniter 4 forum and nothing found, GitHub issues neither, so wondering here... CI4 will have Phar support?
Example: I hav... |
|
fmertins |
CodeIgniter 4 Feature Requests
|
2 |
2,760 |
04-13-2016, 12:37 PM |