Posts by sasha
Page 2 of 24 · <1 2 3 ... 24 >
-
1
A security flaw has been discovered in several of CodeGrrl’s scripts:
FA-PHPHosting, PHPClique, PHPCalendar, PHPCurrently, PHPFanBase, PHPQuotes
Please see here for full details on how to fix this. It is important that you do this AS SOON AS POSSIBLE. By not fixing this, you are letting your site be vulnerable to hacking. This is now a known flaw to hackers, so they will be actively looking for sites to exploit - please fix the issue as soon as possible!
November 16, 2005 |
By Sasha |
Comments Off |
Filed under Scripts, Updates
-
2
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
-
3
How can I allow members to join more than once with the same email?
You must replace a bit of code in join.php, which is explained in this tutorial.
November 29, 2004 |
By Sasha |
Filed under FAQ, PHPFanBase: Customize, Scripts
-
4
On my main page, the “leave a comment” link does not contain an id number. OR When I click the link to leave a comment, I get the error “Can’t select entries from table php_blog. SELECT * FROM php_blog WHERE id=”.”
Mark sure that you have added in the $id variable when you coded your comments link into the main page. Right below this line:
$entry = $row['entry'];
You should have this:
$id = $row['id'];
September 5, 2004 |
By Sasha |
Filed under Build A Blog, FAQ, Tutorials
-
5
When I view my single entry page at entry.php, I get this error: Can’t select entries from table php_blog. SELECT * FROM php_blog WHERE id=” OR I get this message: “Invalid ID specified”.
You cannot go directly to entry.php — you must view the page as entry.php?id=xxx (where xxx is the id number of one of your entries).
September 5, 2004 |
By Sasha |
Filed under Build A Blog, FAQ, Tutorials