Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: CodeIgniter.com - Report problems!
Post: RE: CodeIgniter.com - Down / Whoops!

Version 3 of the user guide is the default link on the main page, and it returns a 404 error instead of the actual guide.
169,610 Views
68 Replies
03-25-2020, 09:19 PM
mladoux
    Thread: Important News about Jim Parry and the Project
Post: RE: Important News about Jim Parry and the Project

I'm in utter shock right now. I don't even know how to feel. That said, I'm glad that Lonnie will be taking over, since he is definitely the most qualified to make any attempt at filling Jim's shoes. ...
142,421 Views
98 Replies
01-16-2020, 01:01 PM
mladoux
    Thread: Is there a discord server
Post: RE: Is there a discord server

There is a pretty active Slack channel though... https://forum.codeigniter.com/thread-67416.html
7,638 Views
7 Replies
01-02-2020, 11:09 AM
mladoux
    Thread: help with SqlServer Store Procedure
Post: RE: help with SqlServer Store Procedure

Well, I don't anything about mssql, however, when you use single quotes, instead of double quotes, php variable names don't get parsed, and thus the value of $dni doesn't get passed ( assuming it's be...
1,972 Views
1 Replies
10-21-2019, 12:08 PM
mladoux
    Thread: [split] CodeIgniter 4.0.0-rc.3 typo
Post: [split] CodeIgniter 4.0.0-rc.3 typo

Finally got a a chance to play with CI4 since the RC's started coming out. Ran into some issues with the migrations ( turned out to be user error ) - that said, there is a typo on Line 439 of system/C...
960 Views
0 Replies
10-21-2019, 06:59 AM
mladoux
    Thread: [feature] Database Handlers
Post: RE: [feature] Database Handlers

dave friend Wrote: (09-25-2019, 07:18 PM) -- includebeer Wrote: (09-25-2019, 10:05 AM) -- "most popular databases" doesn't mean anything. Databases used for big data, business intelligence and cloud...
35,679 Views
19 Replies
10-04-2019, 12:14 PM
mladoux
    Thread: HTTPS : how to do
Post: RE: HTTPS : how to do

Make sure that $config['base_url'] = ''; from your application/config/config.php has your site as $config['base_url'] = 'https://www.example.com'; and you should be good.
2,327 Views
2 Replies
10-01-2019, 12:12 PM
mladoux
    Thread: CI3 to CI4 - hardest transition points?
Post: RE: CI3 to CI4 - hardest transition points?

Avega Soft Wrote: (07-22-2019, 07:48 PM) -- Personally, the following topics are of interest to me: Namespaces practical use in CI4 with examples Routing and more practical examples   Working...
22,422 Views
16 Replies
07-30-2019, 10:48 AM
mladoux
    Thread: [done] Encrypter
Post: RE: [feature] Encrypter

That's good, since mostly people don't need php based encryption, they need hashing. Good hashing is already built into php now. There may be cases where you may want to encrypt cookies stored on user...
58,819 Views
34 Replies
07-18-2019, 05:35 PM
mladoux
    Thread: How to fix session management issues found on a security audit
Post: RE: How to fix session management issues found on ...

If you set an option in your sessions to define the session initial start, and extend the gc function of your intended session driver, you could add code to check how long since the session was initia...
3,140 Views
2 Replies
06-25-2019, 02:28 PM
mladoux
    Thread: Code Modules
Post: RE: Code Modules

InsiteFX Wrote: (06-24-2019, 02:33 PM) -- Here you have a back slash then a forward slash. PHP Code: -- public $psr4 = ['Modules\Node' => ROOTPATH.'Modules/Node']; -- -- The '\' referencing a n...
7,578 Views
8 Replies
06-24-2019, 03:37 PM
mladoux
    Thread: How can i remove subclass_prefix?
Post: RE: How can i remove subclass_prefix?

Try this: https://markladoux.wordpress.com/2012/12/19/codeigniter-autoload-hook-by-shane-pearson-modified/ I've modified it when it stopped working with CI 2, but it should still work with CI 3. ...
2,441 Views
2 Replies
06-24-2019, 03:28 PM
mladoux
    Thread: Load controller from another controller
Post: RE: Load controller from another controller

WiredDesigns needs to be patched to work with current codeigniter installs. This is the skeleton I created for myself that I use: https://github.com/mladoux/ci-skeleton It has HVMC and a custom ...
26,329 Views
12 Replies
06-20-2019, 04:31 PM
mladoux
    Thread: How can I write file without overwrite
Post: RE: How can I write file without overwrite

I would also note there are performance issues with saving settings that way as well. If you must use a file-based solution, might I suggest something like a sqlite database?
5,820 Views
5 Replies
06-18-2019, 06:37 PM
mladoux
    Thread: How can I write file without overwrite
Post: RE: How can I write file without overwrite

Those new settings will overwrite pre-existing values, however, to actually replace the lines is a bit more complex, as I wasn't sure exactly what you were trying to do. If you're trying to add and up...
5,820 Views
5 Replies
06-18-2019, 06:33 PM
mladoux
    Thread: How can I write file without overwrite
Post: RE: How can I write file without overwrite

If you're just appending, you need to check if the file exists first, else you'll break it every time. If you want to overwrite it, I suggest unlinking the file. I wrote a couple of examples below tha...
5,820 Views
5 Replies
06-17-2019, 04:36 PM
mladoux
    Thread: [feature] Message queue
Post: RE: [feature] Message queue

RabbitMQ, because it's open source, where as AWS SQS is not.
12,378 Views
6 Replies
03-13-2019, 07:53 AM
mladoux
    Thread: [done] Encrypter
Post: RE: [feature] Encrypter

I voted doesn't matter to me, but that's not entirely true. It does matter, but at the same time, I think we should be using a major library like halite, rather than building it in. I don't think we n...
58,819 Views
34 Replies
03-13-2019, 07:50 AM
mladoux
    Thread: [feature] Database Handlers
Post: RE: [feature] Database Handlers

I prefer PDO, as that's where all database extensions should be going eventually anyway, and all popular databases including many that aren't already have PDO drivers built into PHP. PDO is intended t...
35,679 Views
19 Replies
03-13-2019, 07:45 AM
mladoux
    Thread: CodeIgniter 4.0.0-beta.1 Released
Post: RE: CodeIgniter 4.0.0-beta.1 Released

Great work! I'm hoping to get started on my CI-4 project July/August. Fingers crossed it'll be ready :D
76,384 Views
44 Replies
03-10-2019, 03:50 PM
mladoux

Theme © iAndrew 2016 - Forum software by © MyBB