3) Save the
file and upload the server back to your web server.
Make sure the file is put back in your mailer folder.
4) Go to the
web page in a browser. For example go to:
http://www.YourDomain.com/mailer/reset_password.php
Once
you pull up this page it will reset the password to admin/admin
Then
you should login with admin/admin and change the password.
5) Remove your
database information from the reset_password.php page.
2. I am having
trouble uploading large files, what can I do?
Uploading Large
Files:
If you are
looking to upload large files to the tell to import contacts
then you need to do the following:
1) You need
to change the setting in PHP called:
upload_max_filesize
and
post_max_size
These values
should be set to 16M
You can do
this through the php.ini file or you can add this line
to your apache under the virtual host and re-start apache:
php_admin_value
upload_max_filesize 16M
php_admin_value
post_max_size 16M
2) For MySql
you have to have the variable:
max_allowed_packet
to be equal to 16
This can be
accomplished by:
modifying to
/etc/my.cnf
and setting
the:
set-variable
= max_allowed_packet=16M
under: [mysqld]
Also keep in
mind that my.cnf can reside in different dirs
depending on
the installation. Usually it is /etc/my.cnf,
/var/lib/mysql/my.cnf,
/usr/local/var/my.cnf.
3. Apache Upload
Troubleshooting
If you are
still having trouble once you set the parameters above,
then you should check the following apache limits
LimitRequestBody
LimitRequestFields
LimitRequestFieldSize
LimitRequestLine
You should
check especially the first one in the httpd.conf. It is
possible the POST data is larger than the value in the
LimitRequestBody
4. How can
I change the powered by link on the popup?
To change the
powered by link backup the file lib/english.php and then
change:
variable $msg_users_tell[POWERED]
5. Branding
the product.
There are many
ways to re-brand your product and we have explained the
different ways below.
Customize
Control Panel
From
the Customize User Interface section click on Customize
Control Panel from this section you can upload your own
header and/or footer.
Customize
Admin Page Powered By Link
To
customize the admin powered by link you should customize
the following line in the lib/etools2.php:
$admin_powered_by="Powered
by <a href=http://www.XXXXX.com
Customize
Help File Link
This
line in the etools2.php file changes where the help link
is pointed to in the admin section. You can have
this file point to your own help pages or a support link
that you setup.
$helpfile="http://XXXXXXXXXXXXX/userguides/branded/recruiter/";
Other
Miscellaneous Branding Customization
Within
the admin section we have various sections such as:
Feedback,
Order Other Software, Powered by, and other sections which
can be customized.
To
disable the following sections you should open the config
file lib/etools2.php and within this file you should comment
out the lines by placing a "#" in front of the lines that
correspond to each section. The sections are below:
$feedback_link='http://www.XXXXXXXXXX/feedback.html';
$order_software='http://www.XXXXXXXXXX/overview2.html';
$admin_powered_by="Powered
by <a href=http://www.XXXXXXXXX.com target=_new><b>XXXXX</b></a>";
$business_email="http://www.XXXXXXXXXXXXXXX.com";
For example
if you wanted to comment out the feedback link then you
would have:
#$feedback_link='http://www.XXXXXXXXXXXX.com/feedback.html';
Notice the
"#"
6. Spaw Editor
Problems
If you have
problems with the spaw editor then before you submit a
ticket please do the following:
Open up the
file
/spaw/config/spaw_control.config.php
1)
in this file
look for the line:
$spaw_root='/home/user/yourdomain.com/htdocs/produgram/spaw/
and make sure
this points to the right location of the spaw directory.