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 9052255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T13:07:19+00:00 2026-06-16T13:07:19+00:00

I have index.php file where on the very top I define __autoload magic function.

  • 0

I have index.php file where on the very top I define __autoload magic function.

function __autoload($className) {
   echo "autoloading $className";
   require_once('application/models/'.strtolower($className).'.php');
}

Then, I reference to the User object that is included by __autoload automatically (User.php). Everything works fine until this moment.
The problem is that User.php references to the File class

        $obj->numberOfUploads = File::countUploadsByUser($obj->ID);

and at this point the error is thrown

Fatal error: Class ‘File’ not found in Z:\home\project\www\application\models\user.php on line 19

The thing is, that i can see the output

autoloading User

but cannot see anything regarging the File. So, as it seems, the __autoload function is not called at all when the reference to File is caught. Tryting to add __autoload function to the User.php resulted in an error about redeclaring the function.

I am sorry if the question was raised before, I tried to google it and found no information.

Cheers

  • 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-06-16T13:07:21+00:00Added an answer on June 16, 2026 at 1:07 pm

    From the comments on autoload in the php manual it seems like a number of people have had similar problems when it comes to defining __autoload twice.

    I would recommend using spl_autoload_register with an anonymous function to avoid multiple definition conflicts, as illustrated in example 1 of that page:

    // Or, using an anonymous function as of PHP 5.3.0
    spl_autoload_register(function ($class) {
        include 'classes/' . $class . '.class.php';
    });
    

    Also, you don’t need to use require_once (can just use require) because if the class is already found, the handler won’t be called again.

    Try using spl_autoload_register just in your index.php file, and if that doesn’t work, put one in your User.php as well.

    Best of luck!

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

Sidebar

Related Questions

I'm trying to develop a Facebook application, and I have uploaded my index.php file,
I have an index.php, which at it's very start includes db.php - file which
I have a index.php file which loads (require) 2 different files based on a
I have an index.php file which has 2 included files require(stats.php); require(stats_encry.php); stats.php which
I have a index.php file that will include several external files: content/templates/id1/template.php content/templates/id2/template.php content/templates/id3/template.php
If I have three files index.php file.php and fns.php First example (it works): index.php
I have a template in joomla without index.php I only have index.html, css file,
Iam making an app which has one index.php file. I also have these other
I have a PHP script (index.php) that includes an index.html file in a sub-directory
I have a file system structure with symlinks, something like this: folder123 index.php config.php

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.