Home     Testimonies     Purchase     User Manuals     Resources      Support      Affiliate   
       Contact Us :: Tell-A-Friend
      Toll free: 1-888-886-8609 (U.S.A and Canada) - International: +1-631-454-1661  
 
  SERVICES:
  Add-On Services
  Newsletter Subscribe
  PRODUCTS:
  eGreeting card software
  eCardMAX
  Online Invitation
  eMedia Grabber
  Form Mail software
  FormXP - Form Maker
  Rich Text Editor
  HotEditor (WYSIWYG)
  Free Web Games
  Spot The Difference
  Memory Game
  Cool Java Applets
  CGI2K Java Applet
  CGI2K Midi files
  CGI2K Free Midi files
  HOW TOs...
  Chmod 777 or 755
 
Home / ePhotoHunt / Manual $27.95/Free - Holiday price $19.57 Click here to buy
User Manual:
How do I install ePhotoHunt on my server?

ePhotoHunt comes with a zip file. Please unzip it and read file readme_photohunt.html


Can I add more categories?

Yes, you can.

By default, ePhotoHunt comes with 3 categories: general, male, and female

For example, if you want to create a new category named kids then use the FTP software to login to your server, go inside the folder [ephotohunt] and make a new directory named [kids].

Use FrontPage or Dreamweaver to edit file cat.html - Add the new link to the category kids like this:

ephotohunt.php?step=show_ins&cat=kids

Then store image files inside kids folder. Each ePhotoHunt image comes with 3 files:

xx_ori.gif (original image - will be displayed on the left panel)
xx_mod.gif (modify image - will be displayed on the right panel)
xx.pl (text file holding image map data)


How do I remove the Male Erotic & Female Erotic category?

It's very simple.

Use FrontPage or Dreamweaver to edit file cat.html - You just need to delete the banner link

Use FTP to login to your server, go inside folder [ephotohunt] and delete 2 folders : [male] + [female]


How do I create the Image Map data for the ePhotoHunt image?

You need to use FrontPage or Dreamweaver to do this. Below are the instructions on how to create the image map using FrontPage.

+ Firstly, you must have 2 image files ready (the original & modified image)

+ Open FrontPage and start the new blank page.

+ Insert the original image first and then the modified the image (menu Insert / Picture / From File...)

+ Click on the modified image to turn on the "Pictures" toolbar. See image below

Click to view full size image

+ Use your mouse to select the Icon "Circular Hotspot" then draw 5 circles on where the 5 different spots are. Please note that the ePhotoHunt script supports Circular Hotspots only. To make the game easier draw a bigger circle, to make the game harder draw a smaller circle.

Click to view full size image

+ Each time you draw the Circular Hotspot, FrontPage will ask you to enter the hyperlink for the spot, just enter the number 1 and hit the OK button (ePhotoHunt doesn't need the hyperlink)

+ When you are done with 5 hotspots then turn on the FrontPage HTML code screen by clicking on the HTML icon at the bottom of the screen. See image below

Click to view full size image

Use the text editor to create the file xx.pl - Copy all numbers as you see above to the text file like this:

230, 99, 20
281, 176, 23
110, 250, 27
243, 284, 29
185, 151, 26

+ Then use FTP to login to your server, upload all files xx_ori.gif - xx_mod.gif - xx.pl to your category folder (ie: general)


How do I change the look of ePhotoHunt game?

ePhotoHunt comes with HTML template. You just need to edit all of the html files inside the folder [ephotohunt]. To change the background color of the main screen you need to use Text editor to open the file ephotohunt.php, scroll down to the bottom page and modify the code below:

<BODY onLoad="clock_timer = setInterval('runclock();', set_time);" TOPMARGIN=0 LEFTMARGIN=0 MARGINHEIGHT=0 MARGINWIDTH=0 bgcolor="#494B63">


How do I adjust Game timer?

Use Text editor to open file config.php and modify these code below:

# Score limit 1 & timer limit 1.
# This mean if player's score < = 10000 then they will have 90 seconds to find all the spots
$score_limit_1 = 10000;
$timer_limit_1 = 2250 ; # 90 seconds

# Score limit 2 & timer limit 2.
# This mean if player's score > 10000 and less than 15000 then they will have 85 seconds to find all the spots
$score_limit_2 = 15000;
$timer_limit_2 = 2125 ;

# Score limit 3 & timer limit 3.
$score_limit_3 = 20000;
$timer_limit_3 = 2000 ; # 80 seconds

# Score limit 4 & timer limit 4.
$score_limit_4 = 25000;
$timer_limit_4 = 1875 ; # 75 seconds

# Score limit 5 & timer limit 5.
$score_limit_5 = 30000;
$timer_limit_5 = 1750 ; # 70 second

# Score limit 6 & timer limit 6.
$score_limit_6 = 35000;
$timer_limit_6 = 1625 ; # 65 seconds

# Score limit 7 & timer limit 7.
$score_limit_7 = 40000;
$timer_limit_7 = 1500 ; # 60 seconds

# Score limit 8 & timer limit 8.
$score_limit_8 = 45000;
$timer_limit_8 = 1375 ; # 55 seconds

# Score limit 9 & timer limit 9.
$score_limit_9 = 50000;
$timer_limit_9 = 1250 ; # 50 seconds

# Score limit 10 & timer limit 10.
$score_limit_10 = 55000;
$timer_limit_10 = 1125 ; # 45 seconds

# Score limit 11 & timer limit 11.
$score_limit_11 = 60000;
$timer_limit_11 = 1000 ; # 40 seconds

# Score limit 12 & timer limit 12.
$score_limit_12 = 65000;
$timer_limit_12 = 875 ; # 35 seconds


By default, if the player's score less than 10000 then they will have 90 seconds to find the spot - If you want to change the time to 2 minutes (120 seconds) then calculate it like this:

120 * 1000 / 40 = 3000

then modify the code to $timer_limit_1 = 3000 ;


How do I turn ON or OFF banner ads?

Use the Text editor to open file config.php - Find and modify the code below

# Tun ON or OFF banner ad
$turn_banner ="ON" ; # or OFF


How do I turn ON or OFF the music background by default?

Use the Text editor to open file config.php - Find and modify the code below

#Tun ON or OFF music level
$turn_music_level ="ON" ; # or OFF


Things webmaster should know about ePhotoHunt program.

By default, the player's score will be awarded 500 points if he/she hits the right spot
The player's score will be deducted 100 points if he/she uses the Hint (adjust it inside script config.php)

Score will be deducted by 200 points if the player clicks the wrong spot (adjust it inside script config.php)

To replace the background music to your own midi file you need to replace file music_bkg.mid

The original image and modified image must have the image size: width = 377px & image height = 314px.

Timer will go faster on each level. You can adjust timer by editing the script "config.php"

The text file "hiscore.txt" will hold the 5 top players: name | score | level | player's email | date | # of wrong hits | image pass

if players play ePhotoHunt on the web browser IE 5.x (Windows platform) then they will hear the YES voice when they click the right spot and ERROR voice when they hit the wrong spot.

To change the YES voice please replace the files "yes1.wma" thru "yes5.wma" in each category.

To change the Error voice you need to replace the file "error.wma"

If you don't buy the Keycode from us, then your visitor will see our ePhotoHunt.com logo on the main screen and when the player clicks on the logo they will see our website.

When you have the Keycode, if you want to replace our ePhotoHunt logo with yours then please remember that your logo image height must be less than or equal to 98px otherwise the red circle won't show up on the right spot.

 
  NEWS & AFFILIATE
 
News/Articles

Affiliate

  PRODUCTS DEMO

 

eCardMAX

eCardMAX Admin

FormXP

HotEditor (WYSIWYG)

Spot The Difference

Memory Game

Java Applet

Midi Music
 

 
SUPPORT
 
 

ECardMAX Live Chat

  Testimonies
  “I’ve worked in the internet marketing industry for over 10 years now, and eCardMAX is one of the best pieces of software I’ve been fortunate enough to work with... Full review"
Erik Lundberg
   
  “I just wanted to let you know we’ve been very pleased with the quality of the eCardMAX software... Full review".
Naseem Khan
 
 


Copyright © 1999 - 2011 eCardMAX.com - All rights reserved.