Hi,
the module works correctly but the urls that users receive are in the form http://localhost... instead of http://83.xxx.xxx.xxx. I tried to figure out what set this in the notify-code but didn't find it.
Where is this set?
Thanks
riper
Hi,
the module works correctly but the urls that users receive are in the form http://localhost... instead of http://83.xxx.xxx.xxx. I tried to figure out what set this in the notify-code but didn't find it.
Where is this set?
Thanks
riper
Comments
Comment #1
matt2000 commentedProbably a config issue. Make sure the base URL is set in settings PHP and/or that your cron job is triggering against the desired URL.
Comment #2
ludo.rHi, i have a similar issue.
The links that are sent out by the module look like :
http:///var/www/html/my-content
instead of
http://www.domain.com/my-content
Do you think this problem comes from cron.php?
I use a second cron file because of a path problem : http://drupal.org/node/36678#comment-2832374
Comment #3
ludo.rHere's what i've done.
The problem is the $base_url global variable.
Just edit the settings.php file and uncomment this line (125) :
$base_url = 'http://www.example.com';Do not add a trailing slash.
Now it should work!
EDIT : oh sorry matt2000, i didnt saw your post. You already had the solution!
Comment #4
matt2000 commented