Frequently Asked Questions: script questions: flinx customize
Below are all the frequently asked questions added to the site. Please read through them before asking a question in the forums!
Latest
-
1
Can I remove the credit line that says “Powered by [name of script here]” and/or put it on a separate page?
No. The conditions of you using our scripts are that the credit line is not removed in any way, shape or form. You may not remove the credit line, or move it to another place. If you would like to do this, you will need written permission from the script author first, and they may charge you for this. Our staff put many hours into creating, testing and securing the scripts they write. They make no money from these scripts and simply want recognition for their work.
All scripts available at CodeGrrl.com are LINKWARE. This means that you MUST provide a link back to CodeGrrl.com, and if there is a credit line embedded into the script, you are NOT to remove it, as this violates our terms of use.
May 2, 2006 |
By Amelie |
Filed under CodeGrrl, FA-PHPHosting: Customize, FAQ, Flinx: Customize, NL-PHPMail, PHPCalendar, PHPCurrently, PHPFanBase: Customize, PHPQuotes, Scripts
-
2
How can I display a member count for each of my fanlistings at my fanlisting collective as seen at so-rocks.com?
A tutorial on how to do that is located here. Please note that it requires you to be using PHPFanBase.
May 22, 2004 |
By Sasha |
Filed under FAQ, Flinx: Customize, Scripts
-
3
How can I change Flinx Collective to have more than one image/site per table row?
Some instructions on how to do that can be found at the forums.
May 22, 2004 |
By Sasha |
Filed under FAQ, Flinx: Customize, Scripts
-
4
How can I change Flinx so that it will allow .bmp file types to be uploaded?
Flinx doesn’t allow bitmap files to be uploaded because they are icky
However, sometimes IE absolutely refuses to save as any other file type - go here for more information on this problem. We strongly recommend that you do not use bitmaps on your site, as they are extremely large, but it is possible to modify Flinx to allow bmp uploads. Here’s how:-
Open up post.php. Find the following section (should be around line 58):
$image = $HTTP_POST_FILES['upload_file']['name']; $UPLOAD_TYPES['JPG'] = 1; $UPLOAD_TYPES['JPEG'] = 1; $UPLOAD_TYPES['GIF'] = 1; $UPLOAD_TYPES['PNG'] = 1;
-
Add the following line:
$UPLOAD_TYPES['BMP'] = 1;
…to the end of that code segment, so it looks like this:
$image = $HTTP_POST_FILES['upload_file']['name']; $UPLOAD_TYPES['JPG'] = 1; $UPLOAD_TYPES['JPEG'] = 1; $UPLOAD_TYPES['GIF'] = 1; $UPLOAD_TYPES['PNG'] = 1; $UPLOAD_TYPES['BMP'] = 1;
Save that, and upload it to your server in ASCII mode. Now you will be able to upload .bmp files.
May 21, 2004 |
By Sasha |
Filed under FAQ, Flinx: Customize, Scripts
-
-
5
I use different sized icons. Is it possible to display the buttons in order of size?
Open up your category.php and find this line:
$result = mysql_query("SELECT * FROM $table_link WHERE relCatID=$id ORDER BY name ASC");and change it to this:
$result = mysql_query ("SELECT * FROM $table_link WHERE relCatID=$id ORDER BY width, height, name ASC");
May 21, 2004 |
By Sasha |
Filed under FAQ, Flinx: Customize, Scripts