Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: javascript/css style
Post: RE: javascript/css style

jaysondotp Wrote: (12-14-2014, 07:23 PM) -- i have javascriprt function that there is an id name and i need to call the value into html.   now it is possible to add the id name inside my html value, ...
5,204 Views
0 Replies
12-14-2014, 11:56 PM
trentramseyer
    Thread: Check method/function exist with Controller
Post: RE: Check method/function exist with Controller

Depending where in the application you want this to happen, you can use the _remap function from CI https://ellislab.com/codeigniter/user-guide/general/controllers.html PHP Code: -- public fu...
11,766 Views
4 Replies
12-11-2014, 10:39 PM
trentramseyer
    Thread: $this->form_validation->error_array() not work
Post: RE: $this->form_validation->error_array() not work

artha.nugraha Wrote: (12-11-2014, 03:01 AM) -- please help, i'll try this code in my localhost is working but not in may hosting server. PHP Code: -- public function register() {         $th...
7,442 Views
0 Replies
12-11-2014, 12:50 PM
trentramseyer
    Thread: Design Patterns in PHP
Post: RE: Design Patterns in PHP

Nice Find.
14,376 Views
4 Replies
12-11-2014, 12:47 PM
trentramseyer
    Thread: File Folder Is Not Writable
Post: RE: File Folder Is Not Writable

Narf Wrote: (12-06-2014, 12:42 PM) -- trentramseyer Wrote: (12-06-2014, 04:54 AM) -- Note: Codeigniter has a difficult time with relative paths to file locations, so if the code is trying relative y...
19,322 Views
0 Replies
12-07-2014, 04:01 PM
trentramseyer
    Thread: codeigniter in a subdirectory, some issues.
Post: RE: codeigniter in a subdirectory, some issues.

malokevi Wrote: (12-04-2014, 08:32 AM) -- http://sleepawake.com/2013/application/common/styles/reset.css whereas typically I would expect this to work: http://sleepawake.com/2013/common/styles/...
24,697 Views
0 Replies
12-06-2014, 05:10 AM
trentramseyer
    Thread: File Folder Is Not Writable
Post: RE: File Folder Is Not Writable

Note: Codeigniter has a difficult time with relative paths to file locations, so if the code is trying relative you can attempt to use something like PHP Code: -- $_SERVER["DOCUMENT_ROOT"] . "/dir...
19,322 Views
0 Replies
12-06-2014, 04:54 AM
trentramseyer
    Thread: Strange (to me) routing behaviour
Post: RE: Strange (to me) routing behaviour

lazylazz Wrote: (12-04-2014, 09:22 PM) -- I get a 404 if i try accessing abc.com/hello (which again, I expect).  What I find peculiar though is that if I enter abc.com/example/hi in my browser, I can...
7,008 Views
0 Replies
12-06-2014, 04:50 AM
trentramseyer
    Thread: Handle in controller category, subcategory,page_name
Post: RE: Handle in controller category, subcategory,pag...

scion Wrote: (12-05-2014, 07:20 PM) -- So task is: I have on a site category, subcategory. Obviously they have something like post (or product, whatever) and of course i using pagination segment. ...
5,151 Views
0 Replies
12-06-2014, 04:32 AM
trentramseyer
    Thread: CodeIgniter in Subdirectories Using .htaccess
Post: RE: CodeIgniter in Subdirectories Using .htaccess

EpicKris Wrote: (12-05-2014, 04:15 PM) -- I have a CodeIgniter installation which I want to 'duplicate' into 2 subdirectories so example.com, example.com/subdirectory1, and example.com/subdirectory2 ...
7,901 Views
0 Replies
12-06-2014, 04:11 AM
trentramseyer
    Thread: Multisite with codeigniter HMVC
Post: RE: Multisite with codeigniter HMVC

Really depends if they are running independently of each other as khalilhimura suggested you can just load different application folders per domain. Or if you are doing a multi-site system that wil...
15,709 Views
0 Replies
12-05-2014, 10:51 PM
trentramseyer
    Thread: Sessions - Please Change
Post: RE: Sessions - Please Change

geekita Wrote: (12-05-2014, 02:29 PM) -- trentramseyer Wrote: (12-04-2014, 06:37 PM) -- Btw, I updated Session class for CI 2.2.x so I can use Native while waiting for 3 to be complete. (not goin...
15,333 Views
0 Replies
12-05-2014, 10:43 PM
trentramseyer
    Thread: Sessions - Please Change
Post: RE: Sessions - Please Change

Btw, I updated Session class for CI 2.2.x so I can use Native while waiting for 3 to be complete. (not going to claim it is 100% but seems to work well in my tests) https://github.com/trentramseye...
15,333 Views
0 Replies
12-04-2014, 06:37 PM
trentramseyer
    Thread: Code Igniter vs Laravel
Post: RE: Code Igniter vs Laravel

Yep, just spent last night rewriting Session class to use all native. Still stores to DB like old way when needed. Just removed any reference to cookie setting that wasn't needed.
146,321 Views
0 Replies
12-04-2014, 06:18 PM
trentramseyer
    Thread: CodeIgniter or PhalconPHP ?
Post: RE: CodeIgniter or PhalconPHP ?

Narf Wrote: (11-17-2014, 04:26 AM) -- Somebody close this thread already, Phalcon is not even a framework. -- Curious as what it is called then.
63,510 Views
0 Replies
12-02-2014, 07:28 PM
trentramseyer
    Thread: Best way to remove index.php and redirect to https
Post: RE: Best way to remove index.php and redirect to h...

Remove the index.php, set the Index file in the config.php file to blank Code: -- /* |-------------------------------------------------------------------------- | Index File |------------------...
5,742 Views
0 Replies
12-02-2014, 03:25 AM
trentramseyer
    Thread: Authentication, enough already!
Post: RE: Authentication, enough already!

Previous thread turned weird rather quickly. The Anti-Auth stance could be something that keeps various people away from using CI in future since Symfony, Laravel, Yii, all have base Auth classes t...
27,634 Views
8 Replies
12-02-2014, 03:06 AM
trentramseyer
    Thread: CodeIgniter or PhalconPHP ?
Post: RE: CodeIgniter or PhalconPHP ?

I have tried to do a matching program in Phalcon that I did in CodeIgniter, various CMS tools etc. I found that I got locked into asking many questions on their forums because their documentation w...
63,510 Views
0 Replies
12-01-2014, 11:26 PM
trentramseyer
    Thread: Sessions - Please Change
Post: Sessions - Please Change

The Sessions have always been my biggest gripe with Codeigniter. Number one problem is the random logouts, no matter what your settings are. Please put this to be overhauled on top of the list!...
15,333 Views
0 Replies
11-18-2014, 01:36 PM
trentramseyer

Theme © iAndrew 2016 - Forum software by © MyBB