Jump to content

jberezhnoy

Members
  • Posts

    33
  • Joined

  • Last visited

Profile Information

  • Location
    Kiev, Ukraine
  • Activity
    Other

jberezhnoy's Achievements

Newbie

Newbie (1/14)

4

Reputation

  1. Hi! The problem is that your mysql has insufficient privileges to create temporary tables and, possibly, some others. You can check this from phpmyadmin by running the following query: SHOW GRANTS; If you have all necessary permissions the output should be like: Grants for yourusername_pshop@% GRANT USAGE ON . TO 'yourusername_pshop'@'%' IDENTIFIED BY PASSWORD 'YOURPASSWORDHASH' GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES, EXECUTE, CREATE VIEW, SHOW VIEW, CREATE ROUTINE, ALTER ROUTINE ON yourusername_pshop.* TO 'yourusername_pshop'@'%' In my case I was missing privileges to create temporary tables [!!! if you look at your error you can see that the SQL query tries to create temporary table in memory (ENGINE=MEMORY), but indeed you do not have this permission and get access denied error] Hope it helps
  2. you did not mention that in your original post i would suggest you turn on error reporting and try to find out what's happening - in file /config/config.inc.php find the code @ini_set('display_errors', 'off') and change it to @ini_set('display_errors', 'on') after that if your reload your FO page it hopefully should return some error
  3. As i understand FO is working, so you can register as a customer. Then go to phpmyadmin and do the rest
  4. i think the simplest way is to reset your password in the following way: try to register as a customer with password 12345678 or any other. then copy hash of this password from your db, and paste to your admin password hash in the db
  5. Здравствуйте, Дмитрий, насчет перевода PrestaShop .... Дело в том, что PrestaShop - торговая марка или бренд. Перевод брендов является необязательным, особенно, если нет аналога на русском языке. А если этот аналог и есть, то большой вопрос а стоит ли его переводить. Как вы, к примеру, переведете на русский язык фразу "Apple MacBook" ? - Яблоко МакКнига? И будет ли такой перевод полезен/корректен? Какой смысл переводить / транслировать PrestaShop как ПрестаШоп? Просто чтобы были русские буквы? Смысловой нагрузки это не даст. Если уж становится вопрос о том считате ли вы себя русским, то наверное, было бы корректнее перевести как ПрестаМагазин или заглянуть еще и в испанский словарь (т.к. в англ. такого слова нет), где Presta переводится как платить. Тогда будет замечательный русский перевод "ПлатитьМагазин". Если вы знаток русского языка - то почему же вы не внесете свою лепту в перевод? Это же коммьюнити/оупен-соурс проджект community/open source project... P.S> а как лучше перевести PHP и Perl -> ПиЭйчПи и Перл? Представьте себе скрипт написанный в Перле Обыватель сразу почуствует гениальность слога и поймет, что корни перевода идут от Александра Сергеевича и Федора Михайловича
  6. Hi, this can be a hosting related problem. Here is a similar thread at godaddy support: http://support.godaddy.com/groups/web-hosting/forum/topic/increasing-script-allowed-time/ and what about your backoffice - is it loading?
  7. bad news (( try to put the missing font in the appropriate tcpdf folder I've googled for this file and was able to download it from the first link http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&ved=0CDEQFjAA&url=http%3A%2F%2Fwww.bvbcode.com%2Fcode%2Fa620fisr-733584-down&ei=3M01UY7WF6n14QSw3IEY&usg=AFQjCNEPWssK_sPRzA-6FOo_BBYfIrDSiw&bvm=bv.43148975,d.bGE&cad=rja
  8. Hi, in Advanced Parameters -> Performance try to switch the caching system in the dropdown list from "File system" to "Memcached", and do leave the caching system disabled (as you have now). It looks like prestashop tries to enable the filesystem cache despite it is disabled. And write back here
  9. Strange thing... interesting to know what has caused the original problem (i mean blank page instead mentioned in your 1st post). Now it seems that tcpdf requires this font "TCPDF ERROR: Could not include font definition file: dejavusanscondensed" If you have this font - please put it into the folder "...tools\tcpdf\fonts" Otherwise you can try to change the font in configuration : in the file classes/pdf/PDFGenerator.php find a string (in the very beginning) const DEFAULT_FONT = ‘helvetica’; in your case it's probably not helvetica but 'dejavusanscondensed' or something like this try to replace this line as follows const DEFAULT_FONT = ‘freeserif’; And tell us if something changes
  10. Besides the permissions, try to switch to the legacy images system (in preferences -> images). It helped me in similar situation
  11. Hi, Try to download prestashop installation package, extract tcpdf folder's content & upload to appropriate folder on your site Then check the outcome
  12. Hi, try to switch between legacy/non-legacy image modes in preferences -> images & also force to compile your cache
  13. Hi, I may suggest you download clean prestashop installation package and copy the original file content.tpl (overwriting yours).
  14. Hi, you can try uploading translations from original installation package (folder translations) Although this may not resolve the problem -->>this will not work (just tested on xampp) You need to restore a backed up database via phpmyadmin or try to import working translation tables to your db
  15. Nice to hear that Maybe developers could diversify error codes for the purpose of better user friendliness
×
×
  • Create New...