Ok, now I understand.
The normal way is to configure the URL in Joomla config file "configuration.php". Add (or change if the statement is allready there) the line "var $live_site = '
mysite.com'" in this file. I'm not sure if this works in your case, so you must test this.
If this does not work, you can do a hardcoded workaround: Go to the file "/administrator/components/com_autotweet/helpers/autotweetposthelper.php" and change the following line in the function "createURL($site_url)" at the end of the file.
Old:
| Code: |
return $base_url . $site_url;
|
New:
| Code: |
return 'http://mysite.com' . $site_url;
|
...and take care when you do an update...
Note: With upcomming version 2.0 the place of this function changes to the file "autotweetroutehelper.php".
Ulli