Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: WebSockets in PHP/CI/jQuery
Post: RE: WebSockets in PHP/CI/jQuery

One last bump?
30,428 Views
16 Replies
10-31-2015, 08:19 PM
jLinux
    Thread: WebSockets in PHP/CI/jQuery
Post: RE: WebSockets in PHP/CI/jQuery

mlantz Wrote: (10-26-2015, 11:24 AM) -- Hey you want to look at using http://socketo.me/ it handles sockets for PHP there are a handful of tutorials on the web related to it too :) -- Actually, yea...
30,428 Views
16 Replies
10-26-2015, 12:40 PM
jLinux
    Thread: WebSockets in PHP/CI/jQuery
Post: WebSockets in PHP/CI/jQuery

This question isn't completely related to CI framework, but I hope to use CI for it, and I believe theres a lot of bright individuals here, so ill ask! I have plenty of instances on my CI applicati...
30,428 Views
16 Replies
10-26-2015, 10:34 AM
jLinux
    Thread: Creating Web Installer for CI Based Application
Post: RE: Creating Web Installer for CI Based Applicatio...

mwhitney Wrote: (10-20-2015, 12:27 PM) -- A lot of the work in guiding the process is simply anticipating what a user might do wrong.  One of the biggest things is tracking what has already been don...
10,974 Views
8 Replies
10-20-2015, 12:48 PM
jLinux
    Thread: Creating Web Installer for CI Based Application
Post: RE: Creating Web Installer for CI Based Applicatio...

Thanks AidanW My buddy thinks that the installer should actually be a part of CI... The problem I have with that, is if they somehow provide a value, that somehow gets past the PHP sanity checking ...
10,974 Views
8 Replies
10-20-2015, 10:47 AM
jLinux
    Thread: Creating Web Installer for CI Based Application
Post: Creating Web Installer for CI Based Application

Im looking for a way to create a decent installer for an open source application, based on CI. Does anyone have any recommendations? I was thinking have it so when they git clone/untar/unzip/whatev...
10,974 Views
8 Replies
10-20-2015, 09:11 AM
jLinux
    Thread: Admin Panel
Post: RE: Admin Panel

Checkout Bonfire (https://github.com/ci-bonfire/Bonfire), it might be something youd like..
4,077 Views
3 Replies
10-19-2015, 09:12 PM
jLinux
    Thread: Create a custom MySQL connection error
Post: RE: Create a custom MySQL connection error

@mwhitney, Im looking for a way to create a decent installer for this application. Do you have any recommendations? I was thinking have it so when they git clone/untar/unzip/whatever the files initia...
5,618 Views
5 Replies
10-19-2015, 03:52 PM
jLinux
    Thread: Create a custom MySQL connection error
Post: RE: Create a custom MySQL connection error

Awesome, thank you. Im also going to need to create an installer for this app, so this is helpful
5,618 Views
5 Replies
10-19-2015, 01:56 PM
jLinux
    Thread: Create a custom MySQL connection error
Post: RE: Create a custom MySQL connection error

I answered a lot of my questions above, just to come up with more questions :-D hah Heres the code thus far, (obviously in dev, hence all the die() statements) PHP Code: --
5,618 Views
5 Replies
10-19-2015, 09:59 AM
jLinux
    Thread: Create a custom MySQL connection error
Post: Create a custom MySQL connection error

When the MySQL server isn't started, or not reachable over the network, or if the creds are incorrect, the CI will show a PHP error saying the MySQL connection failed. I was wondering if there was a w...
5,618 Views
5 Replies
10-19-2015, 09:34 AM
jLinux
    Thread: Need a little help with PHP_AUTH_(USER|PW)
Post: RE: Need a little help with PHP_AUTH_(USER|PW)

mwhitney Wrote: (10-13-2015, 09:51 AM) -- I can't really use this type of authentication in my project, so I'm mostly going on the documentation. However, I'm assuming that mod_rewrite is losing the ...
9,985 Views
6 Replies
10-13-2015, 07:59 PM
jLinux
    Thread: Need a little help with PHP_AUTH_(USER|PW)
Post: RE: Need a little help with PHP_AUTH_(USER|PW)

mwhitney Wrote: (10-08-2015, 08:19 AM) -- jLinux Wrote: (10-08-2015, 07:02 AM) -- P.S. This is what I tried: http://php.net/manual/en/features.http-auth.php#52405 With no avail -- That one uses th...
9,985 Views
6 Replies
10-08-2015, 08:35 AM
jLinux
    Thread: Need a little help with PHP_AUTH_(USER|PW)
Post: RE: Need a little help with PHP_AUTH_(USER|PW)

mwhitney Wrote: (10-08-2015, 06:49 AM) -- . There are also a  few StackOverflow posts about it which tend to eventually come back to this one (http://stackoverflow.com/questions/17018586/apache-2-4-p...
9,985 Views
6 Replies
10-08-2015, 07:02 AM
jLinux
    Thread: Help creating a route for sub-folder holding controllers
Post: RE: Help creating a route for sub-folder holding c...

cartalot Wrote: (10-07-2015, 04:56 PM) -- which version of codeigniter are you using? if you are using codeigniter 2 then use this, it allows you to use subfolders in the controller  https://degre...
11,189 Views
5 Replies
10-07-2015, 05:05 PM
jLinux
    Thread: Need a little help with PHP_AUTH_(USER|PW)
Post: Need a little help with PHP_AUTH_(USER|PW)

So this question is a little more about PHP I guess, than it is specific to CodeIgniter, but I figure theres a bunch of very smart people her, so ill try! My application will authenticate using the...
9,985 Views
6 Replies
10-07-2015, 04:47 PM
jLinux
    Thread: Help creating a route for sub-folder holding controllers
Post: RE: Help creating a route for sub-folder holding c...

iamthwee Wrote: (10-07-2015, 01:53 PM) -- I think narf mentioned the default route has to be top level and there are no plans to change this. The way I get around this is to set the route to go to...
11,189 Views
5 Replies
10-07-2015, 04:36 PM
jLinux
    Thread: How can i prevent user vote double
Post: RE: How can i prevent user vote double

Why dont you modify your model to add the user ID to the vote, and when it adds a new vote, look for a row with the user ID, if it exists, update it, if not, insert a new one - This would allow users ...
11,220 Views
7 Replies
10-07-2015, 11:44 AM
jLinux
    Thread: Help creating a route for sub-folder holding controllers
Post: Help creating a route for sub-folder holding contr...

In my CI application, all of the administrative actions are in controllers within the /controllers/admin/ folder.... Quote: -- [root@server application]# tree controllers/ controllers/ |-- Account.p...
11,189 Views
5 Replies
10-07-2015, 11:20 AM
jLinux
    Thread: $this->lang->line with passing parameters
Post: RE: $this->lang->line with passing parameters

Nice, the code in here is exactly what i planned on doing: https://github.com/bcit-ci/CodeIgniter/pull/3223#issuecomment-54707715
12,652 Views
7 Replies
10-04-2015, 02:13 PM
jLinux

Theme © iAndrew 2016 - Forum software by © MyBB