Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 22
  1. #11
    Join Date
    Jun 2003
    Posts
    33,720
    Plugin Contributions
    0

    Default Re: about return authorization,how to use,where is the Entrance pages?

    moderator note: moved thread from General Question to All other contributions.
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  2. #12
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: about return authorization,how to use,where is the Entrance pages?

    Quote Originally Posted by countrycharm View Post
    I have installed the return authorization mod and I have a problem. I'm using the cherry template and it does not have a side box for information. How do I add the link to show? Thank you
    I just checked the demo version of cherry template and it appears to have both information and more information sideboxes so you should be able to use the instructions below

    To add the link in your Information sidebox, copy the following code and add it in the desired location in includes/modules/sideboxes/YOUR_TEMPLATE/information.php:

    if (DEFINE_RETURNS_STATUS <= 1) {
    $information[] = '<a href="' . zen_href_link(FILENAME_RETURNS, '', 'SSL') . '">' . BOX_INFORMATION_RETURNS . '</a>';
    }

    (If you want it in the more_information sidebox, change $information[] to $more_information[] and add it to includes/modules/sideboxes/YOUR_TEMPLATE/more_information.php)

  3. #13
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: about return authorization,how to use,where is the Entrance pages?

    Yes it appears to have both information and more information sideboxes, but the are not where they are suppose to be. The location in includes/modules/sideboxes/YOUR_TEMPLATE/information.php: does not exsit in the cherry for some reason. I believe it is done with english PHP Script some how.
    Here is a peek at it, see what you can find out. I added the code and uploaded it but it still does not show up.
    Thank you again



    <?php
    /**
    * @package languageDefines
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: english.php 5454 2006-12-29 20:10:17Z drbyte $
    */

    // FOLLOWING WERE moved to meta_tags.php
    //define('TITLE', 'Zen Cart!');
    //define('SITE_TAGLINE', 'The Art of E-commerce');
    //define('CUSTOM_KEYWORDS', 'ecommerce, open source, shop, online shopping');
    // END: moved to meta_tags.php

    define('FOOTER_TEXT_BODY', ' <a href="http://www.TheGoodShepherdStore/" target="_blank">TheGoodShepherdStore.com</a> &nbsp;Copyright &copy; ' . date('Y') . ' <a href="http://www.zen-cart.com" target="_blank">Zen Cart</a>. Powered by <a href="http://www.zen-cart.com" target="_blank">Zen Cart</a>');

    // look in your $PATH_LOCALE/locale directory for available locales..
    // on RedHat try 'en_US'
    // on FreeBSD try 'en_US.ISO_8859-1'
    // on Windows try 'en', or 'English'
    @setlocale(LC_TIME, 'en_US.ISO_8859-1');
    define('DATE_FORMAT_SHORT', '&#37;m/%d/%Y'); // this is used for strftime()
    define('DATE_FORMAT_LONG', '%A %d %B, %Y'); // this is used for strftime()
    define('DATE_FORMAT', 'm/d/Y'); // this is used for date()
    define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S');

    ////
    // Return date in raw format
    // $date should be in format mm/dd/yyyy
    // raw date is in format YYYYMMDD, or DDMMYYYY
    if (!function_exists('zen_date_raw')) {
    function zen_date_raw($date, $reverse = false) {
    if ($reverse) {
    return substr($date, 3, 2) . substr($date, 0, 2) . substr($date, 6, 4);
    } else {
    return substr($date, 6, 4) . substr($date, 0, 2) . substr($date, 3, 2);
    }
    }
    }

    // if USE_DEFAULT_LANGUAGE_CURRENCY is true, use the following currency, instead of the applications default currency (used when changing language)
    define('LANGUAGE_CURRENCY', 'USD');

    // Global entries for the <html> tag
    define('HTML_PARAMS','dir="ltr" lang="en"');

    // charset for web pages and emails
    define('CHARSET', 'iso-8859-1');

    // footer text in includes/footer.php
    define('FOOTER_TEXT_REQUESTS_SINCE', 'requests since');

    // Define the name of your Gift Certificate as Gift Voucher, Gift Certificate, Zen Cart Dollars, etc. here for use through out the shop
    define('TEXT_GV_NAME','Gift Certificate');
    define('TEXT_GV_NAMES','Gift Certificates');

    // used for redeem code, redemption code, or redemption id
    define('TEXT_GV_REDEEM','Redemption Code');

    // used for redeem code sidebox
    define('BOX_HEADING_GV_REDEEM', TEXT_GV_NAME);
    define('BOX_GV_REDEEM_INFO', 'Redemption code: ');

    // text for gender
    define('MALE', 'Mr.');
    define('FEMALE', 'Ms.');
    define('MALE_ADDRESS', 'Mr.');
    define('FEMALE_ADDRESS', 'Ms.');

    // text for date of birth example
    define('DOB_FORMAT_STRING', 'mm/dd/yyyy');

    //text for sidebox heading links
    define('BOX_HEADING_LINKS', '');

    // categories box text in sideboxes/categories.php
    define('BOX_HEADING_CATEGORIES', 'Categories');

    // manufacturers box text in sideboxes/manufacturers.php
    define('BOX_HEADING_MANUFACTURERS', 'Manufacturers');

    // whats_new box text in sideboxes/whats_new.php
    define('BOX_HEADING_WHATS_NEW', 'New Products');
    define('CATEGORIES_BOX_HEADING_WHATS_NEW', 'New Products ...');

    define('BOX_HEADING_FEATURED_PRODUCTS', 'Featured');
    define('CATEGORIES_BOX_HEADING_FEATURED_PRODUCTS', 'Featured Products ...');
    define('TEXT_NO_FEATURED_PRODUCTS', 'More featured products will be added soon. Please check back later.');

    define('TEXT_NO_ALL_PRODUCTS', 'More products will be added soon. Please check back later.');
    define('CATEGORIES_BOX_HEADING_PRODUCTS_ALL', 'All Products ...');

    // quick_find box text in sideboxes/quick_find.php
    define('BOX_HEADING_SEARCH', 'Search');
    define('BOX_SEARCH_ADVANCED_SEARCH', 'Advanced Search');

    // specials box text in sideboxes/specials.php
    define('BOX_HEADING_SPECIALS', 'Specials');
    define('CATEGORIES_BOX_HEADING_SPECIALS','Specials ...');

    // reviews box text in sideboxes/reviews.php
    define('BOX_HEADING_REVIEWS', 'Reviews');
    define('BOX_REVIEWS_WRITE_REVIEW', 'Write a review on this product.');
    define('BOX_REVIEWS_NO_REVIEWS', 'There are currently no product reviews.');
    define('BOX_REVIEWS_TEXT_OF_5_STARS', '%s of 5 Stars!');

    // shopping_cart box text in sideboxes/shopping_cart.php
    define('BOX_HEADING_SHOPPING_CART', 'Shopping Cart');
    define('BOX_SHOPPING_CART_EMPTY', 'Your cart is empty.');
    define('BOX_SHOPPING_CART_DIVIDER', 'ea.-&nbsp;');

    // order_history box text in sideboxes/order_history.php
    define('BOX_HEADING_CUSTOMER_ORDERS', 'Quick Re-Order');

    // best_sellers box text in sideboxes/best_sellers.php
    define('BOX_HEADING_BESTSELLERS', 'Bestsellers');
    define('BOX_HEADING_BESTSELLERS_IN', 'Bestsellers in<br />&nbsp;&nbsp;');

    // notifications box text in sideboxes/products_notifications.php
    define('BOX_HEADING_NOTIFICATIONS', 'Notifications');
    define('BOX_NOTIFICATIONS_NOTIFY', 'Notify me of updates to <strong>%s</strong>');
    define('BOX_NOTIFICATIONS_NOTIFY_REMOVE', 'Do not notify me of updates to <strong>%s</strong>');

    // manufacturer box text
    define('BOX_HEADING_MANUFACTURER_INFO', 'Manufacturer Info');
    define('BOX_MANUFACTURER_INFO_HOMEPAGE', '%s Homepage');
    define('BOX_MANUFACTURER_INFO_OTHER_PRODUCTS', 'Other products');

    // languages box text in sideboxes/languages.php
    define('BOX_HEADING_LANGUAGES', 'Languages');

    // currencies box text in sideboxes/currencies.php
    define('BOX_HEADING_CURRENCIES', 'Currencies');

    // information box text in sideboxes/information.php
    define('BOX_HEADING_INFORMATION', 'Information');
    define('BOX_INFORMATION_PRIVACY', 'Privacy Notice');
    define('BOX_INFORMATION_CONDITIONS', 'Conditions of Use');
    define('BOX_INFORMATION_SHIPPING', 'Shipping ');
    define('BOX_INFORMATION_RETURNS', 'Returns ');
    if(DEFINE_RETURNS_STATUS <= 1) {
    $information[] = '<a href="' . zen_href_link(FILENAME_RETURNS, '', 'SSL') . '">' . BOX_INFORMATION_RETURNS . '</a>';
    }

    define('BOX_INFORMATION_CONTACT', 'Contact Us');
    define('BOX_BBINDEX', 'Forum');
    define('BOX_INFORMATION_UNSUBSCRIBE', 'Newsletter Unsubscribe');

    define('BOX_INFORMATION_SITE_MAP', 'Site Map');

    // information box text in sideboxes/more_information.php - were TUTORIAL_
    define('BOX_HEADING_MORE_INFORMATION', 'More Information');
    define('BOX_INFORMATION_PAGE_2', 'Page 2');
    define('BOX_INFORMATION_PAGE_3', 'Page 3');
    define('BOX_INFORMATION_PAGE_4', 'Page 4');

    // tell a friend box text in sideboxes/tell_a_friend.php
    define('BOX_HEADING_TELL_A_FRIEND', 'Tell A Friend');
    define('BOX_TELL_A_FRIEND_TEXT', 'Tell someone you know about this product.');

    // wishlist box text in includes/boxes/wishlist.php
    define('BOX_HEADING_CUSTOMER_WISHLIST', 'My Wishlist');
    define('BOX_WISHLIST_EMPTY', 'You have no items on your Wishlist');
    define('IMAGE_BUTTON_ADD_WISHLIST', 'Add to Wishlist');
    define('TEXT_WISHLIST_COUNT', 'Currently %s items are on your Wishlist.');
    define('TEXT_DISPLAY_NUMBER_OF_WISHLIST', 'Displaying <strong>%d</strong> to <strong>%d</strong> (of <strong>%d</strong> items on your wishlist)');
    Last edited by countrycharm; 31 Aug 2007 at 08:09 PM.

  4. #14
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: about return authorization,how to use,where is the Entrance pages?

    Quote Originally Posted by countrycharm View Post
    Yes it appears to have both information and more information sideboxes, but the are not where they are suppose to be. The location in includes/modules/sideboxes/YOUR_TEMPLATE/information.php: does not exsit in the cherry for some reason. I believe it is done with english PHP Script some how.
    Here is a peek at it, see what you can find out. I added the code and uploaded it but it still does not show up.
    Thank you again



    <?php
    /**
    * @package languageDefines
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: english.php 5454 2006-12-29 20:10:17Z drbyte $
    */

    // FOLLOWING WERE moved to meta_tags.php
    //define('TITLE', 'Zen Cart!');
    //define('SITE_TAGLINE', 'The Art of E-commerce');
    //define('CUSTOM_KEYWORDS', 'ecommerce, open source, shop, online shopping');
    // END: moved to meta_tags.php

    define('FOOTER_TEXT_BODY', ' <a href="http://www.TheGoodShepherdStore/" target="_blank">TheGoodShepherdStore.com</a> &nbsp;Copyright &copy; ' . date('Y') . ' <a href="http://www.zen-cart.com" target="_blank">Zen Cart</a>. Powered by <a href="http://www.zen-cart.com" target="_blank">Zen Cart</a>');

    // look in your $PATH_LOCALE/locale directory for available locales..
    // on RedHat try 'en_US'
    // on FreeBSD try 'en_US.ISO_8859-1'
    // on Windows try 'en', or 'English'
    @setlocale(LC_TIME, 'en_US.ISO_8859-1');
    define('DATE_FORMAT_SHORT', '%m/%d/%Y'); // this is used for strftime()
    define('DATE_FORMAT_LONG', '%A %d %B, %Y'); // this is used for strftime()
    define('DATE_FORMAT', 'm/d/Y'); // this is used for date()
    define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S');

    ////
    // Return date in raw format
    // $date should be in format mm/dd/yyyy
    // raw date is in format YYYYMMDD, or DDMMYYYY
    if (!function_exists('zen_date_raw')) {
    function zen_date_raw($date, $reverse = false) {
    if ($reverse) {
    return substr($date, 3, 2) . substr($date, 0, 2) . substr($date, 6, 4);
    } else {
    return substr($date, 6, 4) . substr($date, 0, 2) . substr($date, 3, 2);
    }
    }
    }

    // if USE_DEFAULT_LANGUAGE_CURRENCY is true, use the following currency, instead of the applications default currency (used when changing language)
    define('LANGUAGE_CURRENCY', 'USD');

    // Global entries for the <html> tag
    define('HTML_PARAMS','dir="ltr" lang="en"');

    // charset for web pages and emails
    define('CHARSET', 'iso-8859-1');

    // footer text in includes/footer.php
    define('FOOTER_TEXT_REQUESTS_SINCE', 'requests since');

    // Define the name of your Gift Certificate as Gift Voucher, Gift Certificate, Zen Cart Dollars, etc. here for use through out the shop
    define('TEXT_GV_NAME','Gift Certificate');
    define('TEXT_GV_NAMES','Gift Certificates');

    // used for redeem code, redemption code, or redemption id
    define('TEXT_GV_REDEEM','Redemption Code');

    // used for redeem code sidebox
    define('BOX_HEADING_GV_REDEEM', TEXT_GV_NAME);
    define('BOX_GV_REDEEM_INFO', 'Redemption code: ');

    // text for gender
    define('MALE', 'Mr.');
    define('FEMALE', 'Ms.');
    define('MALE_ADDRESS', 'Mr.');
    define('FEMALE_ADDRESS', 'Ms.');

    // text for date of birth example
    define('DOB_FORMAT_STRING', 'mm/dd/yyyy');

    //text for sidebox heading links
    define('BOX_HEADING_LINKS', '');

    // categories box text in sideboxes/categories.php
    define('BOX_HEADING_CATEGORIES', 'Categories');

    // manufacturers box text in sideboxes/manufacturers.php
    define('BOX_HEADING_MANUFACTURERS', 'Manufacturers');

    // whats_new box text in sideboxes/whats_new.php
    define('BOX_HEADING_WHATS_NEW', 'New Products');
    define('CATEGORIES_BOX_HEADING_WHATS_NEW', 'New Products ...');

    define('BOX_HEADING_FEATURED_PRODUCTS', 'Featured');
    define('CATEGORIES_BOX_HEADING_FEATURED_PRODUCTS', 'Featured Products ...');
    define('TEXT_NO_FEATURED_PRODUCTS', 'More featured products will be added soon. Please check back later.');

    define('TEXT_NO_ALL_PRODUCTS', 'More products will be added soon. Please check back later.');
    define('CATEGORIES_BOX_HEADING_PRODUCTS_ALL', 'All Products ...');

    // quick_find box text in sideboxes/quick_find.php
    define('BOX_HEADING_SEARCH', 'Search');
    define('BOX_SEARCH_ADVANCED_SEARCH', 'Advanced Search');

    // specials box text in sideboxes/specials.php
    define('BOX_HEADING_SPECIALS', 'Specials');
    define('CATEGORIES_BOX_HEADING_SPECIALS','Specials ...');

    // reviews box text in sideboxes/reviews.php
    define('BOX_HEADING_REVIEWS', 'Reviews');
    define('BOX_REVIEWS_WRITE_REVIEW', 'Write a review on this product.');
    define('BOX_REVIEWS_NO_REVIEWS', 'There are currently no product reviews.');
    define('BOX_REVIEWS_TEXT_OF_5_STARS', '%s of 5 Stars!');

    // shopping_cart box text in sideboxes/shopping_cart.php
    define('BOX_HEADING_SHOPPING_CART', 'Shopping Cart');
    define('BOX_SHOPPING_CART_EMPTY', 'Your cart is empty.');
    define('BOX_SHOPPING_CART_DIVIDER', 'ea.-&nbsp;');

    // order_history box text in sideboxes/order_history.php
    define('BOX_HEADING_CUSTOMER_ORDERS', 'Quick Re-Order');

    // best_sellers box text in sideboxes/best_sellers.php
    define('BOX_HEADING_BESTSELLERS', 'Bestsellers');
    define('BOX_HEADING_BESTSELLERS_IN', 'Bestsellers in<br />&nbsp;&nbsp;');

    // notifications box text in sideboxes/products_notifications.php
    define('BOX_HEADING_NOTIFICATIONS', 'Notifications');
    define('BOX_NOTIFICATIONS_NOTIFY', 'Notify me of updates to <strong>%s</strong>');
    define('BOX_NOTIFICATIONS_NOTIFY_REMOVE', 'Do not notify me of updates to <strong>%s</strong>');

    // manufacturer box text
    define('BOX_HEADING_MANUFACTURER_INFO', 'Manufacturer Info');
    define('BOX_MANUFACTURER_INFO_HOMEPAGE', '%s Homepage');
    define('BOX_MANUFACTURER_INFO_OTHER_PRODUCTS', 'Other products');

    // languages box text in sideboxes/languages.php
    define('BOX_HEADING_LANGUAGES', 'Languages');

    // currencies box text in sideboxes/currencies.php
    define('BOX_HEADING_CURRENCIES', 'Currencies');

    // information box text in sideboxes/information.php
    define('BOX_HEADING_INFORMATION', 'Information');
    define('BOX_INFORMATION_PRIVACY', 'Privacy Notice');
    define('BOX_INFORMATION_CONDITIONS', 'Conditions of Use');
    define('BOX_INFORMATION_SHIPPING', 'Shipping ');
    define('BOX_INFORMATION_RETURNS', 'Returns ');
    if(DEFINE_RETURNS_STATUS <= 1) {
    $information[] = '<a href="' . zen_href_link(FILENAME_RETURNS, '', 'SSL') . '">' . BOX_INFORMATION_RETURNS . '</a>';
    }

    define('BOX_INFORMATION_CONTACT', 'Contact Us');
    define('BOX_BBINDEX', 'Forum');
    define('BOX_INFORMATION_UNSUBSCRIBE', 'Newsletter Unsubscribe');

    define('BOX_INFORMATION_SITE_MAP', 'Site Map');

    // information box text in sideboxes/more_information.php - were TUTORIAL_
    define('BOX_HEADING_MORE_INFORMATION', 'More Information');
    define('BOX_INFORMATION_PAGE_2', 'Page 2');
    define('BOX_INFORMATION_PAGE_3', 'Page 3');
    define('BOX_INFORMATION_PAGE_4', 'Page 4');

    // tell a friend box text in sideboxes/tell_a_friend.php
    define('BOX_HEADING_TELL_A_FRIEND', 'Tell A Friend');
    define('BOX_TELL_A_FRIEND_TEXT', 'Tell someone you know about this product.');

    // wishlist box text in includes/boxes/wishlist.php
    define('BOX_HEADING_CUSTOMER_WISHLIST', 'My Wishlist');
    define('BOX_WISHLIST_EMPTY', 'You have no items on your Wishlist');
    define('IMAGE_BUTTON_ADD_WISHLIST', 'Add to Wishlist');
    define('TEXT_WISHLIST_COUNT', 'Currently %s items are on your Wishlist.');
    define('TEXT_DISPLAY_NUMBER_OF_WISHLIST', 'Displaying <strong>%d</strong> to <strong>%d</strong> (of <strong>%d</strong> items on your wishlist)');
    What is the name of your custom template (i'm guessing it something like "cherry_zen")

    So... the install.txt instructions tell you to:

    Before uploading change the YOUR_TEMPLATE directories to match the name of your custom directory.

    The files are arranged in the same structure as Zen Cart so You can FTP each directory to your site.

    So... change the YOUR_TEMPLATE folder names to ('cherry_zen") or whatever the name of the template is.

  5. #15
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: about return authorization,how to use,where is the Entrance pages?

    My custom template folder name is luck_charm. Everything is in the right place. The template was made without the sidebox information.php: I don't know how he did that, but he did. The only thing that is in the

    includes/modules/sideboxes/luck_charm/ is my godaddy.php and the links_box.php.

    If you could tell me or we can figure out how the information sidebox is diplaying without the information.php being there we might have a winner.
    Thank you again

  6. #16
    Join Date
    Jan 2007
    Posts
    25
    Plugin Contributions
    0

    Default Re: about return authorization,how to use,where is the Entrance pages?

    very very thanks for clyde,I had installed successfully,it is working very great,wonderful,thanks a lot! Autofill is working great too!

  7. #17
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: about return authorization,how to use,where is the Entrance pages?

    Quote Originally Posted by countrycharm View Post
    My custom template folder name is luck_charm. Everything is in the right place. The template was made without the sidebox information.php: I don't know how he did that, but he did. The only thing that is in the

    includes/modules/sideboxes/luck_charm/ is my godaddy.php and the links_box.php.

    If you could tell me or we can figure out how the information sidebox is diplaying without the information.php being there we might have a winner.
    Thank you again
    The way Zen Cart works is that it will look for the various files in your custom folder first, if it doesn't find that particular file then it looks in its default folder(s).

    The reason it finds the information sidebox is that it was found in
    includes/modules/sideboxes and in
    includes/templates/template_default/sideboxes

    so to add the the return code to the information box
    go to includes/modules/sideboxes
    open information.php and add the code for the return authorization link

    save the edited file in your custom folder and upload to your server.

  8. #18
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: about return authorization,how to use,where is the Entrance pages?

    Quote Originally Posted by qingtianyu9 View Post
    very very thanks for clyde,I had installed successfully,it is working very great,wonderful,thanks a lot! Autofill is working great too!
    Glad you got it working

  9. #19
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: about return authorization,how to use,where is the Entrance pages?

    Thank you Clyde for all your help and clarifications. It's showing up now like it is suppose to now. Sorry for being such a pain.
    Thank you again

  10. #20
    Join Date
    Sep 2007
    Posts
    17
    Plugin Contributions
    0

    Default Re: about return authorization,how to use,where is the Entrance pages?

    quick question about the field names in the form,
    everything seems to be working, except the labels are incorrect.
    for example it has ENTRY_NAME Rather than Name and ENTRY_EMAIL ranter than just email. also next to the phone number it has ENTRY_OPTIONAL_SYMBOL and so on. i renamed the template before upload and ran the sql patch.

    Thanks

    Sean

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Replies: 0
    Last Post: 16 Feb 2012, 06:03 PM
  2. Return Authorization Mod
    By rkeppert in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 31 Mar 2008, 06:07 AM
  3. about return authorization,abuot DATABASE MODIFICATIONS
    By qingtianyu9 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 31 Aug 2007, 12:11 PM
  4. Return Authorization 2.0.1
    By TweedyBird in forum General Questions
    Replies: 7
    Last Post: 13 Jan 2007, 02:31 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg