Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: error creating in my controller
Post: RE: error creating in my controller

Controller (application/controllers/Home.php) PHP Code: --
2,738 Views
2 Replies
09-19-2018, 01:48 AM
davidgv88
    Thread: Get Product List Form Magento {CI2.x]
Post: RE: Get Product List Form Magento {CI2.x]

Alternatively you can use Magento Webservices for retrieve products. Example: http://devdocs.magento.com/guides/m1x/api/soap/catalog/catalogProduct/catalog_product.list.html This tutorial is for...
4,567 Views
4 Replies
05-24-2017, 03:56 AM
davidgv88
    Thread: Codeigniter 4 for Enterprise Application
Post: RE: Codeigniter 4 for Enterprise Application

CI 4 is awesome! But.... We need the simplicity of Codeigniter with the libraries of other frameworks. For example: ACL (roles, permissions, etc) Multilanguage support with .po .mo files Command li...
31,758 Views
22 Replies
12-01-2016, 12:39 AM
davidgv88
  Tongue Thread: Can I replace the system/database directory of version 3.1 into version 2.2?
Post: RE: Can I replace the system/database directory of...

You are a cowboy! :)
10,261 Views
8 Replies
09-27-2016, 01:29 AM
davidgv88
    Thread: Internationalization & Localization ?
Post: RE: Internationalization & Localization ?

What do you think about the support .mo .po files. In older versions of CI always is through an array. It will be good to have multiple translation source formats possible, even if CI has 2-3 by de...
11,920 Views
8 Replies
07-05-2016, 12:57 AM
davidgv88
    Thread: Access Control List (ACL) Support
Post: Access Control List (ACL) Support

Most times I've developed a project've always needed an Access Control List (ACL) to define which users have access to the controllers. I've always installed the library zend-permissions-acl throug...
9,269 Views
1 Replies
07-05-2016, 12:36 AM
davidgv88
    Thread: CRUDigniter - Codeigniter auto code generator for CRUD
Post: RE: CRUDigniter - Codeigniter auto code generator ...

Crudigniter could be a Codeigniter library as GROCERY CRUD. http://www.grocerycrud.com/examples/set_a_relation Or a CLI tool for generate the models, controllers and views. Interesting....
32,945 Views
11 Replies
10-21-2015, 01:47 AM
davidgv88
    Thread: CRUDigniter - Codeigniter auto code generator for CRUD
Post: RE: CRUDigniter - Codeigniter auto code generator ...

It's awesome! I want collaborate. This tool could save time!
32,945 Views
11 Replies
10-21-2015, 01:37 AM
davidgv88
    Thread: Any CodeIgniter Expert Gurus out here?
Post: RE: Any CodeIgniter Expert Gurus out here?

jjalvi Wrote: (08-31-2015, 09:56 PM) -- rtorralba Wrote: (08-31-2015, 01:28 AM) -- davidgv88 Wrote: (08-31-2015, 12:14 AM) -- Hi jjalvi. For dynamically change the Page title of your product pag...
8,833 Views
5 Replies
09-01-2015, 01:27 AM
davidgv88
    Thread: Any CodeIgniter Expert Gurus out here?
Post: RE: Any CodeIgniter Expert Gurus out here?

Hi jjalvi. For dynamically change the Page title of your product pages: In your view you can send the title from your controller. In controller: Code: -- $data = array(); $data['page_tit...
8,833 Views
5 Replies
08-31-2015, 12:14 AM
davidgv88
    Thread: email library
Post: RE: email library

Hi isideas. Have you a shared server? Typically shared servers do not allow you to use the mail function. You can contact with Customer Service of your Hosting. With your method the email wil...
7,039 Views
5 Replies
08-31-2015, 12:00 AM
davidgv88
    Thread: help with autocomplete text input
Post: RE: help with autocomplete text input

Hi. You can use jQuery UI Autocomplete. http://jqueryui.com/autocomplete/#remote
5,600 Views
4 Replies
05-29-2015, 12:27 AM
davidgv88
    Thread: Codeigniter multilingual site
Post: RE: Codeigniter multilingual site

You can create a Hook that detects the domain and then make: $CI =&get_instance(); $CI->lang->load('messages','english') or $CI->lang->load('messages','french').
3,856 Views
3 Replies
05-22-2015, 04:49 AM
davidgv88
    Thread: I want to know best practice about CI3 security.
Post: RE: I want to know best practice about CI3 securit...

GrigoreMihai Wrote: (05-06-2015, 06:15 AM) -- davidgv88 Wrote: (05-06-2015, 04:03 AM) -- Hi Vimal. Look this: http://www.codeigniter.com/user_guide/general/security.html Always use $this->i...
8,432 Views
4 Replies
05-06-2015, 08:16 AM
davidgv88
    Thread: I want to know best practice about CI3 security.
Post: RE: I want to know best practice about CI3 securit...

Hi Vimal. Look this: http://www.codeigniter.com/user_guide/general/security.html Always use $this->input->post('value',TRUE); The TRUE is important for prevent XSS Injections. David
8,432 Views
4 Replies
05-06-2015, 04:03 AM
davidgv88
    Thread: What happens to $data when it is passed to the view?
Post: RE: What happens to $data when it is passed to the...

Hi! You can do this: $return = array(); $data = array(); $data['getMessages'] = $this->test_model->get_messages(); $data['foo'] = 'bar'; $return['data'] = $data; $this->load->view('/test/index',...
9,808 Views
8 Replies
04-29-2015, 08:43 AM
davidgv88
    Thread: CodeIgniter Survey
Post: RE: CodeIgniter Survey

Done!
21,183 Views
14 Replies
04-09-2015, 06:58 AM
davidgv88
    Thread: How can the hook be used in the controllers which I want?
Post: RE: How can the hook be used in the controllers wh...

Hi qzzm. You can do this in hook: //Get codeiginiter instance $CI =& get_instance(); //get controller $controller = $CI->router->fetch_class(); //get method (OPTIONAL) $method = $CI->ro...
4,760 Views
3 Replies
04-09-2015, 12:23 AM
davidgv88
    Thread: Trailing slash and links
Post: RE: Trailing slash and links

Hi agriz The best method is use site_url() function. For example:
5,222 Views
3 Replies
04-08-2015, 01:29 AM
davidgv88
    Thread: Vendor folder composer location
Post: RE: Vendor folder composer location

The solution: In application/config/config.php $config['composer_autoload'] = FCPATH.'vendor/autoload.php';
22,110 Views
0 Replies
03-11-2015, 03:17 AM
davidgv88

Theme © iAndrew 2016 - Forum software by © MyBB