surej ns wrote: > Hi all, > > I am using propel 1.3. I have installed it in my project directory . > It is built and got the table classes in path " ../app/models/login > ." >
> *Warning*: Propel::require(login/UserPeer.php) > (include_path=' ... D:\xampp\htdocs\login\app/../app/models/login; ... ') If you look at your include_path and what propel tried to require, it's pretty obvious what's wrong :) Propel always requires om files using "mypackage/MyModel.php" and that means you set your include_path to "/path/to/my/libs" not "/path/to/my/libs/mypackage1". This is a good practice with your own libraries too. It means you don't need to have an include_path entry for every library, but just one pointing to the directory that has all the libraries in sub-directories of their own. -veikko _______________________________________________ users mailing list [email protected] http://lists.agavi.org/mailman/listinfo/users
