Ryan's District Fake Mailer 2 version 1.0
System Requirements: PHP4.0+, Mail Capabilities, MySQL
Description: Send fake emails with this script, limit the amount of emails
per-day per-isp. This is an advanced vertsion of Ryan's District email
sender this have ability to limit emails per person and details
In this version AJAX is introduced
I am having trouble with your script,
I am getting the following errors,
Warning: main(inc.definitions.php): failed to open stream: No such file or directory in /home/content/s/u/n/xxyyzz/html/fake/index.php on line 4
Warning: main(inc.definitions.php): failed to open stream: No such file or directory in /home/content/s/u/n/xxyyzz/html/fake/index.php on line 4
Warning: main(): Failed opening 'inc.definitions.php' for inclusion (include_path='/php') in /home/content/s/u/n/xxyyzz/html/fake/index.php on line 4
Warning: main(inc.functions.php): failed to open stream: No such file or directory in /home/content/s/u/n/xxyyzz/html/fake/index.php on line 5
Warning: main(inc.functions.php): failed to open stream: No such file or directory in /home/content/s/u/n/xxyyzz/html/fake/index.php on line 5
Warning: main(): Failed opening 'inc.functions.php' for inclusion (include_path='/php') in /home/content/s/u/n/xxyyzz/html/fake/index.php on line 5
Warning: main(inc.actions.php): failed to open stream: No such file or directory in /home/content/s/u/n/xxyyzz/html/fake/index.php on line 6
Warning: main(inc.actions.php): failed to open stream: No such file or directory in /home/content/s/u/n/xxyyzz/html/fake/index.php on line 6
Warning: main(): Failed opening 'inc.actions.php' for inclusion (include_path='/php') in /home/content/s/u/n/xxyyzz/html/fake/index.php on line 6
Fatal error: Call to undefined function: populate() in /home/content/s/u/n/xxyyzz/html/fake/index.php on line 32
it appears that you might not have uploaded all the
to install it
Open up "php/inc.definitions.php", change the MySQL information there.
Execute this in phpMyAdmin or MySQL.
CREATE TABLE `messages` (
`message_id` int(16) NOT NULL auto_increment,
`message_to` tinytext NOT NULL,
`message_from` tinytext NOT NULL,
`message_sender` tinytext NOT NULL,
`message_subject` text NOT NULL,
`message_body` longtext NOT NULL,
`message_sender_ip` varchar(16) NOT NULL default '',
`message_time` int(10) NOT NULL default '0',
PRIMARY KEY (`message_id`)
) ENGINE=MyISAM;
There are extra options in "php/inc.definitions.php" that you may change, here is a list of what they do.
$max = 10; (this is the max number of messages able to be sent per day, per ip)
$accounts (this are admin accounts, to "View Sent Messages")
$limit = 20; (this is the amount of messages shown in "View Sent Messages")
have you done these
If not try the other php email sender which is like this but will work easily without trouble the onlything which they differ is that this got a database which limits number of emails/ person / day which i dont think its a big deal
On another site I did all the required things including creating database & executing the query but still the page is not loading completely,
Anonymous Email (http://coolestone.com/anonymous_email/)
Sunny its working with me
anyways as Ryan said install the php version
its almost identical to this
try the php older script this is still beta
Ok I will try the old one
I made it working. The page was not loading because I was using PHP 5.xx
Now I am using PHP 4.xx and now its working quite well. Thanks for the nice script. :-*