A full featured, completely automated, high quality Web Programming Resource Directory like HotScripts.com and ScriptSearch.com. phpHotResources is the perfect solution when you want to create your Web Development community. |



| Main Features: |
|
Welcome to Web Development Directory (ASP, C and C++, Java, JavaScript, Perl, PHP, Python, XML)
ASP
C and C++
Java
JavaScript
Perl
|
The most common method of installing
phpHotResources is to grab the archive, unzip it
somewhere and run through the code making all the changes
you need. Here is the process: 1) Obtain phpHotResources.zip 2) unzip it into the directory you want (best way is document root 'htdocs' or 'www') 3) Make sure your directory structure is like this: phpHotResources/ phpHotResources/admin phpHotResources/conf phpHotResources/img phpHotResources/lib phpHotResources/languages 4) Create a MySQL database (If you have an
installed MySQL database and enough experinece in SQL you
may pass this step).
mysqladmin -uroot -p create YourDataBaseName
(enter MySQL root password)
4.2. On UNIX prompt write:
mysql -uroot -p
(enter MySQL root password)
4.3. On MySQL prompt write:
grant select, insert, update, create, alter, delete, drop
on DATABASENAME.*
to USERNAME@localhost
identified by 'PASSWORD' ;
quit
If you don't have root access then you have to ask the
webmaster to
% mysql YourDataBaseName < phpHotResources.sql
This will send the statements into the mysql client
and create the tables for you. To verify that this was
done correctly, go into the mysql client and see.
%mysql YourDataBaseName
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2 to server version: 3.22.32
Type 'help' for help.
mysql>
+----------------------------+
| Tables_in_YourDataBaseName |
+----------------------------+
| HR_authors |
| HR_categories |
| HR_city |
| HR_country |
| HR_kinds |
| HR_languages |
| HR_resources |
| HR_review |
+----------------------------+
HR_authors // Authors
########### MySQL DataBase Setting ####################
$dbname = "yourDBName"; //DataBase Name
$hostname = "mysql.yourdomain.comm:64366"; //Host Name:PORT
$username = "yourDBUserName"; //DataBase Access UserName
$password = "yourDBPassword"; //DataBase Access Password
########### WebDocs real path #################
$epath="/usr/local/apache/htdocs/phpHotResources"; //real path
$eurl="http://localhost/phpHotResources"; //Your Site URL
$sp="/"; //Windows System '\\'
$admin="admin@demo.com"; //Admin email
############## Color configuration for the default HTML table layout
$design["tab_color"]="#d4d5c2"; //HTML Table background color tag setting
$design["tr_color"]="#E4E5D2"; //HTML Table <tr> tag background color setting
$design["td_color"]="white"; //HTML Table <td> tag background color setting
include("../languages/lang_eng.inc"); choose Interface Language
You may create your own language interface simply
translating the message variables in the
lang_eng.inc.
You can customize all HTML tags in these
functions.
<files conf.inc>
Order Deny,Allow
Deny From All
</files>
|
|
Order