active questions tagged codeigniter - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T01:16:19Z http://stackoverflow.com/feeds/tag/codeigniter http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1933994/introduction-to-code-igniter-and-expression-engine 0 Introduction to Code Igniter and Expression Engine Pennf0lio 2009-12-19T20:07:23Z 2009-12-19T20:10:12Z <p>I'm looking for a great introduction in creating application using CodeIgniter and Integrating it to Expression Engine. </p> http://stackoverflow.com/questions/1933846/fastest-easiest-method-to-develop-a-multi-user-gaming-engine-in-php-mysql 0 Fastest / Easiest method to develop a multi-user gaming engine in PHP/MySQL? PHP OOP Newbie 2009-12-19T19:04:13Z 2009-12-19T19:50:53Z <p>Hi, I'm an advanced designer, but also starting out a career in development: I'm a PHP intermediate user. I (unfortunately) learnt procedural development, and not OOP.</p> <p>My current project is a multi-user game web-app and I was developing procedurally only for my Boss to insist that it has to be OOP, so I needed to start learning OOP (I believe I am a relatively fast learner). A friend advised me to just learn a lightweight PHP framework and move on from there, since the project must be launched in less than three weeks (I have roughly 2 weeks left now)!</p> <p>After viewing a lot of articles comparing them, I ended up with CodeIgniter, Kohana, and Yii based on the efficiency and the lightweight-edness. I am not quite used to command-line instructions like it's done in Yii, so I had to drop it off to save my time :(. Kohana looks very interesting, but I am new to the PHP5 and OOP it uses and there's VERY LITTLE help on Kohana, I even tried to buy books but there are none. CodeIgniter has a lot of helpful material, but it has no official Authentication module with Access Control, and the three open-source modules I have tested did not integrate well with other modules I am using.</p> <p>Please can anyone recommend another OOP PHP framework with a quick learning curve, or provide some pointers to resolve the problems I had with those 3 frameworks tested, or should I just develop the entire application out of the box after studying OOP extensively? Thanks for your time.</p> http://stackoverflow.com/questions/1923186/code-igniter-subdirectory-question 1 Code Igniter SubDirectory Question Aaron 2009-12-17T17:07:59Z 2009-12-19T15:19:35Z <p>I am trying to let the "trac" directory and all of it's subdirectories be accessible through the url <a href="http://www.domain.com/trac/" rel="nofollow">http://www.domain.com/trac/</a></p> <p>I am working with the codeginiter framework and my directory structure looks like</p> <pre><code>.htaccess index.php system trac </code></pre> <p>I can access the abov url fine, but the problem is the scripts and other files contained in trac subdirectories ie: trac/chrome/common/css/trac.css are not accessible and 404. Here is my .htaccess code. Please help.</p> <pre><code>RewriteEngine On RewriteRule ^$ index.php [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?/$1 [L] RewriteCond $1 !^trac/ RewriteRule ^trac/(.*) /trac/$1 </code></pre> http://stackoverflow.com/questions/1928965/code-igniter-logging-too-much 0 Code Igniter logging too much Ferdy 2009-12-18T15:46:46Z 2009-12-19T14:59:22Z <p>In my CI config file I have this logging treshold set:</p> <pre><code>$config['log_threshold'] = 1; </code></pre> <p>In index.php, I have set the following error reporting:</p> <pre><code>error_reporting(E_ERROR); </code></pre> <p>My expectation is that this will log any CI errors that I log (using <code>log_message('error','my error message')</code>), as well as any PHP errors. However, I would expect that it will not log PHP notices, only errors. However, when I look at the log files, it seems to log PHP notices too:</p> <blockquote> <p><strong>ERROR - 2009-12-18 13:21:50—> Severity: Notice —> Undefined variable: pageindex /var/www/apps/OS4W/system/application/views/user/view.php 12<br> ERROR - 2009-12-18 13:21:50—> Severity: Notice —> Undefined variable: friendsmode /var/www/apps/OS4W/system/application/views/user/activitytable.php 207</strong></p> </blockquote> <p>Although the log lines start with “ERROR”, in reality this seems to be a PHP notice, kind of like a warning, that I do not want to log. How can I make sure only CI and PHP errors are logged, yet not PHP notices? I thought <code>error_reporting(E_ERROR)</code> would do just that? </p> http://stackoverflow.com/questions/804399/codeigniter-create-new-helper 0 CodeIgniter: Create new helper? Jonathan 2009-04-29T21:41:29Z 2009-12-19T03:26:03Z <p>Hi, I need to loop lot of arrays in different ways and display it in a page. The arrays are generated by a module class. I know that its better not to include functions on 'views' and I want to know where to insert the functions file.</p> <p>I know I can 'extend' the helpers, but I don't want to extend a helper. I want to kind of create a helper with my loop functions.. Lets call it loops_helper.php</p> <p>Can I do it?? How?? Thanks!!</p> http://stackoverflow.com/questions/1928058/passing-parameters-to-controllers-constructor 0 Passing parameters to controller's constructor kemp 2009-12-18T12:55:56Z 2009-12-18T22:45:03Z <p>I have a controller which has several methods which should all share common informations. Let's say my URI format is like this:</p> <pre><code>http://server/users/id/admin/index http://server/users/id/admin/new http://server/users/id/admin/list http://server/users/id/admin/delete </code></pre> <p>I need to retrieve some informations from the database for <code>id</code> and have them available for all methods instead of writing a line in each of them to call the model. How can I do this?</p> http://stackoverflow.com/questions/1929634/codeigniter-first-time-user 1 Codeigniter first time user Kevin Brown 2009-12-18T17:32:37Z 2009-12-18T17:48:22Z <p>I need a way to tell if it's a user's first time to log in--so I can display relevant information to that user about what they need to do.</p> <p>How can this be achieved? I'm at a loss here and examples would be appreciated! :)</p> http://stackoverflow.com/questions/1893381/codeigniter-continue-on-sql-error 0 CodeIgniter - continue on SQL error? Mala 2009-12-12T13:12:16Z 2009-12-18T16:21:51Z <p>Hi</p> <p>Basically I have a table with a couple of columns marked Unique. I have a script that dumps a bunch of values into the table with a command like this:</p> <pre><code>$this-&gt;db-&gt;query("INSERT INTO `table` (`col1`, `col2`, `col3`) VALUES (`val1`, `val2`, `val3`)"); </code></pre> <p>Every so often my script will try to insert a row which would violate the uniqueness of one of the columns. However, instead of causing the script to abort with a database error, I'd like it to continue, possible outputting a little message. Basically I'm looking for the codeigniter equivalent of</p> <pre><code>mysql_query("INSERT blah blah blah") or print("fail"); </code></pre> <p>Thanks!<br> Mala</p> http://stackoverflow.com/questions/1925791/codeigniter-vs-kohana 2 CodeIgniter vs Kohana Adam 2009-12-18T01:42:51Z 2009-12-18T14:56:29Z <p>I've never used either before. I'm not a pro php programmer, but want to be. I like "state of the art" tools and code. Is there any reason I shouldn't go for Kohana? I noticed there were not books on amazon about kohana.</p> <p>Input is appreciated! </p> http://stackoverflow.com/questions/1925628/does-codeigniter-work-well-with-jquery 0 Does Codeigniter work well with jQuery? Adam 2009-12-18T00:55:18Z 2009-12-18T04:16:02Z <p>I've been using ASP.NET for a while but decided it's time to learn a PHP framework.</p> <p>Looking at an article NetTuts+ It looks like CodeIgniter is the simplest, and one of the lightest and easiest ways to go. </p> <p>I am however, a huge jQuery fan, and am wanting to know if jQuery integrates well with the framework? Any experience?</p> http://stackoverflow.com/questions/1183644/how-to-achieve-the-yelp-map-marker-tooltip-effect-in-google-maps 0 How to achieve the Yelp Map Marker/Tooltip Effect in Google Maps? dnyce 2009-07-26T03:22:36Z 2009-12-18T04:06:45Z <p>Ok so here's the deal,</p> <p>I'm trying to display a tooltip (instead of the ginfowindow) over some Yelp Map Markers that I am pulling onto a Google Map. </p> <p>I would like to have the exact same effects as Yelp. i.e. The tooltip seems to be set such that it's z-index is always above all other elements nearby, it moves the tooltip once it appears it is getting too close to the top of the page/bottom of the page, etc...</p> <p>So far I have been able to get the z-index of the tooltip to appear correctly by appending the tooltip to the body (as opposed to the map). I thought I was on the right track but then I checked the implementation on a larger monitor and realized that the solution I had come up with was pushing the tooltips out too far right. See the code below:</p> <pre><code> GEvent.addListener(marker,'mouseover',function(){ showMessage(this, infoWindowHtml); }); GEvent.addListener(marker,'mouseout',function(){ $("#tooltip").hide(); }); /* * Displays a Tooltip for the currently hovered marker */ function showMessage (marker, text) { var markerOffset = ymap.fromLatLngToContainerPixel(marker.getPoint()); theight = 20; twidth = 175; var twidth2 = $(".maincontent").width() + 12; $("#tooltip") .fadeIn() .html("&lt;div class='content'&gt;"+text+"&lt;/div&gt;") .css({ top: markerOffset.y - theight, left: markerOffset.x + twidth2 - twidth/2 }) .appendTo("body"); } </code></pre> <p>Based on this code, does anyone see what I may be doing wrong with this tooltip implementation?</p> http://stackoverflow.com/questions/1925766/codeigniter-noob-question-active-record-and-results 0 Codeigniter Noob Question--active record and results? Kevin Brown 2009-12-18T01:34:48Z 2009-12-18T03:06:31Z <p>I'm writing a simple app. I need to block user from a page if their credit is &lt; 0.</p> <p>I have a table "User_profiles" with a "credit" row.</p> <p>How can I set up a model in conjunction with the controller to send the user to another page if the value of "credit" is 0?</p> <p>This should be straightforward, but I'm new at the select->where stuff...</p> <p>It has to be the row of the current user too--I don't know how to traverse arrays very well yet.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1922283/codeigniter-how-do-store-info-noob 1 Codeigniter--How do store info? (noob) Kevin Brown 2009-12-17T14:55:59Z 2009-12-17T23:44:28Z <p>I'm building my first real CI app. I have to build a survey system--If the specifics are important, I'll elaborate.</p> <p>What is the best way to post the info to the db from the user? In a single row, comma separated? I'm a noob here, so detail would be appreciated! :)</p> <p><strong>I should add: the user needs to have the ability to try multiple times for the test and have each test's score charted. Payment is required to take each test.</strong></p> <p>Here's where I'm at. This code works, but I'm sure there's a more elegant way to do things.</p> <pre><code>$this-&gt;db-&gt;select('credits')-&gt;from('be_user_profiles')-&gt;where('user_id', $this-&gt;session-&gt;userdata('id')); $query = $this-&gt;db-&gt;get(); foreach ($query-&gt;result() as $row) { echo $row-&gt;credits; } </code></pre> <p>What about this?</p> http://stackoverflow.com/questions/1924135/php-insert-sql-function 2 php insert sql function c0mrade 2009-12-17T19:50:44Z 2009-12-17T20:17:43Z <p>Hello everybody, I want to create one insert function in php, which I will use to insert data into database.</p> <p>Of course all inserts are not the same, some use one table others use other, tables have different column numbers etc. What is the best way to do this ?</p> <p>I'm currently on the web page for member registration, now I don't want to allow everyone to register, I want admin to approve which members will get approved and which ones will not, so I set one hidden field to 0 and after approval it becomes one. </p> <p><strong>CASE:</strong> Someone comes to the website and changes input field value to 1 with firebug and submits the registration, automatically gets approved, I didn't try this I'm just considering the possibility. Now if I put member_active inside insert function then it won't work for other insert queries with few/less database column rows.</p> <p>What is the way to do this, is the global/general insert function good idea at all, I pretty much know how to program all of this, but lately I've become more careful about data/efficiency and such things that can make your website better/worse so I want a good start. Thank you</p> http://stackoverflow.com/questions/1921681/calling-controllers-with-hook 0 calling controllers with hook shikhar 2009-12-17T13:08:03Z 2009-12-17T14:41:09Z <p>Hi all,</p> <p>Can I call a controller with a pre_controller hook.</p> <p>Something like this, where ControllerHook is a normal controller.</p> <pre><code>$hook['pre_controller'][] = array( 'class' =&gt; 'ControllerHook', 'function' =&gt; 'controllerHookFunction', 'filename' =&gt; 'ControllerHook.php', 'filepath' =&gt; 'hooks', ); </code></pre> <p>I tried this already, it works fine. On problem is that post hook processing I get this error</p> <pre><code>Fatal error: Call to a member function _assign_libraries() on a non-object in F:\xampp\htdocs\trunk\system\libraries\Loader.php on line 1038 </code></pre> <p>I dont know what is the issue here.</p> <p>I know I can do it easily extending the controller but I would prefer doing it with a hook. With post_controller_* hook the controller hook doesnt execute.</p> <p>Thanks in advance, Shikhar</p> http://stackoverflow.com/questions/1733061/using-simplepie-with-codeigniter-and-xampp 0 Using SimplePie with CodeIgniter and XAMPP Elizabeth 2009-11-14T02:47:12Z 2009-12-17T09:28:22Z <p>I am using CodeIgniter 1.7.2 with XAMPP 1.7.2 on a Windows computer.</p> <p>I am trying to make use of SimplePie.</p> <p>I followed all the instructions I could find: a copy of simplepie.inc is in my applications/libraries folder, renamed to simplepie.php I enabled curl on Apache. I attempt to load SimplePie as follows:</p> <pre><code>this-&gt;load-&gt;library('simplepie'); </code></pre> <p>At this point, Apache hangs. The error log has not real errors - just an indication that it is listening at port 443 and port 80. Then I get a messagebox from Apache saying that it has been stopped for an unknown error.</p> <p>I suspect that it must be a combination of the three tools, most likely related to XAMPP, because there are many codeigniter/simplepie tutorials that seem to work for other people.</p> <p>Does anyone have any ideas of the issue? If not, has anyone tried Magpie with CodeIgniter? I'm thinking of trying it because I'm getting rather desperate.</p> http://stackoverflow.com/questions/1916435/simple-codeigniter-refactoring-question-best-practice 0 Simple codeigniter refactoring question -- best practice Michael 2009-12-16T17:53:43Z 2009-12-17T09:23:16Z <p>Hi all, </p> <p>I have a quick question about refactoring php code. Below are three functions. The first two appear quite similar, and only differ with one if statement. The third combines the first two through use of a flag. Is this the best practice? Here it seems okay to use a flag, but what if we need to add more flags in the future? What is the best practice? </p> <p>Thanks. </p> <pre><code>function check_contact_email($email) { $this-&gt;db-&gt;select('COUNT(login) AS count'); $this-&gt;db-&gt;from('users'); $this-&gt;db-&gt;where('email', $email); $query = $this-&gt;db-&gt;get(); $row = $query-&gt;row(); return ($row-&gt;count &gt; 0); } function check_contact_email_id($email) { $this-&gt;db-&gt;select('COUNT(login) AS count'); $this-&gt;db-&gt;from('users'); $this-&gt;db-&gt;where('email', $email); $this-&gt;db-&gt;where('user_id !=', $_POST['user_id']); $query = $this-&gt;db-&gt;get(); $row = $query-&gt;row(); return ($row-&gt;count &gt; 0); } function check_contact_email($email, $id = FALSE) { $this-&gt;db-&gt;select('COUNT(login) AS count'); $this-&gt;db-&gt;from('users'); $this-&gt;db-&gt;where('email', $email); if ($id) $this-&gt;db-&gt;where('user_id !=', $_POST['user_id']); $query = $this-&gt;db-&gt;get(); $row = $query-&gt;row(); return ($row-&gt;count &gt; 0); } </code></pre> http://stackoverflow.com/questions/1916966/code-igniter-simple-controller-question 0 Code Igniter--simple controller question Kevin Brown 2009-12-16T19:15:04Z 2009-12-17T09:12:30Z <p>I'm designing a simple web-app in CI. I have a registration controller, and a paypal controller. Both work fine separately, but I need to use some functions of the paypal controller as a part of registration. How can I borrow those functions w/o pasting new functions into the registration controller?</p> <p>It really wouldn't be a problem to paste in the paypal controller to the reg_controller, but I'd like to separate these functions if possible! :)</p> <p>BTW, I'm new to CI/MVC so if there's a better way to do things, let me know!</p> http://stackoverflow.com/questions/1712877/using-codeigniter-to-send-a-digest-mail-once-a-week-to-members 0 Using codeigniter to send a digest mail, once a week, to members. Michael 2009-11-11T03:47:52Z 2009-12-17T04:26:22Z <p>Hi all, </p> <p>I'm new to codeigniter, and I'm trying to figure out how to implement a weekly digest, sent to members.</p> <p>I currently have the email set up correctly, and now am trying to get the 'weekly' part down. I know how to use date / time functions to check if one week has elapsed, but how do I run something, say, 'every monday at 8pm' without having to click on my site. Can I do this in CodeIgniter ?</p> <p>Thanks,<br> Michael</p> http://stackoverflow.com/questions/1915943/apache-comes-back-with-nothing 0 Apache comes back with nothing ChronoFish 2009-12-16T16:39:50Z 2009-12-16T19:55:57Z <p>Hello -</p> <p>I'm running Apache 2.046 with PHP 5.x and I am experiencing very odd behavior on a CodeIgniter app.</p> <p>The frustrating thing is that it is not consistent. </p> <p>Occasionally when I call up my app Apache returns nothing. I mean nada. But then I hit refresh and everything works as expected. Sometimes I have to hit "refreash" several times before the page will load. Other times it comes right up. When I started this post it was happening 80-90% of the time. Now I can't seem to make it happen. But it's been happening for several days so I have confidence in the next couple of page visits I will see it again.</p> <p>This is on a development box that has very little traffic. When I do a PS I see several HTTP threads running - "top" reveals nothing un-expected (like a runaway process).</p> <p>When I tail the apache access logs I don't even see a logged request when Apache returns blank. No Apache or PHP errors are being thrown. </p> <p>I mention codeIgniter mostly because we're using the recommend .htaccess file with Mod Rewrite. So I wasn't sure if that was contributing to the issue. It also does not <em>seem</em> to be a problem with non-codeIgniter apps. That's hard to say with confidence since the issue is so inconsistent. </p> <p>It does not seem to be client issue as we're seeing this happen from multiple client machines.</p> <p>I can't tell if this is a server (hardware) issue, Apache issue or coding issue. Maybe it's a memory issue?</p> <p>Any thoughts?</p> <p><hr></p> <p>NEW INFORMATION:</p> <p>IN the PHP log file I received this:</p> <p>PHP Fatal error: fatal flex scanner internal error--end of buffer missed in /data/www/coreLib/codeIgniter/system/libraries/Hooks.php on line 226</p> http://stackoverflow.com/questions/1915228/php-codeigniter-iterating-through-9000-db-rows-generates-a-download-of-blank 0 PHP / CodeIgniter - Iterating through 9000+ DB rows generates a download of blank page Frode 2009-12-16T15:08:04Z 2009-12-16T15:21:16Z <p>I'm trying this:</p> <pre><code>function send_sms() { $liveQuery = $this-&gt;db-&gt;get('liveList'); $counter = 0; foreach($liveQuery-&gt;result() as $row): $counter = $counter+1; echo("Not hatin', just iteratin'. Message " . $counter); endforeach; } </code></pre> <p>When liveList has 8000 records it runs just fine, but when I try with 9000 rows it generates a download of a blank, 0 KB, document. Anyone know why this happens?</p> http://stackoverflow.com/questions/1914750/how-does-apache-map-http-www-example-com-index-php-abc-def-to-index-php 0 How does apache map http://www.example.com/index.php/abc/def to index.php? zedoo 2009-12-16T13:48:29Z 2009-12-16T13:53:38Z <p>Codeigniter php framework URLs look like the above.</p> <p>I'm surprised that apache maps this request to index.php at the server root. I expected it to interpret /index.php/abc/def as a file 'abc' in a directory /index.php/abc, and as a result a 404 Not Found (given that no such file exists). </p> <p>Can anyone explain why index.php gets executed instead? Is there a document that explains apaches 'map request to resource' strategy, that would explain the above observation?</p> http://stackoverflow.com/questions/1911094/is-there-a-way-to-have-a-codeigniter-controller-return-an-image 0 Is there a way to have a Codeigniter controller return an image? Ethan 2009-12-15T23:04:06Z 2009-12-16T10:36:42Z <p>Hey,</p> <p>I was wondering if there was a way for a controller to, instead of returning a string, or a view, return an image (be it JPG, PNG etc). For example, instead of ending with a $this->load->view('folder/special_view.php), I'd like to do something like $this->load->image('images/gorilla.png'), and have it so if my user were to go to that controller they would see an image as if they'd gone to a normal .png or jpeg. Can I set the headers so it expects a different MIME? Example code of this would be fantastic.</p> <p>It would take forever for me to explain why I need this, but it involves bringing a premade CMS into codeigniter, and having it need certian things to be true. Thank you so much!</p> http://stackoverflow.com/questions/1912829/integrating-fckeditor-in-codeigniter 0 Integrating FCKEditor in CodeIgniter adisembiring 2009-12-16T07:00:25Z 2009-12-16T07:08:58Z <p>Hi .....</p> <p>I want to integrate fckEditor in CodeIgniter. Can you help me to implement it ?</p> http://stackoverflow.com/questions/1910954/codeigniter-installation-problem-on-shared-host 0 codeigniter installation problem on shared host Yc Zhang 2009-12-15T22:38:12Z 2009-12-15T22:55:54Z <p>my host account is something like:</p> <p>~<br> ~/public_html<br> ~/public_html/system/application </p> <p>to access my web, I need to put <a href="http://example.com/~userid" rel="nofollow">http://example.com/~userid</a> in address bar</p> <p>I install codeigniter in the ~/public_html directory, I can access <a href="http://example.com/~userid" rel="nofollow">http://example.com/~userid</a>.</p> <p>The Welcome page shows correctly, and the related user guide pages show correctly.</p> <p>The problem is: if I create a new controller, and create new views, the web page just show "Error 404: Document Not Found". If I use <a href="http://example.com/~userid/welcome/index" rel="nofollow">http://example.com/~userid/welcome/index</a> it has the same problem.</p> <p>If I use base_url() function it shows <a href="http://example.com/~userid/" rel="nofollow">http://example.com/~userid/</a> </p> <p>What should I do do fix this problem?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1908247/codeigniter-multiple-file-upload 0 codeigniter multiple file upload sico87 2009-12-15T15:37:13Z 2009-12-15T20:54:26Z <p>Hello, </p> <p>I am trying to get a multiple upload library working for my codeigniter based website, I have it working almost but I have a slight problem if I upload more than one image, the file extentions get screwed up, for example, if I upload three JPEGS, I get this in my uploads folder,</p> <p>image1.jpg image2.jpg.jpg image3.jpg.jpg.jpg</p> <p>I cannot see what is causing it, this is the library in question and I am pretty sure that it is in there that the problem is, </p> <pre><code> &lt;?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /** * This library assumes that you have already loaded the default CI Upload Library seperately * * Functions is based upon CI_Upload, Feel free to modify this * library to function as an extension to CI_Upload * * Library modified by: Alvin Mites * http://www.mitesdesign.com * */ class Multi_upload { function Multi_upload () { // $CI =&amp; get_instance(); } /** * Perform multiple file uploads * Based upon JQuery Multiple Upload Class * see http://www.fyneworks.com/jquery/multiple-file-upload/ */ function go_upload($field = 'userfile') { $CI =&amp; get_instance(); // Is $_FILES[$field] set? If not, no reason to continue. if ( ! isset($_FILES[$field]['name'][0])) { $CI-&gt;upload-&gt;set_error('upload_no_file_selected'); return FALSE; } else { $num_files = count($_FILES[$field]['name']) -1; $file_list = array(); $error_hold = array(); $error_upload = FALSE; } // Is the upload path valid? if ( ! $CI-&gt;upload-&gt;validate_upload_path()) { // errors will already be set by validate_upload_path() so just return FALSE return FALSE; } for ($i=0; $i &lt; $num_files; $i++) { // $fname = $_FILES[$field]['name'][$i]; // echo "$fname\n\n&lt;br&gt;&lt;br&gt;\n\n"; $error_hold[$i] = FALSE; // Was the file able to be uploaded? If not, determine the reason why. if ( ! is_uploaded_file($_FILES[$field]['tmp_name'][$i])) { $error = ( ! isset($_FILES[$field]['error'][$i])) ? 4 : $_FILES[$field]['error'][$i]; switch($error) { case 1: // UPLOAD_ERR_INI_SIZE $error_hold[$i] = 'upload_file_exceeds_limit'; break; case 2: // UPLOAD_ERR_FORM_SIZE $error_hold[$i] = 'upload_file_exceeds_form_limit'; break; case 3: // UPLOAD_ERR_PARTIAL $error_hold[$i] = 'upload_file_partial'; break; case 4: // UPLOAD_ERR_NO_FILE $error_hold[$i] = 'upload_no_file_selected'; break; case 6: // UPLOAD_ERR_NO_TMP_DIR $error_hold[$i] = 'upload_no_temp_directory'; break; case 7: // UPLOAD_ERR_CANT_WRITE $error_hold[$i] = 'upload_unable_to_write_file'; break; case 8: // UPLOAD_ERR_EXTENSION $error_hold[$i] = 'upload_stopped_by_extension'; break; default : $error_hold[$i] = 'upload_no_file_selected'; break; } return FALSE; } // Set the uploaded data as class variables $CI-&gt;upload-&gt;file_temp = $_FILES[$field]['tmp_name'][$i]; $CI-&gt;upload-&gt;file_name = $CI-&gt;upload-&gt;_prep_filename($_FILES[$field]['name'][$i]); $CI-&gt;upload-&gt;file_size = $_FILES[$field]['size'][$i]; $CI-&gt;upload-&gt;file_type = preg_replace("/^(.+?);.*$/", "\\1", $_FILES[$field]['type'][$i]); $CI-&gt;upload-&gt;file_type = strtolower($CI-&gt;upload-&gt;file_type); $CI-&gt;upload-&gt;file_ext = $CI-&gt;upload-&gt;get_extension($_FILES[$field]['name'][$i]); // Convert the file size to kilobytes if ($CI-&gt;upload-&gt;file_size &gt; 0) { $CI-&gt;upload-&gt;file_size = round($CI-&gt;upload-&gt;file_size/1024, 2); } // Is the file type allowed to be uploaded? if ( ! $CI-&gt;upload-&gt;is_allowed_filetype()) { $error_hold[$i] = 'upload_invalid_filetype'; } // Is the file size within the allowed maximum? if ( ! $CI-&gt;upload-&gt;is_allowed_filesize()) { $error_hold[$i] = 'upload_invalid_filesize'; } // Are the image dimensions within the allowed size? // Note: This can fail if the server has an open_basdir restriction. if ( ! $CI-&gt;upload-&gt;is_allowed_dimensions()) { $error_hold[$i] = 'upload_invalid_dimensions'; } // Sanitize the file name for security $CI-&gt;upload-&gt;file_name = $CI-&gt;upload-&gt;clean_file_name($CI-&gt;upload-&gt;file_name); // Remove white spaces in the name if ($CI-&gt;upload-&gt;remove_spaces == TRUE) { $CI-&gt;upload-&gt;file_name = preg_replace("/\s+/", "_", $CI-&gt;upload-&gt;file_name); } /* * Validate the file name * This function appends an number onto the end of * the file if one with the same name already exists. * If it returns false there was a problem. */ $CI-&gt;upload-&gt;orig_name = $CI-&gt;upload-&gt;file_name; if ($CI-&gt;upload-&gt;overwrite == FALSE) { $CI-&gt;upload-&gt;file_name = $CI-&gt;upload-&gt;set_filename($CI-&gt;upload-&gt;upload_path, $CI-&gt;upload-&gt;file_name); if ($CI-&gt;upload-&gt;file_name === FALSE) { $error_hold[$i] = TRUE; } } /* * Move the file to the final destination * To deal with different server configurations * we'll attempt to use copy() first. If that fails * we'll use move_uploaded_file(). One of the two should * reliably work in most environments */ if ( ! @copy($CI-&gt;upload-&gt;file_temp, $CI-&gt;upload-&gt;upload_path.$CI-&gt;upload-&gt;file_name)) { if ( ! @move_uploaded_file($CI-&gt;upload-&gt;file_temp, $CI-&gt;upload-&gt;upload_path.$CI-&gt;upload-&gt;file_name)) { $error_hold[$i] = 'upload_destination_error'; } } /* * Run the file through the XSS hacking filter * This helps prevent malicious code from being * embedded within a file. Scripts can easily * be disguised as images or other file types. */ if ($CI-&gt;upload-&gt;xss_clean == TRUE) { $CI-&gt;upload-&gt;do_xss_clean(); } if ($error_hold[$i]) { $error_upload = TRUE; // echo $error_hold[$i]; } else { if ($imageVar = $this-&gt;multiple_image_properties($CI-&gt;upload-&gt;upload_path.$CI-&gt;upload-&gt;file_name)) { $file_list[] = array( 'name' =&gt; $CI-&gt;upload-&gt;file_name, 'file' =&gt; $CI-&gt;upload-&gt;upload_path.$CI-&gt;upload-&gt;file_name, 'size' =&gt; $CI-&gt;upload-&gt;file_size, 'ext' =&gt; $CI-&gt;upload-&gt;file_ext, 'image_type' =&gt; $imageVar-&gt;image_type, 'height' =&gt; $imageVar-&gt;height, 'width' =&gt; $imageVar-&gt;width ); } else { $file_list[] = array( 'name' =&gt; $CI-&gt;upload-&gt;file_name, 'file' =&gt; $CI-&gt;upload-&gt;upload_path.$CI-&gt;upload-&gt;file_name, 'size' =&gt; $CI-&gt;upload-&gt;file_size, 'type' =&gt; $CI-&gt;upload-&gt;file_type, 'ext' =&gt; $CI-&gt;upload-&gt;file_ext, ); } } // For debugging /* if (strlen($error_hold[$i]) &gt; 1) { print_r($error_hold); } */ } // end for loop // Add error display for individual files if ($error_upload) { $this-&gt;set_error($error_hold); return FALSE; } else { return $file_list; } } // -------------------------------------------------------------------- /** * Set Image Properties * * Uses GD to determine the width/height/type of image * * @access public * @param string * @return void */ function multiple_image_properties($path = '') { $CI =&amp; get_instance(); if ( ! $CI-&gt;upload-&gt;is_image()) { return false; } if (function_exists('getimagesize')) { if (FALSE !== ($D = @getimagesize($path))) { $types = array(1 =&gt; 'gif', 2 =&gt; 'jpeg', 3 =&gt; 'png'); $image-&gt;width = $D['0']; $image-&gt;height = $D['1']; $image-&gt;image_type = ( ! isset($types[$D['2']])) ? 'unknown' : $types[$D['2']]; return $image; } } } // -------------------------------------------------------------------- /** * Set an error message * * @access public * @param string * @return void */ function set_error($msg) { $CI =&amp; get_instance(); $CI-&gt;lang-&gt;load('upload'); if (is_array($msg)) { foreach ($msg as $val) { $msg = ($CI-&gt;lang-&gt;line($val) == FALSE) ? $val : $CI-&gt;lang-&gt;line($val); $this-&gt;error_msg[] = $msg; log_message('error', $msg); } } else { $msg = ($CI-&gt;lang-&gt;line($msg) == FALSE) ? $msg : $CI-&gt;lang-&gt;line($msg); $this-&gt;error_msg[] = $msg; log_message('error', $msg); } } // -------------------------------------------------------------------- } ?&gt; </code></pre> http://stackoverflow.com/questions/1904230/codeigniter-routes-for-filename-with-extension 0 Codeigniter Routes for filename with extension thehuby 2009-12-14T23:20:30Z 2009-12-15T20:35:59Z <p>I am using codeigniter and its routes system successfully with some lovely regexp, however I have come unstuck on what should be an easy peasy thing in the system.</p> <p>I want to include a bunch of search engine related files (for Google webmaster etc.) plus the robots.txt file, all in a controller.</p> <p>So, I have create the controller and updated the routes file and don't seem to be able to get it working with these files.</p> <p>Here's a snip from my routes file:</p> <pre><code>$route['robots\.txt|LiveSearchSiteAuth\.xml'] = 'search_controller/files'; </code></pre> <p>Within the function I use the URI helper to figure out which content to show.</p> <p>Now I can't get this to match, which points to my regexp being wrong. I'm sure this is a really obvious one but its late and my caffeine tank is empty :)</p> http://stackoverflow.com/questions/1901448/codeigniter-in-wordpress-page 0 Codeigniter In Wordpress Page unknown (google) 2009-12-14T15:11:37Z 2009-12-15T15:02:00Z <p>Alright, I have a wordpress site, that I want to have a clientportal built with codeigniter in it. For the sake of continued theme, I would like to have the codeigniter program where the page/text would normally be.</p> <p>Here is the site <a href="http://foretruss.com/wordpress/?page%5Fid=8" rel="nofollow">http://foretruss.com/wordpress/?page%5Fid=8</a> you can see the error I get when I have php_exec plugin installed and use the snippet.</p> <p>Any Idea's/help/word of advice?</p> http://stackoverflow.com/questions/1901703/codeigniter-formhelper-getting-database-rows-to-be-values-in-select-menu 0 Codeigniter form_helper getting database rows to be values in select menu sico87 2009-12-14T15:51:25Z 2009-12-15T12:48:57Z <p>I know this is going to be really simple once I post it,</p> <p>I am writing a form, which has a select menu in it, I want the values to pulled from the database, so I thought it would be something along these lines, </p> <p>My view</p> <pre><code>&lt;?php echo form_open('admin/save_content'); echo form_fieldset(); echo form_dropdown('categories', $select_options); echo form_submit('category_submit', 'Submit'); echo form_fieldset_close(); echo form_close(); ?&gt; </code></pre> <p>My controller</p> <pre><code>function add_content() { $data = array(); $this-&gt;is_logged_in(); $this-&gt;load-&gt;model('category_model'); $data['select_options'] = $this-&gt;category_model-&gt;get_all_online(); $this-&gt;load-&gt;view('admin/content/add_content', $data); } </code></pre> <p>my model</p> <pre><code>public function get_all_online() { $this-&gt;db-&gt;select('*'); $this-&gt;db-&gt;from('category'); $this-&gt;db-&gt;where('category_online', 1); $query = $this-&gt;db-&gt;get(); return $query-&gt;result(); } </code></pre> <p>now when I place the <code>$selected_options</code> in the form dropdown I get this error,</p> <blockquote> <p>A PHP Error was encountered</p> <p>Severity: 4096</p> <p>Message: Object of class stdClass could not be converted to string</p> <p>Filename: helpers/form_helper.php</p> <p>Line Number: 331</p> </blockquote> http://stackoverflow.com/questions/1692047/codeigniter-php5-exceptions 1 CodeIgniter PHP5 Exceptions kuroir 2009-11-07T04:56:57Z 2009-12-15T12:34:13Z <p>I've been wondering what's the best way to deal with exceptions on CodeIgniter. The usual way is to use <code>triger_error()</code> or <code>log_message()</code> ... however I've been wondering if there's a better way using try/catch.</p> <p>Any tips or recommendations on how to implement this into CodeIgniter?</p> <p>Currently I'm extending the Exceptions class, but I would like to know if someone else already dealt with this problem before.</p>