Jump to content

Jason Seale

Members
  • Posts

    9
  • Joined

  • Last visited

Jason Seale's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Thanks, but unfortunately, Blue Host only has PHP 5.2.3 ... and said they could not upgrade at this time. Anyone else with any suggestions?
  2. Hi All: I have a client looking for hosting that offers the full requirements for the latest build of Prestashop, which seem to be: PHP 5.3+ MySQL 5.1+ Apache 1.3+ or IIS 6+ This short list is based on the following considerations, copied from the PrestaShop download page: - Linux, Unix, or Windows - Web Server (Apache 1.3 or later, IIS 6 or later) - PHP 5.0* or later - MySQL 5** or later * Some PHP 5 versions are bugged and prevent PrestaShop from working correctly: - PHP 5.2.1 (authentication is impossible) - PHP 5.2.6 (authentication is impossible under 64bits servers) - PHP 5.2.9 (image management/upload broken) - PHP < 5.2 (invalid date timezone) ** PrestaShop is working from MySQL 4.1.14 to 5.0 too but some features are not working (e.g., product duplication) or have strange behaviors
  3. J'ai résolu le problème à ma satisfaction ... Placez le code suivant dans le haut de /classes/Order.php: <?php error_reporting(E_ALL ^ E_NOTICE); Cela s'avère tout simplement hors de l'avis, qui est un avertissement, mais pas nécessairement une erreur (je suppose que ce n'est pas une erreur parce que dans la mesure où je peux voir, le programme fonctionne grand)! Je vous remercie pour votre travail acharné et les changements de programme étonnant. ============================================================== I solved the issue to my satisfaction ... place the following code at the top of /classes/Order.php: <?php error_reporting(E_ALL ^ E_NOTICE); This simply turns off the notice, which is a warning but not necessarily an error (I assume it is not an error because insofar as I can see, the program is working great)! Thank you for your hard work and amazing program changes.
  4. Correctement formaté code ci-dessus // Properly Formatted Code from Above if (!$result2[0]['id_image']) { $images = Language::getIsoById($cookie->id_lang).'-default'; } else { $images = $id_product.'-'.$result2[0]['id_image']; }
  5. Traduction anglais-français fourni par Google: Bonjour! Je vous remercie de votre dur labeur. Vos modifications ne semble fonctionner, mais néanmoins je reçois une erreur lorsque sur la page de commander à nouveau (Notice: Undefined offset: 0 in /var/www/vhosts/boardroomfood.ca/httpdocs/classes/Order.php on line 374) Voici le code à partir de cette ligne: if (!$result2[0]['id_image']) { $images = Language::getIsoById($cookie->id_lang).'-default'; } else { $images = $id_product.'-'.$result2[0]['id_image']; } J'exécute PrestaShop 1.2.5 ... votre programme est compatible pour la version (ou seront-ils bientôt)? Quelqu'un là-bas ont ce programme fonctionne avec succès à 1.2.5? Site est BoardRoomFood.ca si vous souhaitez le consulter, mais vous auriez besoin pour vous inscrire, je crois, de le faire. Je vous remercie pour toute aide que vous pouvez offrir! ===================== Hello! Thank you for your hard work. Your modifications seem to work, but nevertheless I get an error when on the RE ORDER page (Notice: Undefined offset: 0 in /var/www/vhosts/boardroomfood.ca/httpdocs/classes/Order.php on line 374) Here is the code from that line: if (!$result2[0]['id_image']) { $images = Language::getIsoById($cookie->id_lang).'-default'; } else { $images = $id_product.'-'.$result2[0]['id_image']; } I am running PrestaShop 1.2.5 ... is your program compatible for the version (or will it soon be)? Does anyone out there have this program working successfully on 1.2.5? Site is BoardRoomFood.ca if you would like to check it out, though you would need to register, I think, to do so. Thank you for any help you can provide! =========================
  6. If you want to sort your products by your own criteria, and not by name or price or whatever, follow these steps: -- Go to Back Office ... Preferences ... Products and choose Default order by: [Position inside category] -- Now, go to Back Office ... Catalog -- Click on the Category with the products you want to sort -- Under Products in this category use the little black up and down arrowheads in the Position column to arrange your products in the desired order -- Customers will still be able to overide your custom sort by choosing to sort by name, price etc. on the product pages, but at least the first thing they see will be what you want them to see.
  7. Try solutions: http://www.prestashop.com/forums/viewthread/34835/modules___development/solved__ssl_security_warnings_with_ie_when_using_flash
  8. Try the solution links on this page. The Google Analytics one helped me: http://www.prestashop.com/forums/viewthread/34835/modules___development/solved__ssl_security_warnings_with_ie_when_using_flash
×
×
  • Create New...