Frequently Asked Questions: page: 3
Page 3 of 21 · <1 ... 2 3 4 ... 21 >
-
1
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
-
2
If someone joins my list without a URL, and I approve them, a porn website appears in their URL section! No matter what I do, it’s still there! What’s going on?
Unfortunately, enough people have had this happen to them that we felt it necessary to add to the FAQ.
This porn links problem is most likely due to some spyware you’ve inadvertently downloaded. There are programs out there that insert porn websites into any URL form field they find, and it doesn’t stop until you get rid of the spyware.
Here are a few good spyware programs to try - each one tends to find different things, and each acts in its own way.
The only thing with Bazooka is that you have to remove the offending spyware manually, but they give thorough instructions and it’s usually quite simple.

September 6, 2004 |
By Kathryn |
Filed under FAQ, PHPFanBase: Troubles, Scripts
-
3
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
-
4
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
-
5
When I view the archives page at archives.php, I get this error: “Can’t select from table in the database. SELECT timestamp, id, title FROM php_blog WHERE FROM_UNIXTIME( timestamp, ‘%Y’)= ORDER BY id DESC” OR I get this message: “Invalid year specified”.
You cannot go directly to archives.php — you must view the archives page by going to archives.php?year=xxxx (where xxxx is a year in which you have written blog entries).
September 5, 2004 |
By Sasha |
Filed under Build A Blog, FAQ, PHPCalendar, Tutorials