Re: Flood control using Redis Programming Web Development by Dani Status update: we now use Cloudflare’s free rate limiting functionality. Back when I wrote this, Cloudflare charged for rate limiting. Note we have a Business account. Re: Dynamic Properties in PHP 8.2 Programming Web Development by Dani … exact issue while trying to make the latest version of CodeIgniter 3 (which has now been deprecated in favor of… CodeIgniter 4.x) compatible with PHP 8.2/8.3. As … Dynamic Properties in PHP 8.2 Programming Web Development by Dani … my increasingly futile attempt to remain using the now-defunct CodeIgniter 3 framework, I came across something that I figure might… Re: Dynamic Properties in PHP 8.2 Programming Web Development by Dani Oh, and an important bit I forgot to mention: PHP's built-in stdClass has the `#[AllowDynamicProperties]` attribute already added. In fact, you can see in the [PHP docs](https://www.php.net/manual/en/class.stdclass.php) that the definition of the stdClass is "a generic empty class with dynamic properties." That means that you can always … Re: Dynamic Properties in PHP 8.2 Programming Web Development by jkon I can't get it , why anyone would want to `$user = new User(); $user->nickname = 'Dani';` if nickname is not a public property of User , or even worse `$user = new stdClass(); $user->nickname = 'Dani';` ? Why ? Re: Dynamic Properties in PHP 8.2 Programming Web Development by Dani > This obviously does not make sense to do if you want to create or work with a User object or something of that sort. I realize that in my previous post I incorrectly gave the example of `$user = new stdClass(); $user->nickname = 'Dani';`. My intention was not to say that it was good coding practice to represent a user of the app with an … CodeIgniter 3.0 & Learning Resources Programming Web Development by Lorele …being a basic-to-intermediate web worker, I decided CodeIgniter had the best potential for flexibility, and also … lead to me learning CSS. Although various tutorials for CodeIgniter have expressed that the blurry area between model, view… skills -- and still maintain some closeness to the CodeIgniter 3.0 base? Is there anyone working with CI… CodeIgniter highlight_phrase Programming Web Development by Dani CodeIgniter's highlight_phrase() function, in the Text Helper library, looks like … Re: Codeigniter - Clone form field, entering in database Programming Web Development by LastMitch >Codeigniter - Clone form field, entering in database Have you post this on **Codeigniter** forum? I assume you did. I think someone over there already gave a good direct answer: http://ellislab.com/forums/viewthread/235630/ CodeIgniter Help. Programming Web Development by kevinyu … for the sake of experimentation to headstart my journey in CodeIgniter. :D Hello Stackoverflow. Why is it that my page only… Codeigniter Programming Web Development by Harmeet_2 Hi i m new with codeigniter Kindly help me how i display data in dropbox from database and save into datbase. Re: Codeigniter Programming Web Development by cereal Hi, you can use the Form helper, like in the documentation example: * https://codeigniter.com/user_guide/helpers/form_helper.html?highlight=form#form_dropdown Otherwise you can use custom code. Have you tried to write some code? Show it to us, so we can suggest you how to fix it, bye. Re: CodeIgniter 3.0 & Learning Resources Programming Web Development by veedeoo …were written like this.. //namespace myspace; // does not apply in codeigniter Class MyClass { private $dialog; public function __construct($dialog) { $…begin writing our basic "Hello World" program in CodeIgniter. First, the Model: application/models/myclass_model.php <?… Re: CodeIgniter 3.0 & Learning Resources Programming Web Development by Dani DaniWeb uses CodeIgniter 2.x, as do a handful of other people here, so any questions that you may have I'm sure we can help with. I don't know anyone using CodeIgniter 3 as it's still under active development and not production-ready. Re: CodeIgniter session cookie vulnerability Community Center Meta DaniWeb by cereal … discussed in your link. About 2.2.0: > CodeIgniter 2.2.0 has been released today, and is a… ready for the update. * http://ellislab.com/blog/entry/codeigniter-2.2.0-released Just make sure to have **mcrypt…which includes also few minor bug fixes: * http://ellislab.com/codeigniter/user-guide/installation/upgrade_220.html * http://ellislab.com… Codeigniter - Bootstrap Questions Programming Web Development by Ventech_IT Hi Guys i am currently building an app and using codeigniter as my framework and bootstrap to handle the Site so … in two parts. Im new to Codeigniter so please bear with me. Part One: Codeigniter Here is my current website header and… Codeigniter, Jquery using multiple modals Programming Web Development by devphp …(e) { e.preventDefault(); $.ajax({ url: "http://localhost/codeigniter/bellaadmin/add_form/", type: "POST", data: new FormData…temp_image as $row): echo '<img src="http://localhost/codeigniter/uploads/'; echo $row['name']; echo '" width="… Re: Codeigniter - Bootstrap Questions Programming Web Development by Ventech_IT I fixed the nav link in codeigniter by using <?php echo site_url('home'); ?> now all i need is an answer on how to use the bootstrap active class with codeigniter to display what link is active? CodeIgniter session cookie vulnerability Community Center Meta DaniWeb by iamthwee Hi guys, I just came across an interesting article regarding codeigniter cookie sessions. http://www.dionach.com/blog/codeigniter-session-decoding-vulnerability It seems it is fixed in 3.0 but I know that version isn't stable. I wonder what Dani thinks about this? codeigniter cart session Programming Web Development by Nabeel_2 …`) ); but not on the hosting saver and i think because codeigniter store cart in session then i try to store session… in table as suggested by codeigniter documention but then even log in stop working which use… Re: Codeigniter shopping cart class Programming Web Development by cereal It's deprecated: * https://codeigniter.com/user_guide/libraries/cart.html So it's better to … to be unsupported by the end of August 2017, the CodeIgniter team will not port CI 3 to new versions of… not sure how the project will develop. Source: http://forum.codeigniter.com/thread-62615.html CodeIgniter routing Programming Web Development by iamthwee … switching, but I do like the way routing works. In codeigniter it seems so convoluted. I gotta create a controller to… Codeigniter custom validation issue Programming Web Development by divyakrishnan Hi I have added a custom form validation in codeigniter. The callback function returns true/false & the value of … Re: Codeigniter custom validation issue Programming Web Development by cereal ….net/manual/en/function.checkdate.php#113205 * https://ellislab.com/codeigniter/user-guide/libraries/form_validation.html#callbacks Codeigniter shopping cart class Programming Web Development by LibraryCode Hi all would like to ask technical question what are the prons and cons of using and not using codeigniter shopping cart class? Heard is better to use functions and sessions and do not use cart class as it is depricated or limited with doing certain functionality .Thanks CodeIgniter Facebook Login Issue Programming Web Development by brianbabu … am really having a problem with the facebook login with codeigniter. I am getting the login part, session and db query… codeigniter and frontend access issues Programming Web Development by Casperjames …./index.php/$1 [L] and in my header inside of codeigniter redirected back to the index.html if the user was…a 404 back the other way! However everything else through codeigniter works at this point... I am confused. Right now…essentially want to load the frontend first and then load codeigniter when the user has logged in and been authenticated.… codeigniter sessions Programming Web Development by iamthwee …. First let me explain. So I've been using codeigniter's session library without much thought. I assumed the code…'] = TRUE;` <--True isn't it storing all your codeigniter sessions in plain text!!! So if I set a session…the user's to enter an encryption key before using codeigniter's sessions!? Second I've been reading about countless … Re: codeigniter sessions Programming Web Development by Dani …, even if using unencrypted session cookies. DaniWeb uses CodeIgniter sessions, and we also rely heavily on AJAX. …we actually don't use the session database. The CodeIgniter session cookie is encrypted and stores simply a hashed … functionality. We have a separate table (outside of CodeIgniter's session library) that keeps track of the applicable… CodeIgniter book??? Programming Web Development by veledrom …get staring: [URL="http://www.amazon.co.uk/CodeIgniter-Professional-Development-Adam-Griffith/dp/1849510903/ref=sr_1_1?s=books…ie=UTF8&qid=1304357639&sr=1-1"]CodeIgniter 1.7 Professional Development[/URL] [URL="http://…www.amazon.co.uk/CodeIgniter-1-7-J-Blanco/dp/1847199488/ref=sr_1_3?s=books…