4,487 reputation
21138
bio website
location
age
visits member for 3 years, 8 months
seen 8 hours ago
stats profile views 311

Jun
14
reviewed Reject suggested edit on CodeIgniter complains about undefined variable in view yet print_r displays results
Jun
7
revised extjs do some action with window components on it's load
added 89 characters in body
May
31
comment CodeIgniter - Two Forms, One Page
Per your edit: stackoverflow.com/questions/5802729/…
May
31
comment jQuery success function not running in my program
$('#message').html('<h1><sukses/h1>');? Did you mean $('#message').html('<h1>sukses</h1>');? The first won't display anything in the #message element, so it might be working but you just can't see it.
May
31
comment Codeigniter base_url with port number [solved]
1) can't you just add another ip address for this site? 2) any antivirus or firewall restrictions? 3) did you change the webserver key in the config? (ironspeed.com/Designer/8.0.2/WebHelp/Part_VI/…) Also, did you see this: support.microsoft.com/kb/149605 ?
May
31
reviewed Approve suggested edit on Get value array form from an HTML form and post to database
May
30
answered CodeIgniter - Two Forms, One Page
May
29
comment PyroCMS / Codeigniter : too many session entries in db
I have one little blind spot in my left eye...that must have been where that line was ;) Thanks for expanding your answer.
May
29
comment PyroCMS / Codeigniter : too many session entries in db
The manual doesn't mention anything about the 5 minute update nor the id behavior. But, looking at the source it looks like it does regenerate every 5 minutes, but also looks like it tries to update the existing session if match ip and/or match user agent is set. Think this would fix the dupe entries?
May
29
comment Exchange server and Codeigniter email library
These types of questions will do better on serverfault.com
May
29
comment Exchange server and Codeigniter email library
How in the world would using cron solve this issue?
May
28
comment Unable to decrypt/decode key
Good to hear Anthony. Now comes the fun part (actually working with code) :) Enjoy!
May
28
revised Unable to decrypt/decode key
added 2 characters in body
May
28
comment Unable to decrypt/decode key
@datasage good point, thanks. We're referring to the Amazon Linux AMI.
May
28
comment Unable to decrypt/decode key
Yeah that's an effective way -- just echo it out and copy it down. The problem is the result will differ depending on how the encryption happens (crypto is very, very, very complicated). mcrypt is an encryption library which needs to be installed on the system you are using. WAMP comes with it, but ec2 micro does not. So you encrypted the string locally with mcrypt, but when you got on ec2, mcrypt wasn't there so CI fell back to another encryption method to decrypt the string which isn't compatible, leaving you with a string of gibberish :)
May
28
comment Unable to decrypt/decode key
How did it get encrypted? I was under the impression you encrypted it via $this->encrypt->encode('consumer_secret_string123123123'); and stored the result in the config. If that was the case, when you created the encrypted consumer secret on WAMP it was likely using mcrypt which isn't available on default ec2 micro which means it won't decrypt correctly.
May
28
answered Unable to decrypt/decode key
May
27
comment URL Not Found (CodeIgniter App on Amazon EC2)
No, standard procedure to be in html root. But it makes a difference to htaccess (RewriteBase). Yeah, the WAMP stuff should port Ok, just a matter of aligning everything. Also, take PT out of htaccess; should just be [L] on the index php line
May
27
comment URL Not Found (CodeIgniter App on Amazon EC2)
chmod 0755 is probably a more sane setting (777 gives execution privilege which isn't really something you want in your document root). You are working in the root html folder correct? ie you aren't in /var/www/html/codeigniter but in /var/www/html
May
27
comment PyroCMS / Codeigniter : too many session entries in db
stackoverflow.com/q/2438835/183254 anything in there help?