Free Realty is a PHP/MySQL set of scripts based upon Jon Roig's original Open Realty project. Jon's description of the package, "... so easy even a real estate agent can use it.." is the ultimate goal of this project.
| Tags | Internet Web Dynamic Content |
|---|---|
| Licenses | GPL |
| Operating Systems | POSIX Linux OS Independent |
| Implementation | PHP |
Recent releases


Changes: Minor bugfixes and feature enhancements.


Changes: Minor bugfixes and feature enhancements.


Changes: Changes to login and logout functions.


Changes: Some code cleanup was done. Fixes were made to the login function to fix a sessions issue.


Changes: Minor bugfixes to admin.php. Changes to the installation and configuration scripts to adjust a column size in the configuration table (affects sites with very long path names).
- All comments
Recent commentsRe: is the site alive? mirrors?
SF (http://sourceforge.net/projects/freerealty/)
Re: free realty
>
> If
> you are running in a chrooted
> environment though, you may be required
> to just use:
> include("includes/func.php");
> include("includes/thumbnail.php");
> include("includes/feature.php");
> in common.php.
>
I forgot to mention that the above includes in common.php don't work when you change directories such as changing to the /admin directory. That's why I stuck the $install_path variable in common.php. If you are going to use includes at the beginning of each file it should work fine. eg. in /admin/admin.php
include ("../common.php");
include ("../includes/func.php");
etc.
Re: register globals
> I don;t see anywhere that global
> registers has to be set to ON. is this
> true?
Right now globals are required for logins. Very minimal work has been done to remove the globals requirement as more current versions of php come with globals off by default. I haven't spent enough time on this particular issue to make it work both ways. There are a couple of ways to bypass the setting on the server, most specifically using the .htaccess file with the entry php_flag register_globals = on Otherwise, the code to allow globals to be set off for the script isn't finished yet and does have some work to be done before it's ready to go live.
Patrick
register globals
I don;t see anywhere that global registers has to be set to ON. is this true?
Re: free realty
> for a 2.8 release are there supposed to
> be so many calls to undefined
> functions?
>
> getdb() to start, then when I inserted
> my own db access functions
>
> show_features()
> nav_jump()
>
> all appeared to be undefined?
>
> am I using a beta version? is there
> somethign I am missing?
>
> came here from slashdot but am
> interested in the project as I do web
> work for realtors and wanted to see what
> the project offered
If those are not working it is possible that the $install_path is not correctly set in common.php. $install_path is used to point the scripts to the includes folder correctly as you will see if you look near the bottom of common.php. If you are running in a chrooted environment though, you may be required to just use: include("includes/func.php");
include("includes/thumbnail.php");
include("includes/feature.php");
in common.php.
Please contact me to let me know of your progress, I hate not knowing whether you a)never checked back here or b)never got it working.
Thanks,
Patrick