The AnimeFanlistings Network Message Board

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Jessy

Pages: 1
1
Relationships / Relationships: Did you get my F/U/C form?
« on: August 27, 2011, 03:59:43 PM »
Name: Jessica
Email: aikousha.fl
  • gmail.com

Subject: xxxHOLiC: Watanuki Kimihiro and Mugetsu
Date sent: Today (08/27/11)
Type of form: update

2
Fanstuff / Fanstuff - Did you get my form?
« on: August 27, 2011, 03:58:06 PM »
Name: Jessica
Email: aikousha.fl
  • gmail.com

Subject: xxxHOLiC Doujinshi: Doumeki Shizuka & Watanuki Kimihiro
Date sent: Today (08/27/11)
Type of form: update

3
Series / Did you get my Series Application/Troubles form?
« on: May 28, 2011, 12:13:18 PM »
Name: Jessica
Email: aikousha.fl AT gmail DOT com
Subject of Fanlisting: Hadashi de Bara wo Fume
Date sent: May 28th 2011

Thanks for checking

4
Adoption Center / Babies in adoption
« on: February 05, 2011, 02:25:25 AM »
Am I to late? I didn't have internet and couldn't send a mail.

5
Fanlistings Chit-Chat / Enth3 / Codesort2 and php 5.3
« on: January 04, 2011, 02:52:36 PM »
You can download codesort at http://fanupdate.co.uk/codesort.php . It doesn't include the adjustments that I wrote about above.

6
Fanlistings Chit-Chat / Enth3 / Codesort2 and php 5.3
« on: December 05, 2010, 04:01:30 PM »
I noticed today that my webhost had upgraded the php server to php 5.3 and I was getting several warnings in my scripts, because some of the code was deprecated.
For those with the same problems, I've already fixed the following in the script and now it works again.

Enth3
Mail.php
Code: [Select]
Line 154: $parser = &new Mail_RFC822();replace with
Code: [Select]
Line 154: $parser = new Mail_RFC822();
PEAR.php
Code: [Select]
Line 563: $a = &new $ec($code, $mode, $options, $userinfo);
Line 566: $a = &new $ec($message, $code, $mode, $options, $userinfo);
replace with
Code: [Select]
Line 563: $a = new $ec($code, $mode, $options, $userinfo);
Line 566: $a = new $ec($message, $code, $mode, $options, $userinfo);

show_join.php
Code: [Select]
Line 139: $matchstring = "^([0-9a-zA-Z]+[-._+&])*[0-9a-zA-Z]+" .
"@([-0-9a-zA-Z]+[.])+[a-zA-Z]{2,6}$";
Line 141: if( $_POST['email'] && ereg( $matchstring, $_POST['email'] ) )
replace with
Code: [Select]
Line 139: $matchstring = "/^([0-9a-zA-Z]+[-._+&])*[0-9a-zA-Z]+@([-0-9a-zA-Z]+[.])+[a-zA-Z]{2,6}$/";
Line 141: if( $_POST['email'] && preg_match( $matchstring, $_POST['email'] ) )

show_lostpass.php
Code: [Select]
Line 118: $matchstring = "^([0-9a-zA-Z]+[-._+&])*[0-9a-zA-Z]+" .
"@([-0-9a-zA-Z]+[.])+[a-zA-Z]{2,6}$";
Line 129: else if( !ereg( $matchstring, $_POST['email'] ) )
replace with
Code: [Select]
Line 118: $matchstring = "/^([0-9a-zA-Z]+[-._+&])*[0-9a-zA-Z]+@([-0-9a-zA-Z]+[.])+[a-zA-Z]{2,6}$/";
Line 129: else if( !preg_match( $matchstring, $_POST['email'] ) )

show_update.php
Code: [Select]
Line 086: $matchstring = "^([0-9a-zA-Z]+[-._+&])*[0-9a-zA-Z]+" .
"@([-0-9a-zA-Z]+[.])+[a-zA-Z]{2,6}$";
Line 089: if( !ereg( $matchstring, clean( $_POST['email'] ) ) ||
replace with
Code: [Select]
Line 086: $matchstring = "/^([0-9a-zA-Z]+[-._+&])*[0-9a-zA-Z]+@([-0-9a-zA-Z]+[.])+[a-zA-Z]{2,6}$/";
Line 089: if( !preg_match( $matchstring, clean( $_POST['email'] ) ) ||


Codesort 2
functions.php
Code: [Select]
Line 035: $instance =& new $object;replace with
Code: [Select]
Line 035: $instance = new $object;

7
Series / Did you get my Series F/U/C form?
« on: October 14, 2010, 12:10:08 PM »
Your name: Jessica
Your email address: aikousha. fl @ gmail.com
Subject of your fanlisting: Hana no namae, Toshokan Sensou, Densetsu no Yuusha no Densetsu
Type of form: Finished

8
Fanlistings Chit-Chat / Enth 3 Neglected Listings Notification
« on: March 04, 2010, 03:38:10 AM »
I have a question about Enth 3. I just received a notice from TFL that some of my fanlistings haven't been updated for 2 months (and I suspect that some of my TAFL fls). When I look at my enth administration I see that there isn't any fanlisting standing in the Neglected Listings Notification list.
Does anybody else have that problem? Or should I redownload the latest version (I do think that I have that version) and install it again?

Never mind, I toggled a bit with the php and now I get the list.

For those who also have this problem, I changed the 8 weeks to 6 on line 144 and suddenly the list grows.

I've looked a little bit further and found that the problem was in the calculation of the weeks. I found out that not all the weeks were showing.

After changing
Code: [Select]
if( $stats['lastupdated'] && date( 'Y' ) != date( 'Y', strtotime( $stats['lastupdated'] ) ) ) {
 $weeks = ( 52 - date( 'W', strtotime( $stats['lastupdated'] ) ) ) + date( 'W' );
   } else if( $stats['lastupdated'] ) {
 $weeks = date( 'W' ) - date( 'W', strtotime( $stats['lastupdated'] ) );
   }
to
Code: [Select]
$difference = strtotime(date('Y-m-d'), 0) - strtotime($stats['lastupdated'], 0 );
$weeks = floor($difference / 604800);

I got the complete list of fanlistings that wre being neglected.

Man, that took a while to found out. It's been to long since I've coded in php.

9
Adult / (Old) Adult: Did you get my form?
« on: November 14, 2009, 03:37:28 PM »
Name: Jessica
Email: aikousha.fl @ gmail.com
Subject: Shirakawa Naoya (Love Mode)
Date sent: today
Type of form: Finished

10
Episodes / Did you get my form?
« on: November 11, 2009, 08:15:02 AM »
Name: Jessica
Email: aikousha.fl @ gmail.com
Subject: Fruits Basket: Episode 17 - It's Because I've Been Loved That I've Become Stronger
Form type: finished

11
Series / Did you get my Series F/U/C form?
« on: October 24, 2009, 03:55:25 AM »
Your name: Jessica
Your email address: aikousha.fl @ gmail.com
Subject of your fanlisting: Dear Boys
Type of form: Finished

Pages: 1