Search found 5 matches

by mmacfadden
Wed Aug 06, 2003 6:32 pm
Forum: Bugs
Topic: stylesheets in an embedded installation
Replies: 0
Views: 5122

stylesheets in an embedded installation

This is more of a featuer request I suppose but ehre goes: If you are embedding serendipity into another web page, then the the stylesheet for it becomes vary problematic. For instance the defaul style sheet set some styles on the A and TD tags. this means that the web page that serendipity is embbe...
by mmacfadden
Mon Jul 28, 2003 4:29 pm
Forum: Installation
Topic: Current CVS-Checkout doesn't create any tables
Replies: 4
Views: 8957

I might have a solution for you: Are you using mysql? If you are then you should try the following. You will have to edit the serendipity_db_mysql.inc.php. 1) Add this line to the serendipity_db_connect(..) function between the mysql_connect line and the return statement: mysql_select_db( $serendipi...
by mmacfadden
Sat Jul 26, 2003 5:58 pm
Forum: Bugs
Topic: fgets
Replies: 4
Views: 8778

eternal: Fair enough :-). I just ran into the problem when I tried to install and was offering information to people who don't want to edit the code.
by mmacfadden
Fri Jul 25, 2003 7:58 pm
Forum: Bugs
Topic: fgets
Replies: 4
Views: 8778

As for the fgets() problem, I can assume that you are using php 4.1 or earlier. As of php version 4.2, the length argument to fgets is now optional. string fgets ( resource handle [, int length]) That is the current function spec for php 4.3. If you put a length in it will work. Or you can upgrade t...
by mmacfadden
Fri Jul 25, 2003 7:54 pm
Forum: Installation
Topic: fgets() problem
Replies: 4
Views: 9038

As for the fgets() problem, I can assume that you are using php 4.1 or earlier. As of php version 4.2, the length argument to fgets is now optional. string fgets ( resource handle [, int length]) That is the current function spec for php 4.3. If you put a length in it will work. Or you can upgrade t...