Author Topic: eCards URL Problem  (Read 4485 times)

0 Members and 1 Guest are viewing this topic.

Offline ferret

  • Pre-Newbie
  • Posts: 3
    • View Profile
eCards URL Problem
« on: December 03, 2002, 06:37:12 PM »
A user has contacted me saying they received an eCard from the 4images.de system on my website.

But the web address it gave was wrong - instead of my website address before the /postcards.php?postcard_id=whatever part, it put http://tmm-php-uk.lyceu.net/

Is that a default url set somewhere? How can I change it, because when I put my web address at the front, the eCard works.

Thanks in advance.

Ferret

Offline Jan

  • Administrator
  • 4images Guru
  • *****
  • Posts: 5.024
    • View Profile
    • 4images - Image Gallery Management System
eCards URL Problem
« Reply #1 on: December 03, 2002, 08:35:30 PM »
Change
Code: [Select]
//define('SCRIPT_URL', 'http://your.domain.com/4images'); //no trailing slash
to
Code: [Select]
define('SCRIPT_URL', 'http://your.domain.com/4images'); //no trailing slash
and replace the url with your domain.

Jan
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search

Offline ferret

  • Pre-Newbie
  • Posts: 3
    • View Profile
eCards URL Problem
« Reply #2 on: December 03, 2002, 10:16:51 PM »
Oh, thanks  :lol:  :o

Errr.. which file do I do that in?  :? I will probably find it quicker than you can reply, but let me know please, incase I dont  :wink:

Thanks again!!

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
eCards URL Problem
« Reply #3 on: December 04, 2002, 12:12:15 AM »
includes/constants.php
;)
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)

Offline ferret

  • Pre-Newbie
  • Posts: 3
    • View Profile
eCards URL Problem
« Reply #4 on: December 04, 2002, 04:29:24 PM »
Thanks :o 8)