Jump to content

Al Brookbanks

Staff
  • Posts

    6,681
  • Joined

  • Last visited

  • Days Won

    125

Everything posted by Al Brookbanks

  1. I love the fact CubeCart waves goodbye to the side advertisment frame with its built in JavaScript.
  2. CubeCart 3 will have all the features of CubeCart 2 with the exception of the backup feature which has been removed. This is because there are already free advanced database tools available such as phpMyAdmin which we highly recommend. CubeCart 3 has been completely written from scratch and it is now about 55% complete at the time of writing this but development is fast! We estimate a beta release in late February 2005. It has been written to work on servers with "Register Globals" set to off. Superior coding standards means that it will be more secure, modular and efficient. The Feature List HTML Templates - Now you can customise your store with absolutely no php knowledge. An array of templates will be available over time. Inventory stock control - Option to allow sales of items that are out of stock or not i.e. Order or Buy. Multiple categories per product. Unlimited product images. Unlimited levels of sub categories. Powerful cross browser rich text editor - Used with kind permission of Frederico Caldeira Knabben at http://www.fckeditor.net Bulk Emailer - Emails can be downloaded as a text file or bulk email sent directly though the administration panel its self. The rich text editor can be used to build powerful vibrant emails (See screen shots in the previous topic). There is a built in unsubscribe facility and the email can be sent at text, html or multipart format. Plug and play shipping & payment gateways - Simply upload the module you wish to use for your store and configure it. We expect this to result in a boom in the amount of possible gateways and shipping methods. Ability to handle digital downloads - This can be anything from digital music to software. Unlimited store administrators - Superusers and users. Users can be granted specific permissions (read/write etc...) and unsurprisingly superusers have access to everything. Automated copyright removal for customers. Improved language support - added 19:04 6th Jan. Other features such as testimonials and product reviews will be added depending on progress. If they are not released in 3.0.0 they will be in a future version. I think thats everything. Please note that these features are subject to change without notice. An upgrade script will be released to modify CC2 to CC3 but this will not be available with the beta release. Once CubeCart 3.0.0 is stable we aim to release 3.1.0 with built in ticket support system. Please note that current customers will be able to upgrade and have copyright removal. Whether CubeCart 3 is freely available or pay per download is still undecided. This depends upon some unforeseeable circumstances. We are also expecting a small rise in our prices upon release so we strongly recommend purchases prior to this.
  3. These are early screenshots and have now been superseeded with unsubscribe links etc... We will release a full features list shortly.
  4. I just use 512k which is ample for me from www.freedom2surf.co.uk (unmetered) .
  5. What is an antenna? Joking of course!! :P
  6. CubeCart 3 has the ability to bulk email all of your customers who are signed up to recieve email. If you prefer to email your customers with 3rd party software their addresses can be downloaded directly through the browser as a text document. A powerful rich text editor allows you to send vibrant emails as text, html or multipart. On send the admin system will send x amount of emails at a time and then refresh the page with a short pause to prevent the server from being overloaded. Have a look at the screenshots in the next post:
  7. I added it to the news post thanks Booker.
  8. To add a link on your CubeCart powered site please follow the instructions in this post: http://www.cubecart.com/site/forums/index....indpost&p=19987 Thanks to Booker :)
  9. Nice to see MIcrosoft has given most of their homepage to it... http://www.microsoft.com/
  10. Thanks for this. We've added it to our homepage too. Any other donation links for other countries welcome.
  11. 125,000+ dead, 5 Million Homeless and desperate help needed. A little money goes a long way... Read more at BBC News For UK donations: http://www.dec.org.uk/ For USA donations: https://www.redcross.org/donate/donation-form.asp or choose http://www.usaid.gov/locations/asia_near_e...mi/ngolist.html For Australian donations: https://www.redcross.org.au/Donations/onlin...miDonations.asp For Dutch donations: http://www.giro555.nl/ For Belgium donations: http://www.ikwilhelpen.be/iwh/action.php?aid=4 For German donations: http://www.n-tv.de/5468737.html
  12. Yeah some nice ideas... We would upgrade this board but the whole site has been built around it and it has even had a little customisation so its low priority. Oh and you have to pay to download the IPB2 now. We only purchased copyright removal at $275 I think as support etc isn't required. Maybe sometime next year we will spare the time and cash to do this. I like the idea about mods to.. but again its time and priority.
  13. I think Stjinj summed this up perfectly... The voting system has a look up table to store IP address per vote and sets a cookie. You can only vote for your store once a week unless you spoof your IP and delete the cookie every time. Or have a dynamic IP and delete the cookie. This is about as much security you can take for voting systems. Obviously any suggestions are always welcome... p.s. you should be able to edit your listing if logged on. Please email any bugs to us as the 3rd Party section of CubeCart.com was muddled together in about half a day.
  14. Thanks to you all for your support and custom over 2004. Have a fantastic Christmas and all the best for the new year.
  15. Hello folks, In an attempt to clean these forums of 3rd party people/companies offering services, a new site section has been made ... The intention of this is to make a place where you can freely advertise your services and people can leave feedback about their experience. Check it out: http://www.cubecart.com/site/3rdparty/ Many thanks to Stijnj for his suggestions and input. Please note that a far improved modifications section is on its way too. This section is brand new so please contact us if any bugs are found.
  16. ################################################## ###### UPGRADE FROM CubeCart 2.0.2 to 2.0.3 ###### ################################################## This update fixes Server Path Disclosure and a bug in register.php Upgrade instructions: Please follow the instructions outlined below. Estimated time: 10 Mins. If you have a version of CubeCart which has no modifications simply overwrite the files on your server with the ones listed below. If you have made modifications please follow the manual instructions below. Changed files: 1. register.php 2. link_navi.php 3. ver.php PLEASE REPORT AND BUGS RELATED TO THIS UPGRADE FILE TO [email protected] AT THE FIRST OPPORTUNITY. ################################# ## START OF MANUAL FIX ################################# Files to edit: 1. register.php /////////////////////////////// // Open register.php //////// At around line 33 find: +---------------------------------------------------- include("admin/config.php"); +---------------------------------------------------- Directly after this on the next line add: +---------------------------------------------------- include( "admin/settings.inc.php"); +---------------------------------------------------- At around line 39, 68, 99, 128, 158, 188 but NOT line 297 Remove the line +---------------------------------------------------- include( "admin/settings.inc.php"); +---------------------------------------------------- 2. link_navi /////////////////////////////// // Open link_navi.php //////// Directly after line 28 +---------------------------------------------------- // build link navigation for current category +---------------------------------------------------- After add: +---------------------------------------------------- include_once("admin/settings.inc.php"); +---------------------------------------------------- Find line 34 +---------------------------------------------------- $sql_1 = "select * from ".$prefix."store_category where cat_id = $cat_id"; +---------------------------------------------------- Replace it with: +---------------------------------------------------- $sql_1 = "select * from ".$prefix."store_category where cat_id = '".cleanData($cat_id,"int")."'"; +---------------------------------------------------- 3. ver.php /////////////////////////////// // Open ver.php //////// Find +---------------------------------------------------- <?php $estore_ver="2.0.2"; ?> +---------------------------------------------------- Replace it with: +---------------------------------------------------- <?php $estore_ver="2.0.3"; ?> +---------------------------------------------------- ################################# ## END OF MANUAL FIX #################################
  17. Please download the latest stable release of CubeCart 2.0.3 below: CubeCart 2.0.3 Upgrade instructions are provided with in the download package and outlined below: PLEASE ENSURE YOU HAVE UPGRADED FROM 2.0.1 BEFORE MAKING THESE CHANGES
  18. I did all the popup score charts and competition pages. :D
  19. Rebooted apache and all is looking good. :D
  20. True but the server is using too much memory and is 25% disk swapping which is bad news! Need to get that sorted.
×
×
  • Create New...