Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: How make composer for driver
Post: How make composer for driver

I could make a composer package for helpers But how do make a package for drivers? Or library?
477 Views
2 Replies
05-23-2023, 10:07 PM
omid_student
    Thread: Delete folder quickly
Post: Delete folder quickly

I used database caching in my project. When db makes many files, when I try to delete cache with $this->db->delete_cache_all() That takes a long time and the browser hanging Please give me a soluti...
330 Views
0 Replies
04-24-2023, 05:15 AM
omid_student
    Thread: How get current month records in Mysql?
Post: How get current month records in Mysql?

I have many records for all days. Some days have no data example 2020-12-10 or others. When I use the below query: SELECT COUNT(*),DATE(date_register) FROM tbl_order WHERE MONTH(NOW()) = 1 The que...
1,097 Views
2 Replies
05-10-2022, 05:11 AM
omid_student
    Thread: Problem in Google Search Console
Post: RE: Problem in Google Search Console

No, The problem was errors in js files We solved it and now Google Search Console retrieves site data
1,635 Views
4 Replies
04-26-2022, 08:54 AM
omid_student
    Thread: Problem in Google Search Console
Post: Problem in Google Search Console

Hi guys, I try to use Google Search Console in my project Verifications are done and Google accepts them. But Google cannot retrieve data from my site. My settings are adjusted DNS setting and HTM...
1,635 Views
4 Replies
04-26-2022, 01:24 AM
omid_student
    Thread: Cache the page with output class
Post: Cache the page with output class

Hi, I want to cache output for each user IP, not URI Example the $this->output->cache(10); cache the page for domain.com/search But I want to cache with the user's IP Actually, I try to cache page...
640 Views
0 Replies
04-22-2022, 11:45 AM
omid_student
    Thread: Use recursive parser
Post: RE: Use recursive parser

InsiteFX Wrote: (02-25-2022, 01:34 AM) -- CodeIgniter 4 maybe the same similar for CodeIgniter 3 not sure. CodeIgniter 4 User Guide - View Parser -> View Fragments (https://codeigniter.com/user_gu...
1,582 Views
2 Replies
02-25-2022, 12:50 PM
omid_student
    Thread: Use recursive parser
Post: Use recursive parser

Hi, I use the parser library to show the HTML page. I try to show tree menu on the web but I don't know how to do it Does support recursive parser?
1,582 Views
2 Replies
02-24-2022, 01:06 PM
omid_student
    Thread: How get null result if not found in Mysql
Post: RE: How get null result if not found in Mysql

nfaiz Wrote: (01-13-2022, 02:01 AM) -- SELECT * FROM tbl_order WHERE DATE(order_date) IN ('2021-01-01','2021-01-02','2021-01-03','2021-01-04','2021-01-05') OR order_date IS NULL GROUP BY DATE(order_d...
2,721 Views
6 Replies
01-13-2022, 02:21 AM
omid_student
    Thread: How get null result if not found in Mysql
Post: RE: How get null result if not found in Mysql

php_rocs Wrote: (01-12-2022, 12:16 PM) -- @"omid_student" , Does the other dates appear in another list or query?  Are there any records associated with the missing dates?  Your query is giving yo...
2,721 Views
6 Replies
01-12-2022, 10:32 PM
omid_student
    Thread: How get null result if not found in Mysql
Post: RE: How get null result if not found in Mysql

php_rocs Wrote: (01-12-2022, 07:33 AM) -- @"omid_student" , Please show us the SQL that you are using to create the results.  More then likely it is how your tables are joined. Also, if possible g...
2,721 Views
6 Replies
01-12-2022, 08:12 AM
omid_student
    Thread: How get null result if not found in Mysql
Post: How get null result if not found in Mysql

Hi, I need to select all orders for last week. Actually for 2022-01-12,2022-01-11,2022-01-10,2022-01-09,2022-01-08,2022-01-07,2022-01-06 But I have orders only for 2022-01-11,2022-01-10,2022-01-09 ...
2,721 Views
6 Replies
01-11-2022, 10:50 PM
omid_student
    Thread: Use language in Parser
Post: RE: Use language in Parser

InsiteFX Wrote: (12-18-2021, 01:56 AM) -- Array sizes are limited by the memory size, so more memory the bigger the array size can be. -- Thank you
2,826 Views
6 Replies
12-18-2021, 02:10 AM
omid_student
    Thread: Use language in Parser
Post: RE: Use language in Parser

kenjis Wrote: (12-18-2021, 01:13 AM) -- You can't use lang() in templates. Pass the string as $data: PHP Code: -- $this->parser->parse('blog_template', $data); -- -- Is there a limit for adding ...
2,826 Views
6 Replies
12-18-2021, 01:27 AM
omid_student
    Thread: Use language in Parser
Post: RE: Use language in Parser

kenjis Wrote: (12-17-2021, 06:48 PM) -- PHP Code: -- {+ lang number.terabyteAbbr +} -- See https://codeigniter4.github.io/CodeIgniter4/outgoing/view_parser.html#provided-plugins -- I used Codeig...
2,826 Views
6 Replies
12-18-2021, 01:06 AM
omid_student
    Thread: Use language in Parser
Post: Use language in Parser

Hi, Can I use lang in the parser library? Currently, I use lang("") in HTML and parse HTML with Parser library. I need to use example {lang_login} or other without use lang("")
2,826 Views
6 Replies
12-17-2021, 05:09 AM
omid_student
    Thread: Permission denied file_get_contents
Post: RE: Permission denied file_get_contents

InsiteFX Wrote: (12-15-2021, 01:32 AM) -- Thanks, glad you got it working. -- Thanks
2,659 Views
4 Replies
12-15-2021, 01:57 AM
omid_student
    Thread: Permission denied file_get_contents
Post: RE: Permission denied file_get_contents

The problem was solved with below command in Centos 7: setsebool -P httpd_can_network_connect on
2,659 Views
4 Replies
12-14-2021, 05:58 AM
omid_student
    Thread: Permission denied file_get_contents
Post: Permission denied file_get_contents

Hi, I have a WebSocket service on my server And I try to use that with file_get_contents But when I run it, occur the error permission denied You can see here http://185.211.58.96/welcome/test Wh...
2,659 Views
4 Replies
12-13-2021, 12:32 PM
omid_student
    Thread: Change language runtime
Post: RE: Change language runtime

hxd Wrote: (11-21-2021, 09:09 PM) -- Please read this docs https://codeigniter.com/user_guide/outgoing/localization.html#locale-detection -- That is Codeigniter 4 and I'm still on Codeigniter 3 ...
3,031 Views
6 Replies
11-22-2021, 12:58 PM
omid_student

Theme © iAndrew 2016 - Forum software by © MyBB