⚠ In case you've missed it, we have migrated to our new website, with a brand new forum. For more details about the migration you can read our blog post for website migration. This is an archived forum. ⚠

  •     

profile picture

Blank screen when trying to use CRUD EXAMPLES!?



lmfsthefounder

lmfsthefounder
  • profile picture
  • Member

Posted 26 October 2018 - 17:38 PM

So I just installed the latest Grocery Crud on CI 2.1.4. 

 

I've added the example sql tables to my db. 

 

When viewing /Examples/, I see the screenshot as shown below. If I click any of the links, I go to a blank page, no output, no source.

 

Why? It seems like when I call '$output = $this->grocery_crud->render()' nothing happens here. I can echo a test line before this, but when I echo after this line I get no output after this point of the file. 

 

In case anyone needs, my HTACCESS is looking like this, however, I am using IIS so it has to be converted to web.config.

 

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?$1 [L]
</IfModule>