52.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

12-21-2012, 02:00 PM (This post was last modified: 01-12-2013 03:16 PM by Creator of Universe.)
Post: #1
[GET] eDirectory 7.5.10 - Nulled, fully working (Latest)
Here is a working, bug fixed and nulled version 7.5.10

All themes are working as well.


Installation Instructions:
Code:
Here is a quick guide to help you with the installation process:

1. Create a new database with "utf8_general_ci" collation.
Import the .sql files into your database using phpmyadmin or any other method you prefer.

- import the DefaultDB.sql first, the other ones after (the zip/postal code databases)
- DO NOT UPLOAD THE FOLDER CONTAINING THE DB FILE


2. Extract all the files in the edirectory.zip file to a temporary folder on your computer, then login to your website (via FTP) and upload that folder/all files to a location on your website where you would like eDirectory to reside.

Give CHMOD 777 permissions to:

/custom (and all subfolders)


3. Edit file /conf/config.inc.php and alter these lines below:


define(EDIR_ADMIN_EMAIL, "name@your_company.com"); //Should be changed
define(_DIRECTORYDB_HOST, "LOCALHOST"); //Should be changed
define(_DIRECTORYDB_USER, "MYSQL_USER"); //Should be changed
define(_DIRECTORYDB_PASS, "MYSQL_DATABASE_PASSWORD"); //Should be changed
define(_DIRECTORYDB_NAME, "MYSQL_DATABASE"); //Should be changed

If you are installing eDirectory in a subfolder and not in the root, edit this line too:

if (!defined("EDIRECTORY_FOLDER")) define(EDIRECTORY_FOLDER, "");

and make it look something like this:

if (!defined("EDIRECTORY_FOLDER")) define(EDIRECTORY_FOLDER, "/directory");

where "/directory" is the subfolder in which you are placing the eDirectory.


Edit these files as well changing the hardcoded constants and contact emails to your own:

/conf/constants.inc.php
/includes/forms/form_feedback.php


4. Login to Administration Area:

Link: http://yoursite.com/sitemgr
Username/E-mail: admin@test.com
Password: admin


You will be required to change the temporary password (only this first time).
You can create additional site manager account in Accounts --> Site Manager Accounts


5. Configure the cron jobs: use crontab -e on your shell access or use the cronjob
option inside your webhosting control panel (usually cPanel or such):

0,20,40 * * * * php -f [path]/cron/renewal_reminder.php 1>&2>> [path]/custom/tmp/cron.log
10,30,50 * * * * php -f [path]/cron/randomizer.php 1>&2>> [path]/custom/tmp/cron.log
45 2 * * * php -f [path]/cron/daily_maintenance.php 1>&2>> [path]/custom/tmp/cron.log
5 0 * * * php -f [path]/cron/report_rollup.php 1>&2>> [path]/custom/tmp/cron.log
* * * * * php -f [path]/cron/import.php 1>&2>> [path]/custom/tmp/cron.log
10 2 * * * php -f [path]/cron/sitemap.php 1>&2>> [path]/custom/tmp/cron.log
5 1 * * * php -f [path]/cron/statisticreport.php 1>&2>> [path]/custom/tmp/cron.log

Don't forget to replace "[path]" with the correct absolute path (for example:/home/public_html/yoursite).


6. Edit the file sitemap.xml and replace [SITE] with the URL you are using.

7. The default sending mechanism has been set to built-in PHP mail() function, so you can safely ignore all the SMTP setting requests in the admin. If you want to change it back to SMTP, you are more than welcome to. However, in order to change it back to default mail() function you will need to go directly into database (via phpMyAdmin or similar tool) and change the entry "emailconf_method" in Settings table from "smtp" to "mail" manually. I know, I know, dumb eDirectory guys couldn't code something as simple as this in the backend admin.



And here is a reworked htaccess file needed for it.

Code:
AddType text/html; charset=UTF-8 html
AddType text/plain; charset=UTF-8 txt
AddDefaultCharset utf-8
SetEnv REGISTER_GLOBALS 0
RewriteEngine On

# Sitemap
RewriteRule ^sitemap.xml$ custom/sitemap/index.xml [L]
RewriteRule ^sitemapnews.xml$ custom/sitemap/indexnews.xml [L]

# Listings
RewriteRule ^listing/([a-zA-Z0-9-]+).(html|htm)$ listing/detail.php?listing=$1 [L]
RewriteRule ^listing/([a-zA-Z0-9-]+).(html|htm)#([a-zA-Z0-9-]+)$ listing/detail.php?listing=$1#$2 [L]
RewriteRule ^listing/type/([a-zA-Z0-9-]+)$ listing/results.php?template=$1 [L]
RewriteRule ^listing/guide/([a-zA-Z0-9-]+)/?([a-zA-Z0-9-]+)?/?([a-zA-Z0-9-]+)?/?([a-zA-Z0-9-]+)?/?([a-zA-Z0-9-]+)?$ listing/results.php?category1=$1&category2=$2&category3=$3&category4=$4&category5=$5 [L]
RewriteRule ^listing/location/([a-zA-Z0-9-]+)/?([a-zA-Z0-9-]+)?/?([a-zA-Z0-9-]+)?$ listing/results.php?country=$1&state=$2&region=$3 [L]
RewriteRule ^listing/reviews/([a-zA-Z0-9-]+)$ listing/comments.php?listing=$1 [L]

# Coupon
RewriteRule ^coupon/guide/([a-zA-Z0-9-]+)/?([a-zA-Z0-9-]+)?/?([a-zA-Z0-9-]+)?/?([a-zA-Z0-9-]+)?/?([a-zA-Z0-9-]+)?$ coupon/results.php?category1=$1&category2=$2&category3=$3&category4=$4&category5=$5 [L]
RewriteRule ^coupon/location/([a-zA-Z0-9-]+)/?([a-zA-Z0-9-]+)?/?([a-zA-Z0-9-]+)?$ coupon/results.php?country=$1&state=$2&region=$3 [L]

# Event
RewriteRule ^event/([a-zA-Z0-9-]+).(html|htm)$ event/detail.php?event=$1 [L]
RewriteRule ^event/guide/([a-zA-Z0-9-]+)/?([a-zA-Z0-9-]+)?$ event/results.php?category1=$1&category2=$2 [L]
RewriteRule ^event/location/([a-zA-Z0-9-]+)/?([a-zA-Z0-9-]+)?/?([a-zA-Z0-9-]+)?$ event/results.php?country=$1&state=$2&region=$3 [L]

# Classified
RewriteRule ^classified/([a-zA-Z0-9-]+).(html|htm)$ classified/detail.php?classified=$1 [L]
RewriteRule ^classified/guide/([a-zA-Z0-9-]+)/?([a-zA-Z0-9-]+)?$ classified/results.php?category1=$1&category2=$2 [L]
RewriteRule ^classified/location/([a-zA-Z0-9-]+)/?([a-zA-Z0-9-]+)?/?([a-zA-Z0-9-]+)?$ classified/results.php?country=$1&state=$2&region=$3 [L]

# Articles
RewriteRule ^article/([a-zA-Z0-9-]+).(html|htm)$ article/detail.php?article=$1 [L]
RewriteRule ^article/guide/([a-zA-Z0-9-]+)/?([a-zA-Z0-9-]+)?$ article/results.php?category1=$1&category2=$2 [L]
RewriteRule ^article/reviews/([a-zA-Z0-9-]+)$ article/comments.php?article=$1 [L]

# Content
RewriteRule ^content/([a-zA-Z0-9-]+).(html|htm)$ content/index.php?content=$1 [L]

# Profile
RewriteCond %{REQUEST_FILENAME} !-f
#RewriteRule ^.*/([a-zA-Z0-9_-_]+)/profile/(.*)?$ /$1/profile/index.php?url_full=%{URL} [L]
RewriteRule ^profile/(.*?)?$ profile/index.php?url_full=$1#%{REQUEST_URL} [L]


And here is the download link:

[hide]http://www.mediafire.com/?y7wb2gzo1onwpha[/hide]

P.s: Got it from an other forum. :)
<<< ADD REPS IF YOU FIND IT VALUABLE SHARE >>>
SHARING IS CARING
Happydance
12-21-2012, 02:43 PM
Post: #2
RE:
nice sharing
12-21-2012, 02:48 PM
Post: #3
RE:
thanks for the share amigo^_____^
12-21-2012, 03:24 PM
Post: #4
RE:
Please creator mirrors guys... Link may go down. :)
<<< ADD REPS IF YOU FIND IT VALUABLE SHARE >>>
SHARING IS CARING
Happydance
12-21-2012, 04:01 PM
Post: #5
RE:
Here You Go 20 Mirrors

[hide]http://www.uploadseeds.com/download.php?uid=JNM7YHHU[/hide]

Give ME Rep Up Please Wink
49.gif
12-21-2012, 04:47 PM (This post was last modified: 12-21-2012 04:48 PM by Raven.)
Post: #6
RE:
Here's Another Mirror
This seems Very Useful...
And Expensive...

[hide]http://www.uploadseeds.com/download.php?uid=HGEHIPPV[/hide]

I Did Not Miss Out On The Rep...
+5!
12-21-2012, 05:05 PM
Post: #7
RE:
is 9.7 the last Version ?
12-21-2012, 06:59 PM
Post: #8
RE:
where is the sales PITCH?
12-21-2012, 07:16 PM
Post: #9
RE:
Thanks for sharing, any latest version 9.7? thanks
Here is their site
PHP Code:
http://www.edirectory.com/ 
12-21-2012, 10:19 PM
Post: #10
RE:
Will try to get that :)
17.gif
<<< ADD REPS IF YOU FIND IT VALUABLE SHARE >>>
SHARING IS CARING
Happydance




25.gif