
Originally Posted by
arbie
1. Have installed and have running the upload progress bar - however - at the end of upload it bombs the user out to login screen. I clearly have not changed a permissions somewhere - but where?
This is because the url in config.php and uu_default_config.pm are different.
If you have url like
http://www.yourdomain.com
In config.php
You should put
http://www.yourdomain.com/upload.php
in uu_default_config.pm
If you missed or add a www, it will not work as cookie/session valid for domain with www is not valid for the one with out www, true for resverse too.

Originally Posted by
arbie
2. When PayPal subscribe is turned on - unpaid (in this case my vshare test user) customers bomb out to an undefined screen - how do I configure custom error pages like I would on a standard website?
You need to set paypal email in admin area.

Originally Posted by
arbie
3. Change logo in admin - simply cannot get this to work....
You need to set permission 777 images folder and all files inside it.

Originally Posted by
arbie
4. Will be embarking on customisation of all of the look and feel of the site - is there a "cheat sheet" to help me identify the areas of the original template to make changes quicker?
You can ask in the template modification forum.

Originally Posted by
arbie
5. If email authorisation is turned on - email is not being sent (Where is the setting that I missed??)
Only reason for this is your mail server is not able to send mail or mail server is black listed. vshare use php mail function, so if that works, mails will work.
To verify, upload a simple php script that can send mail and see if PHP can send mail from your server.
Creat a file with name mail_test.php
Then put following content
Code:
<HTML>
<BODY>
<?php
mail("[email protected]","Test Mail","Test mail from server");
echo "Mail send at - ";
echo time();
?>
</BODY>
</HTML>
Replace [email protected] with your email address.
Upload file to your server and call it, if everything works, you will get a mail. If not, your server have some problem.
Bookmarks