Welcome Guest, Not a member yet? Register   Sign In
Search Results
    Thread: Surprised to see codeigniter 3.x running successfull with PHP 8.0 as well.
Post: RE: Surprised to see codeigniter 3.x running succe...

You can run CI 3.2.1 from pocketarc on PHP 8.3.4: https://github.com/pocketarc/codeigniter Upgraded mine from CI3.1.13. Just make sure you do not use any dynamic property in your project (or declar...
31,784 Views
16 Replies
03-22-2024, 09:27 PM
marwin
    Thread: APCu in CI 4.x missing?
Post: RE: APCu in CI 4.x missing?

Sorry for beeing a bit off topic - struggling with getting APCu to run with PHP 7.4 and CI 3.1.11. Does anyone have a solution for that? Nvr mind - found the files on github: https://github.com/bcit-...
6,918 Views
7 Replies
07-02-2021, 07:50 PM
marwin
    Thread: Migrating CI3 to CI4
Post: RE: Migrating CI3 to CI4

includebeer Wrote: (11-05-2020, 04:26 PM) -- I don’t know about MySQL 8. The CI3 web apps I maintain on PHP7 uses Oracle. For upgrading, I recommend reading the instructions from one version to th...
6,639 Views
7 Replies
11-05-2020, 06:15 PM
marwin
    Thread: Migrating CI3 to CI4
Post: RE: Migrating CI3 to CI4

includebeer Wrote: (11-04-2020, 03:41 PM) -- marwin Wrote: (11-01-2020, 11:45 PM) -- I am running a CI site with version 3.0.4 and MySQL 5.5 - SSD. Currently exploring options to update the entire ...
6,639 Views
7 Replies
11-04-2020, 07:26 PM
marwin
    Thread: Migrating CI3 to CI4
Post: Migrating CI3 to CI4

Hi, I am running a CI site with version 3.0.4 and MySQL 5.5 - SSD. Currently exploring options to update the entire site to CI 4.0.4 to allow us to run PHP 7.2 and MySQL 8.0 (if possible). We...
6,639 Views
7 Replies
11-01-2020, 11:45 PM
marwin
    Thread: PayPal Plus (Germany)
Post: PayPal Plus (Germany)

Has anyone integrated PayPal Plus in their project? I am looking for a sample if possible. I just dont understand how to integrate this for a simple payment page that provides order number and amount ...
976 Views
0 Replies
01-18-2019, 09:40 PM
marwin
    Thread: How to create sitemap XML?
Post: RE: How to create sitemap XML?

You can dynamically create an XML sitemap in CI through a cronjob executed function that builds the XML based on your specific content setup. Simply loop through the individual content tables and add ...
3,403 Views
2 Replies
12-08-2018, 03:29 AM
marwin
    Thread: Defer helper output - possible?
Post: Defer helper output - possible?

I am still trying to optimise my site and noticed that my contact form's fileupload (fileinput.js from Krajee.com) causes a huge delay on the FCP time. This form however is below the fold and added wh...
1,460 Views
0 Replies
12-05-2018, 10:30 PM
marwin
    Thread: File Upload Library and special characters
Post: RE: File Upload Library and special characters

OK i solved it in a different way. since I actually want to move the files from temp to a different folder I added this to the file moving: // Move files foreach ($this->data['data']['form_data'][...
12,300 Views
12 Replies
11-24-2018, 07:24 AM
marwin
    Thread: File Upload Library and special characters
Post: RE: File Upload Library and special characters

OK so i did a quick extension to change the name - that works: return filename.replace('(', '_').replace(']', '_').replace('ä', 'ae').replace('ü', 'ue').replace('ö', 'oe').toLowerCase(); -> filename...
12,300 Views
12 Replies
11-24-2018, 02:43 AM
marwin
    Thread: Codeigniter is SEO friendly or Not?
Post: RE: Codeigniter is SEO friendly or Not?

I agree - no problem in setting up nice URLs, canonical definitions, meta-tags or JSON information. I am pretty happy actually and google likes what I give it too. But then content is king anyway - it...
15,988 Views
11 Replies
11-23-2018, 07:58 PM
marwin
    Thread: File Upload Library and special characters
Post: RE: File Upload Library and special characters

OK I see what you mean. I have a function to filter special characters for the nice URLs in the setup that I could use. Let me see if I get this right: I need to change the name here: slugCal...
12,300 Views
12 Replies
11-23-2018, 07:54 PM
marwin
    Thread: Session Data vs. Config Variables
Post: RE: Session Data vs. Config Variables

you mean through models? yes that has been implemented.
11,135 Views
14 Replies
11-09-2018, 10:27 PM
marwin
    Thread: Session Data vs. Config Variables
Post: RE: Session Data vs. Config Variables

php_rocs Wrote: (11-09-2018, 07:20 AM) -- @marwin, Are you using MySQL?  Also, have you considered using VIEWs? -- Hi, yes MySQL and I am making extensive use of views but the menu is standar...
11,135 Views
14 Replies
11-09-2018, 06:45 PM
marwin
    Thread: Session Data vs. Config Variables
Post: RE: Session Data vs. Config Variables

Pertti Wrote: (11-09-2018, 02:07 AM) -- $custom_config_data = '
11,135 Views
14 Replies
11-09-2018, 02:52 AM
marwin
    Thread: File Upload Library and special characters
Post: RE: File Upload Library and special characters

jreklund Wrote: (11-08-2018, 01:12 PM) -- Hi, I just re-read everything. And your Javascript looks okay. The file name aren't submitted in the URL. Can you find the PHP code for the upload part? ...
12,300 Views
12 Replies
11-08-2018, 06:27 PM
marwin
    Thread: Session Data vs. Config Variables
Post: RE: Session Data vs. Config Variables

Pertti Wrote: (11-08-2018, 09:36 AM) -- Ah right, so you don't overwrite config.php but you do write a file in config folder? I'd be a bit careful with allowing PHP to write in that folder. If you...
11,135 Views
14 Replies
11-08-2018, 06:26 PM
marwin
    Thread: Session Data vs. Config Variables
Post: RE: Session Data vs. Config Variables

Pertti Wrote: (11-08-2018, 05:02 AM) -- How would you implement option 2 - overwrite config.php file? -- Fairly easy. In autoload.php I added this: $autoload['config'] = array('sub_navigation_en...
11,135 Views
14 Replies
11-08-2018, 05:41 AM
marwin
    Thread: Session Data vs. Config Variables
Post: RE: Session Data vs. Config Variables

Pertti Wrote: (11-08-2018, 03:33 AM) -- You should try to find a way to avoid making 112 queries, one for each individual piece of content. If menu is also built from database, you could use simpl...
11,135 Views
14 Replies
11-08-2018, 04:05 AM
marwin
    Thread: Session Data vs. Config Variables
Post: RE: Session Data vs. Config Variables

qury Wrote: (11-08-2018, 02:40 AM) -- can you please describe the real world scenario so we can better imagine what you try to accomplish? You mentioned that the "the entries depend upon content b...
11,135 Views
14 Replies
11-08-2018, 03:53 AM
marwin

Theme © iAndrew 2016 - Forum software by © MyBB