Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 972287
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T03:06:03+00:00 2026-05-16T03:06:03+00:00

I am trying to display a table which contains 8500 records, I am using

  • 0

I am trying to display a table which contains 8500 records, I am using the same controller/model functions as I have used throughout the site which all work fine.

On this page however, I just see a blank screen. Is this a known Issue with codeigniter? Is there a work around? I am totally stumped, my only option I guess is to split the table into sub tables?

I can show you my code if needed.

Thanks

Dan

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T03:06:04+00:00Added an answer on May 16, 2026 at 3:06 am

    When youget a blank screen it usually mean you’ve done something to receive a PHP error.

    To see what that error is, check the php error log. I suspect that you’ve exceeded the maximuim allowed memory limit.

    php_value memory_limit 256M
    php_value display_errors 1
    php_flag log_errors on
    php_value error_log /some/path/on/the/box/you/have/acess/to.log
    

    Below are the hard coded PHP ways to enable the settings, above this line are .htaccess directives you can set that will kick in for your whole app.

    To make sure error reporting is turned on and you’re displaying errors you can do..

    ini_set('display_errors', 'On');
    error_reporting(E_ALL);
    

    To find out where your error log is make a test script to tell you.

    die(ini_get('error_log'));
    

    Make sure log_errors ini setting is enabled too in your php.ini file.

    If it is indeed that you’re exceeding the max allowed memory limit you can increase it by doing

    ini_set(“memory_limit”,”256M”); // 256 megabytes
    

    I recommend updating this in your php.ini file and restarting apache for the changes to kick in.

    If your script is dealing with large amounts of data and it can take a while to run then you might also exceed the max_execution_time ini setting.

    To see what it’s currently set at, you can do

    die(ini_get('max_execution_time'));
    

    There is a nice PHP helper funciton to set this for you set_time_limit

    set_time_limit(300); // Input in seconds, this is 5 minutes.
    

    Hope this helps you get somewhere.
    Your best bet is looking at your error log though.

    Good luck.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have one table which display data as from Dynamic Content in 1 column.
I am trying to create table using TTTableViewController . I want to display an
I am trying to cause a div (which contains a table) to hide based
I am trying to display a list of cookbooks which have been tagged with
I'm trying to display a table full of twitter statuses (yes, this is the
I'm trying to create a layout with display: table and alike, but it seems
Made solution change: I am trying to display a html table of data.. In
I'm trying to inherit QSqlTableModel to make data im my table display in way
I'm trying to understand this bit of code: in display.php: <html> ... <body> <table>
Trying to display current time with PHP (using this ): $date = date('m/d/Y h:i:s

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.