Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: How to organize applications ?
Post: RE: How to organize applications ?

so the modules are in the root of the framework. And as would be the structure of CI, I refer to the directories controllers, models, view and others. Would they stay within each module ?
25,659 Views
20 Replies
12-17-2019, 11:29 AM
jocm.aguiar
    Thread: How to organize applications ?
Post: How to organize applications ?

What would be recommended for developing a complex application, would everything be within the framework or would it use the framework for each subapplication ?
25,659 Views
20 Replies
12-15-2019, 06:25 AM
jocm.aguiar
    Thread: An Error Was Encountered - Invalid DB driver ?
Post: RE: An Error Was Encountered - Invalid DB driver ?

jreklund Wrote: (11-20-2019, 11:15 AM) -- Make an empty file containing only the following, looks like you haven't installed mysqli. Or you haven't activated it in your php.ini file. Code: -- --...
7,166 Views
3 Replies
11-21-2019, 08:28 AM
jocm.aguiar
    Thread: An Error Was Encountered - Invalid DB driver ?
Post: An Error Was Encountered - Invalid DB driver ?

Hi, I believe I have made all the necessary settings to work with mysql database in CI3 3.1.11 but I come across invalid drive, the server I use is Apache2, Mysql-server5.7.28, Php7.3 below follows m...
7,166 Views
3 Replies
11-19-2019, 11:17 PM
jocm.aguiar
    Thread: Problem: 404 Not Found - Subfolder
Post: RE: Problem: 404 Not Found - Subfolder

Hi guys. I've been able to resolve the issue. Just point the path of your server in apache2.conf and give full permission as the example: AllowOverride All
1,731 Views
1 Replies
10-09-2017, 11:05 AM
jocm.aguiar
    Thread: Problem: 404 Not Found - Subfolder
Post: Problem: 404 Not Found - Subfolder

Hi guys. I came across the following error: 404 Not Found The requested URL / controller / subcontroller was not found on this server. Apache / 2.4.25 (Debian) Server at server.my Port 80 F...
1,731 Views
1 Replies
10-09-2017, 10:37 AM
jocm.aguiar
    Thread: Custom Helper Problem ?
Post: RE: Custom Helper Problem ?

InsiteFX Wrote: (07-14-2016, 10:50 AM) -- You are returning this check($ws_safe_email); as an array $data Another thing I just noticed is that your assigning the result obj from the query to the s...
9,412 Views
9 Replies
07-14-2016, 01:03 PM
jocm.aguiar
    Thread: Custom Helper Problem ?
Post: RE: Custom Helper Problem ?

InsiteFX Wrote: (07-12-2016, 07:06 PM) -- It looks like it may be in your check() method, maybe its trying to use a string and it's looking for an array? -- I rectified the code and can get the resu...
9,412 Views
9 Replies
07-14-2016, 10:21 AM
jocm.aguiar
    Thread: Custom Helper Problem ?
Post: RE: Custom Helper Problem ?

mwhitney Wrote: (07-12-2016, 02:23 PM) -- jocm.aguiar Wrote: (07-12-2016, 01:23 PM) -- I managed to fix the code, thanks. But introduces a new error: A PHP Error was encountered Severity: Notice...
9,412 Views
9 Replies
07-12-2016, 06:53 PM
jocm.aguiar
    Thread: Custom Helper Problem ?
Post: RE: Custom Helper Problem ?

InsiteFX Wrote: (07-12-2016, 04:42 AM) -- $ci->session->set_userdata($ws_session_data); -- I managed to fix the code, thanks. But introduces a new error: A PHP Error was encountered Severity: N...
9,412 Views
9 Replies
07-12-2016, 01:23 PM
jocm.aguiar
    Thread: Custom Helper Problem ?
Post: Custom Helper Problem ?

Hi guys. Who can help me solve a problem? I made a helper in the CI3 standard but I displays the following error message: An uncaught Exception was encountered Type: Error Message: Using $this ...
9,412 Views
9 Replies
07-11-2016, 06:45 PM
jocm.aguiar
    Thread: Problem: Join repeats records?
Post: RE: Problem: Join repeats records?

InsiteFX Wrote: (06-26-2016, 02:36 PM) -- Your sql must be grabbing more then one database record. -- The (t.a) has four lines that relate to the other four lines (t.b) The query is realized by mea...
4,684 Views
4 Replies
06-27-2016, 08:25 AM
jocm.aguiar
    Thread: Problem: Join repeats records?
Post: RE: Problem: Join repeats records?

InsiteFX Wrote: (06-25-2016, 02:27 AM) -- You only need to load the model once this is usually done in the controller constructor. Your loading it multiple times in your controller, queries are sa...
4,684 Views
4 Replies
06-26-2016, 11:59 AM
jocm.aguiar
    Thread: Problem: Join repeats records?
Post: Problem: Join repeats records?

Controller file: public function operadora($elev_opename_id) { // loads the class file     $this->load->model('tabelas/Elevsaude_model');     // Run the loaded class method     $dataone['plansop...
4,684 Views
4 Replies
06-24-2016, 03:15 PM
jocm.aguiar
    Thread: Error in the query database ?
Post: RE: Error in the query database ?

ivantcholakov Wrote: (06-02-2016, 02:07 PM) -- Connect to database. http://www.codeigniter.com/user_guide/database/connecting.html#automatically-connecting https://github.com/bcit-ci/CodeIgniter/blo...
4,178 Views
3 Replies
06-02-2016, 02:21 PM
jocm.aguiar
    Thread: Error in the query database ?
Post: Error in the query database ?

Hi guys. I'm running into me with the following error to list database data: Link: http://build.elevsaude.com/ (http://build.elevsaude.com/) Would anyone help me? For I see no error in the code bel...
4,178 Views
3 Replies
06-02-2016, 01:43 PM
jocm.aguiar
    Thread: DB » Multiple connections CI3 ?
Post: RE: DB » Multiple connections CI3 ?

I made the settings as and did not work ?
7,843 Views
7 Replies
04-21-2016, 04:58 AM
jocm.aguiar
    Thread: DB » Multiple connections CI3 ?
Post: RE: DB » Multiple connections CI3 ?

dmyers Wrote: (04-18-2016, 12:49 PM) -- $DB1 = $this->load->database('group_one', TRUE); $DB2 = $this->load->database('group_two', TRUE); -- I will detail my nonfunctional code? » File Setup » data...
7,843 Views
7 Replies
04-19-2016, 05:42 PM
jocm.aguiar
    Thread: DB » Multiple connections CI3 ?
Post: RE: DB » Multiple connections CI3 ?

spjonez Wrote: (04-14-2016, 04:11 PM) -- Connecting to Multiple Databases: https://codeigniter.com/user_guide/database/connecting.html If you're autoloading you should specify the default and load...
7,843 Views
7 Replies
04-18-2016, 11:54 AM
jocm.aguiar
    Thread: DB » Multiple connections CI3 ?
Post: DB » Multiple connections CI3 ?

Hi guys. You can easily set up a connection to my database by database.php file. The problem is that when I try to configure more than one connection my application crashes. How do I configure mult...
7,843 Views
7 Replies
04-13-2016, 10:13 AM
jocm.aguiar

Theme © iAndrew 2016 - Forum software by © MyBB