Frequently Asked Questions: page: 2
Page 2 of 21 · <1 2 3 ... 21 >
-
1
Does this work with a Windows server?
Can I run this script on a windows server?
Unfortunately no, this script does not run reliably on a windows server.
August 3, 2005 |
By Vixx |
Filed under FA-PHPHosting: Installation, FAQ, Scripts
-
2
Hosting on more than one domain?
I provide hosting on more than one domain but I don’t want several different forms. Can this script accommodate that?
Yes it can.
There are full instructions on how to modify the application form to accommodate more than one domain included in the README.txt file.
August 3, 2005 |
By Vixx |
Filed under FA-PHPHosting: Customize, FAQ, Scripts
-
3
Customising the accept/decline emails?
How can I change the emails sent on approval/rejection of applicants?
Firstly, backup admin.php!
Then take your copy, open up the file in your usual HTML Editor and go to around line 78. (The line should start
Hi $_POST[name]). This is the start of your approval email so read through and change whatever you want to change.To change the rejection email, go to around Line 125 (which should start
mail($recipient, $subject, "Hi $_POST[name],")and make the changes there.
August 3, 2005 |
By Vixx |
Filed under FA-PHPHosting: Customize, FAQ, Scripts
-
4
Database information to enter into config.php?
What do I enter in the config file under dbhost, dbname, dbuser and dbpass? How/Where do I get this information?
To install PHPFanbase, first you need to create a SQL Database to house all your member information in, and a username and password so PHPFanbase can access it. You can create these through your domain cPanel under MySQL or SQL. If done correctly the data you enter into PHPFanbase should then look something like this:
$dbhost = "localhost"; $dbname = "domainnam_fans"; $dbuser = "domainnam_yourname"; $dbpass = "password";
Depending on your host, you may need to enter your domain username as part of your username and/or database name.
If you have hosting on someone else’s domain and don’t have access to the main Control Panel, you need to ask your host to create a SQL database, username and password for you. The username they create for you also needs to have ALL ACCESS to the database for PHPFanbase to work properly.
July 29, 2005 |
By Sasha |
Filed under FA-PHPHosting: Installation, FAQ, Flinx: Installation, PHPCalendar, PHPCurrently, PHPFanBase: Installation, PHPQuotes, Scripts
-
5
MySQL Numrows error when combining scripts?
I have Flinx installed along with another script and it was working fine up until I set up the other script – now I keep getting an error that looks like this: Warning: mysql_numrows(): supplied argument is not a valid MySQL result resource in /home/you/public_html/folder/category.php on line #. What’s wrong?
You need to edit the scripts to use an absolute path for their config.php. As both scripts are looking for a file with the same name (config.php), it can cause errors.
To fix this, open up the pages that are causing the errors, eg. category.php. You will see this line near the top:
include("config.php");All you need to do is to change the part inside the quotes to the absolute path to config.php. This is usually in the form /home/username/public_html/folder/config.php. If you don’t know your absolute path, ask your host or check the forums.
July 28, 2005 |
By Amelie |
Filed under FAQ, Flinx: Troubles, Scripts