AutoEmailer
#101
Posted 29 January 2006, 22:00
Jack
Most Important: Header Tags SEO - Ultimate SEO V 2.2d
All SEO Addons: Recommended SEO Addons
Support Links:
Finding relevant link exchanges - Headers Already Sent - What does it cost? -What's my version? - How to change titles? - Preventing HotLinking
#102
Posted 29 January 2006, 22:03
Please, if you want, help me step by step.
Skype: remigioruberto
#103
Posted 30 January 2006, 01:53
Jack
Most Important: Header Tags SEO - Ultimate SEO V 2.2d
All SEO Addons: Recommended SEO Addons
Support Links:
Finding relevant link exchanges - Headers Already Sent - What does it cost? -What's my version? - How to change titles? - Preventing HotLinking
#104
Posted 30 January 2006, 05:09
Jack_mcs, on Jan 29 2006, 07:44 PM, said:
If you have a Links Manger question, it should be asked it in the Links Manager support thread.
Jack
Hello Jack,
What I meant was, unlike the orders report which
collects only the orders up to certain number of
previous days, the CUSTOMERS reprt collects
the data of entire customers in the database.
If you select all the columns by checking in the
admin, it is going to be a long process and the server
may time out. (this happens with some of the
sales report contribution)
Anyway is that how it is supposed to work ?
Which is the E Mail function mod you are suggesting ?
Could you please clarify ?
#105
Posted 30 January 2006, 05:44
Jack_mcs, on Jan 29 2006, 07:44 PM, said:
Jack
Searched high and low for a Links Manager Support thread
Couldn't find it. Could anyone please post it it here or PM me ?
Cheers
Shred
#106
Posted 30 January 2006, 09:09
Skype: remigioruberto
#107
Posted 30 January 2006, 13:37
valley, on Jan 30 2006, 12:44 AM, said:
Couldn't find it. Could anyone please post it it here or PM me ?
Cheers
Shred
here.
Jack
Most Important: Header Tags SEO - Ultimate SEO V 2.2d
All SEO Addons: Recommended SEO Addons
Support Links:
Finding relevant link exchanges - Headers Already Sent - What does it cost? -What's my version? - How to change titles? - Preventing HotLinking
#108
Posted 31 January 2006, 11:58
Is there any way to announce the new products, including text link for each one ?
#109
Posted 31 January 2006, 13:49
Jack
Most Important: Header Tags SEO - Ultimate SEO V 2.2d
All SEO Addons: Recommended SEO Addons
Support Links:
Finding relevant link exchanges - Headers Already Sent - What does it cost? -What's my version? - How to change titles? - Preventing HotLinking
#110
Posted 03 February 2006, 19:42
Jack_mcs, on Jan 30 2006, 01:37 PM, said:
Hello Jack ,
Many thanks for the link.
How can I get rid of the Message field which is defaulting to [img]http://www.yoursite.com/images2/upperleft.jpg[/img]
in both admin/announce and admin/new products.
Many thaanks in advance
#111
Posted 04 February 2006, 02:31
Jack
Most Important: Header Tags SEO - Ultimate SEO V 2.2d
All SEO Addons: Recommended SEO Addons
Support Links:
Finding relevant link exchanges - Headers Already Sent - What does it cost? -What's my version? - How to change titles? - Preventing HotLinking
#112
Posted 04 February 2006, 05:42
Jack_mcs, on Feb 4 2006, 02:31 AM, said:
Jack
Hello Jack,
When I click on the Announce menu in the admin the page that
opens (http://www.affiliatesexcel.com/catalog/admin/auto_emailer_announce.php)
has this picture with a web page in the "Message" field.
Ipresume it is there from your instructions
///
// Output a form textarea field w/ fckeditor
function tep_draw_fckeditor($name, $width, $height, $text) {
$oFCKeditor = new FCKeditor($name);
$oFCKeditor -> Width = $width;
$oFCKeditor -> Height = $height;
$oFCKeditor -> BasePath = 'http://www.yoursite.com/FCKeditor/';
$oFCKeditor -> Value = $text;
$field = $oFCKeditor->Create($name);
return $field;
}
How can I empty it to fill in new info ?
#113
Posted 04 February 2006, 06:05
valley, on Feb 4 2006, 05:42 AM, said:
Ipresume it is there from your instructions
///
// Output a form textarea field w/ fckeditor
function tep_draw_fckeditor($name, $width, $height, $text) {
$oFCKeditor = new FCKeditor($name);
$oFCKeditor -> Width = $width;
$oFCKeditor -> Height = $height;
$oFCKeditor -> BasePath = 'http://www.yoursite.com/FCKeditor/';
$oFCKeditor -> Value = $text;
$field = $oFCKeditor->Create($name);
return $field;
}
I have now changed to a correct path
$oFCKeditor -> BasePath = 'http://affiliatesexcel.com/catalog/admin/FCKeditor/FCKeditor';
but I still get the default html in the field
#114
Posted 04 February 2006, 11:43
valley, on Feb 4 2006, 06:05 AM, said:
$oFCKeditor -> BasePath = 'http://affiliatesexcel.com/catalog/admin/FCKeditor/FCKeditor';
but I still get the default html in the field
HELLO Jack,
I have finally got the FCK editor in the Announce and Product info
pages in the admin.
Here is what I had to do.
Your instructions asked to upload the FCKeditor directory to the admin
directory. As this was a password protected directory I had to move the
FCKediror directory up to the Catalog directory.
I had to change the require statement on line 12 in the
admin/include/functions/html_output.php
as below
require(DIR_FS_CATALOG .'FCKeditor/fckeditor.php');
I had to change the base path as below
/ Output a form textarea field w/ fckeditor
function tep_draw_fckeditor($name, $width, $height, $text) {
$oFCKeditor = new FCKeditor($name);
$oFCKeditor -> Width = $width;
$oFCKeditor -> Height = $height;
$oFCKeditor -> BasePath = '/catalog/FCKeditor/';
$oFCKeditor -> Value = $text;
$field = $oFCKeditor->Create($name);
return $field;
}
However all this seems to be enough as the FCK editor removes
and change the formatting of any html you place in the message field.
Any idea why the editor behaves badly ?
#115
Posted 04 February 2006, 14:09
Jack
Most Important: Header Tags SEO - Ultimate SEO V 2.2d
All SEO Addons: Recommended SEO Addons
Support Links:
Finding relevant link exchanges - Headers Already Sent - What does it cost? -What's my version? - How to change titles? - Preventing HotLinking
#116
Posted 04 February 2006, 15:21
Jack_mcs, on Feb 4 2006, 02:09 PM, said:
Jack
Many thanks for the reply.
Just one question about the editor.
function tep_draw_fckeditor($name, $width, $height, $text)
Is it supposed to work only as a text editor or also as
an HTML editor ? Can you cut and paste HTML pages
which is what I try to do by selecting the source menu first.
However the output is getting distoted and truncated.
Cheers
Shred
#117
Posted 04 February 2006, 17:07
Jack
Most Important: Header Tags SEO - Ultimate SEO V 2.2d
All SEO Addons: Recommended SEO Addons
Support Links:
Finding relevant link exchanges - Headers Already Sent - What does it cost? -What's my version? - How to change titles? - Preventing HotLinking
#118
Posted 04 February 2006, 20:09
Jack_mcs, on Feb 4 2006, 05:07 PM, said:
Jack
Many thanks for the reply. I will Check it out.
I use MAVDs WYSIWYG addon in admin catogories
which work quite well for cut and paste. FCK seems
more adapted for creating new pages.
However, on further tests it seems that the server
stops after sending a couple of hundred messages.
As the script can be called by CRON, is it possible
to incremently select perhaps 100 messages from the list
If this can be done then the CRON can be set up for
every 15 minutes or so to send the messages to a different
group of people.without creating any SPAM issues (for big lists)
As it is it looks like the script can't send the mail to
the whole customer list due to the server limitations.
#119
Posted 05 February 2006, 04:37
Jack
Most Important: Header Tags SEO - Ultimate SEO V 2.2d
All SEO Addons: Recommended SEO Addons
Support Links:
Finding relevant link exchanges - Headers Already Sent - What does it cost? -What's my version? - How to change titles? - Preventing HotLinking
#120
Posted 05 February 2006, 14:46
Jack_mcs, on Dec 24 2005, 03:24 AM, said:
Jack
On testing Aut_customers.php I get the following error
PHP Warning: mysql_query(): Unable to save result set in /home/affili43/affili43-www/catalog/admin/auto_emailer/auto_customers.php on line 46
[Sun Feb 5 10:48:00 2006] [error] PHP Warning: mysql_query(): Unable to save result set in /home/affili43/affili43-www/catalog/admin/auto_emailer/auto_customers.php on line 46
[Sun Feb 5 10:48:00 2006] [error] PHP Warning: mysql_query(): Unable to save result set in /home/affili43/affili43-www/catalog/admin/auto_emailer/auto_customers.php on line 46














