Codeigniter WebService library
Webservice library is a Codeigniter Class that let you to make json and xml webservices + RSS its very simple and easy to use . Download version 1.0.0 , from Github OR Mysite How to install codeigniter...
View ArticleOrder By Date Question
On my database column when a user creates a thread the date I set date using php time() Will it still sort date out correct if use time() instead of date() if not what would you recommend. Because I...
View ArticlePagination with search
I've had some issues searching with pagination. I've resolved it with the following code, but I feel I'm basically doing something fundamentally wrong. Could someone check and give me feedback about...
View Articlesetting flashdatas
Hi, I set flashdata message and then when I load a view message is not showing up, but when I redirect after setting flashdata message is showing up. Is it how it is supposed to work? I need to show...
View ArticleThis site can’t be reached
Hi! I have a big problem. When I move my CI app to a live server, I get this error: This site can’t be reached www.xenapedia.com refused to connect. Try: Checking the connection Checking the proxy and...
View Articlejoin slack chat for Codeigniter
Hi all, I am real excited to announce I've set up a Slack chat for Codeigniter https://codeigniterchat.slack.com If you have any trouble getting in, just email me at boblennes at msn dot com for an...
View ArticleIs Codeigniter 4 supports "Verb Based Routing"?
GET /api/order Returns all orders GET /api/order/3 Returns details order #3 POST /api/order Create new order PUT /api/order/3 Update order #3 DELETE...
View ArticleProblem with multi-level arrays and Template Parser
My $res (response from MODEL): PHP Code: array (size=3) 'count' => int 142 'unread_dialogs' => int 2 'items' => array (size=2) 0 => array (size=4) 'unread'...
View ArticlePostgresql error in try block
Hello, In codeigniter 3.1 / postgresql 9.4 application in development mode running code like : PHP Code: try { $updated_result= $this->msettings->updateSettings( $updateDataArray ) ;echo...
View ArticleWhat's better for my code below
I am just trying to figure out what is more appropriate these days. What is better having my validate password function at top PHP Code: public function login($username, $password) { if...
View ArticleController not found when using namespaced modules
Hi; I new to the psr4 world and I am trying to test Modules in CodeIgniter 4 I did the following: 1) Create folder Modules with the following structure: application Modules ..... Blog .............
View Articleimage upload and crop
Hi all, i have baught a cool jquery plugin on code canyon but cant seem to get it to work with CI. is anyone willing to help me thanks
View ArticleOh $hit, git! Problems messing up Git?
Oh $hit, git! Problems messing up Git? Read this article: Oh $hit, git!
View ArticleSame cookie name, different domain
I have: Code: $config['cookie_domain'] = '.' . $_SERVER['SERVER_NAME']; So why do I have one cookie named ci_session with the domain: Code: .mysite.com And another cookie named ci_session with the...
View Article[split] Stored Procedure not returning all records
Regards, I have a problem calling a stored procedure, Codeigniter processes it well but it only returns me 2 records and in my database there are 3, it always removes the first record and it does not...
View ArticleCreating a new session instead of updating
Using version 2.0.2 and storing sessions in a database. Issue persists with both $config['cookie_domain'] = ''; and $config['cookie_domain'] = '.' . $_SERVER['SERVER_NAME']; I have a cart. I redirect...
View ArticleArray to string conversion Error
I get the following error A PHP Error was encountered Severity: Notice Message: Array to string conversion Filename: database/DB_query_builder.php Line Number: 676 Backtrace: File:...
View ArticleMigrate project Symfony to Codeigniter
Hello, i'm new in CI and how the topic is, I need to migrate existing project in Symfony to CI. What I need to look for? How to start and migrate step by step? Project is not so large. Greetings
View Articleloading template only once ?
Hello to the nice community ! I'm a beginner in CI (but not in PHP), i saw the CI logic is to load the template files in the controller in each method. At the end you load the same files all the time,...
View ArticleRouting – error in tutorial?
https://www.codeigniter.com/user_guide/g...uting.html On this page you can read: Quote:Important The reserved routes must come before any wildcard or regular expression routes....
View Article