Ryan's District Boards

Computer, programming, and webmaster help , support , tips and tricks => Internet webmaster computer programming technology tips and tricks => Code Banks => Topic started by: counter on August 01, 2007, 07:18:28 PM

Title: Ryan's District Fake Mailer 2 version 1.0
Post by: counter on August 01, 2007, 07:18:28 PM
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
Title: Re: Ryan's District Fake Mailer 2 version 1.0
Post by: SUNNY on August 23, 2007, 05:18:22 AM
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
Title: Re: Ryan's District Fake Mailer 2 version 1.0
Post by: Ryan on August 23, 2007, 08:48:31 AM
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
Title: Re: Ryan's District Fake Mailer 2 version 1.0
Post by: SUNNY on August 23, 2007, 09:03:39 AM
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/)
Title: Re: Ryan's District Fake Mailer 2 version 1.0
Post by: FeD3x on August 23, 2007, 09:49:34 PM
Sunny its working with me
anyways as Ryan said install the php version
its almost identical to this
Title: Re: Ryan's District Fake Mailer 2 version 1.0
Post by: shaba on August 23, 2007, 09:58:38 PM
try the php older script this is still beta
Title: Re: Ryan's District Fake Mailer 2 version 1.0
Post by: SUNNY on August 24, 2007, 04:31:58 AM
Ok I will try the old one
Title: Re: Ryan's District Fake Mailer 2 version 1.0
Post by: SUNNY on August 31, 2007, 07:14:10 AM
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.  :-*