Jump to content

alprmtlu

Members
  • Posts

    20
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

alprmtlu's Achievements

Newbie

Newbie (1/14)

4

Reputation

  1. I have the exact same problem fellas. I'm using v1.4.2.5. I had done many translations before without any problems. Now I can't do any module translations. It gives "service temporarily unavailable" error to me. I can do translations at FO or the other sections. The problem is only at module translations. I have the tr.php file (for Turkish) in that specific module folder but it's completely blank file. I need urgent help. Thanks.
  2. Hi guys, My PS version is 1.4.2.5 and I'm using Prestashop 1.4 Alternative theme. I'm in trouble with adapting my theme to Smarty 3. I want this coz I want to use CCC compression feature. I can here that you say "your theme is already compatible with smarty 3!" When I first time dig into PS, I knew nothing about it. I didn't even know there was a module "Theme Installer" and I installed the theme old school style (copy-paste into themes folder) and selected Smarty 2 option in preferences tab. Since then I've made many changes in the theme. Now, for obvious reasons, I must modify my theme for Smarty 3. Is there any way for me to do that? Thanks.
  3. Bu kadar uğraşmaya gerek yokmuş Bug trackerda arattım Validate.php'deki bir bug'dan kaynaklanıyormuş. classes klasöründeki Validate.php dosyasını şurdaki yeni versiyonuyla değiştirince sorun çözüldü. Benim prestashop versiyonu 1.4.2.5 bu arada.
  4. Bu yöntem aklıma gelmişti ama denemedim. Php kaynak kodlarında bi yerde karakter kodlamasını türkçeye çevirsem düzelecek sanki ama nerde?
  5. Merhabalar, Prestashop 1.4.2.5 kullanıyorum ve sitemde herhangi bir türkçe karakter problemi yok aslında. Ancak yeni üye kayıt yaparken formda adres kısmında "şehir" kısmına türkçe karakterle başlayan kelime yazınca "İl is invalid" hatası alıyor. Mesela "İstanbul" yazınca hata veriyor ama "istanbul yazınca bi sorun yok. Bu sorunu nasıl çözebilirim? Adres: http://www.pcbprotos.com
  6. My version is 1.4.2.5. Oh, I'm sorry I forgot to mention that my theme was prestashop alternative theme. You should go to your "theme" folder first and find your theme that you are currently using. Go to "themes->your theme-> modules -> blockcart" folder and search for those lines I mentioned before in blockcart.tpl file. The class names or id attributes may be different depending on your theme. If you still can't find them, go to "prestashop root folder ->modules->blockcart" folder.
  7. I do not recommend you to delete any code in prestashop ever. Because you never know when you will need that code in the future. Commenting out the code you don't need is always the best option. Deleting codes may cause problems.
  8. I'm about to activate my shop but I don't really want to activate it without enabling the Friendly-URL. Any ideas will be appraciated...
  9. Hello all, I've encountered several problems after I turned on friendly-url on my site. I generated the .htaccess file as it should be. The first issue is: Search.php is not working at all. I can't do any searches on the search bar. Tags block is not working either. When I click on a tag or I type something in the search bar and hit enter, the site redirects itself to the homepage. The second issue is: I get "Missing category ID" error when I click the category links in the catogories block. But if I edit and change the "Friendly URL" property of the specific category, somehow it works. (for example, the category name is "Sensors" and friendly-url property is "sensors", I change it to "sensorsss" and it works.) But I don't want it to remain "sensorsss", it's silly! My prestashop version is 1.4.2.5 and I use Prestashop Alternative theme and my site is multilingual. When friendly-url is on, my site url becomes http://www.myshop.com/en/ or .../tr/.. I think the problem is in the .htaccess file. How can I fix this? This is my current .htaccess file # .htaccess automaticaly generated by PrestaShop e-commerce open-source solution # WARNING: PLEASE DO NOT MODIFY THIS FILE MANUALLY. IF NECESSARY, ADD YOUR SPECIFIC CONFIGURATION WITH THE HTACCESS GENERATOR IN BACK OFFICE # http://www.prestashop.com - http://www.prestashop.com/forums <IfModule mod_rewrite.c> # URL rewriting module activation RewriteEngine on # URL rewriting rules RewriteRule ^api/?(.*)$ /webservice/dispatcher.php?url=$1 [QSA,L] RewriteRule ^([a-z]{2})/[a-zA-Z0-9-]*/([0-9]+)\-[a-zA-Z0-9-]*\.html /product.php?id_product=$2&isolang=$1 [QSA,L] RewriteRule ^([a-z]{2})/([0-9]+)\-[a-zA-Z0-9-]*\.html /product.php?id_product=$2&isolang=$1 [QSA,L] RewriteRule ^([a-z]{2})/([0-9]+)\-[a-zA-Z0-9-]* /category.php?id_category=$2&isolang=$1 [QSA,L] RewriteRule ^([a-z]{2})/content/([0-9]+)\-[a-zA-Z0-9-]* /cms.php?isolang=$1&id_cms=$2 [QSA,L] RewriteRule ^([a-z]{2})/content/category/([0-9]+)\-[a-zA-Z0-9-]* /cms.php?isolang=$1&id_cms_category=$2 [QSA,L] RewriteRule ^([a-z]{2})/([0-9]+)__[a-zA-Z0-9-]* /supplier.php?isolang=$1&id_supplier=$2 [QSA,L] RewriteRule ^([a-z]{2})/([0-9]+)_[a-zA-Z0-9-]* /manufacturer.php?isolang=$1&id_manufacturer=$2 [QSA,L] RewriteRule ^([a-z0-9]+)\-([a-z0-9]+)(\-[_a-zA-Z0-9-]*)/[_a-zA-Z0-9-]*\.jpg$ /img/p/$1-$2$3.jpg [L] RewriteRule ^([0-9]+)\-([0-9]+)/[_a-zA-Z0-9-]*\.jpg$ /img/p/$1-$2.jpg [L] RewriteRule ^([0-9]+)(\-[_a-zA-Z0-9-]*)/[_a-zA-Z0-9-]*\.jpg$ /img/c/$1$2.jpg [L] RewriteRule ^([0-9]+)\-[a-zA-Z0-9-]*\.html /product.php?id_product=$1 [QSA,L] RewriteRule ^[a-zA-Z0-9-]*/([0-9]+)\-[a-zA-Z0-9-]*\.html /product.php?id_product=$1 [QSA,L] RewriteRule ^([0-9]+)\-[a-zA-Z0-9-]* /category.php?id_category=$1 [QSA,L] RewriteRule ^([0-9]+)__([a-zA-Z0-9-]*) /supplier.php?id_supplier=$1 [QSA,L] RewriteRule ^([0-9]+)_([a-zA-Z0-9-]*) /manufacturer.php?id_manufacturer=$1 [QSA,L] RewriteRule ^content/([0-9]+)\-([a-zA-Z0-9-]*) /cms.php?id_cms=$1 [QSA,L] RewriteRule ^content/category/([0-9]+)\-([a-zA-Z0-9-]*) /cms.php?id_cms_category=$1 [QSA,L] RewriteRule ^lang-([a-z]{2})/([a-zA-Z0-9-]*)/([0-9]+)\-([a-zA-Z0-9-]*)\.html /product.php?id_product=$3&isolang=$1 [QSA,L] RewriteRule ^lang-([a-z]{2})/([0-9]+)\-([a-zA-Z0-9-]*)\.html /product.php?id_product=$2&isolang=$1 [QSA,L] RewriteRule ^lang-([a-z]{2})/([0-9]+)\-([a-zA-Z0-9-]*) /category.php?id_category=$2&isolang=$1 [QSA,L] RewriteRule ^en/404-error$ /404.php?isolang=en [QSA,L] RewriteRule ^en/address$ /address.php?isolang=en [QSA,L] RewriteRule ^en/addresses$ /addresses.php?isolang=en [QSA,L] RewriteRule ^en/authentication$ /authentication.php?isolang=en [QSA,L] RewriteRule ^en/best-sales$ /best-sales.php?isolang=en [QSA,L] RewriteRule ^en/cart$ /cart.php?isolang=en [QSA,L] RewriteRule ^en/contact-us$ /contact-form.php?isolang=en [QSA,L] RewriteRule ^en/discount$ /discount.php?isolang=en [QSA,L] RewriteRule ^en/guest-tracking$ /guest-tracking.php?isolang=en [QSA,L] RewriteRule ^en/order-history$ /history.php?isolang=en [QSA,L] RewriteRule ^en/identity$ /identity.php?isolang=en [QSA,L] RewriteRule ^en/manufacturers$ /manufacturer.php?isolang=en [QSA,L] RewriteRule ^en/my-account$ /my-account.php?isolang=en [QSA,L] RewriteRule ^en/new-products$ /new-products.php?isolang=en [QSA,L] RewriteRule ^en/order$ /order.php?isolang=en [QSA,L] RewriteRule ^en/order-follow$ /order-follow.php?isolang=en [QSA,L] RewriteRule ^en/quick-order$ /order-opc.php?isolang=en [QSA,L] RewriteRule ^en/order-slip$ /order-slip.php?isolang=en [QSA,L] RewriteRule ^en/forgot-your-password$ /password.php?isolang=en [QSA,L] RewriteRule ^en/specials$ /prices-drop.php?isolang=en [QSA,L] RewriteRule ^en/search$ /search.php?isolang=en [QSA,L] RewriteRule ^en/sitemap$ /sitemap.php?isolang=en [QSA,L] RewriteRule ^en/stores$ /stores.php?isolang=en [QSA,L] RewriteRule ^en/suppliers$ /supplier.php?isolang=en [QSA,L] RewriteRule ^en$ /en/ [QSA,L] RewriteRule ^en/([^?&]*)$ /$1?isolang=en [QSA,L] RewriteRule ^tr/404-error$ /404.php?isolang=tr [QSA,L] RewriteRule ^tr/address$ /address.php?isolang=tr [QSA,L] RewriteRule ^tr/addresses$ /addresses.php?isolang=tr [QSA,L] RewriteRule ^tr/authentication$ /authentication.php?isolang=tr [QSA,L] RewriteRule ^tr/best-sales$ /best-sales.php?isolang=tr [QSA,L] RewriteRule ^tr/cart$ /cart.php?isolang=tr [QSA,L] RewriteRule ^tr/contact-us$ /contact-form.php?isolang=tr [QSA,L] RewriteRule ^tr/discount$ /discount.php?isolang=tr [QSA,L] RewriteRule ^tr/guest-tracking$ /guest-tracking.php?isolang=tr [QSA,L] RewriteRule ^tr/order-history$ /history.php?isolang=tr [QSA,L] RewriteRule ^tr/identity$ /identity.php?isolang=tr [QSA,L] RewriteRule ^tr/manufacturers$ /manufacturer.php?isolang=tr [QSA,L] RewriteRule ^tr/my-account$ /my-account.php?isolang=tr [QSA,L] RewriteRule ^tr/new-products$ /new-products.php?isolang=tr [QSA,L] RewriteRule ^tr/order$ /order.php?isolang=tr [QSA,L] RewriteRule ^tr/order-follow$ /order-follow.php?isolang=tr [QSA,L] RewriteRule ^tr/quick-order$ /order-opc.php?isolang=tr [QSA,L] RewriteRule ^tr/order-slip$ /order-slip.php?isolang=tr [QSA,L] RewriteRule ^tr/forgot-your-password$ /password.php?isolang=tr [QSA,L] RewriteRule ^tr/specials$ /prices-drop.php?isolang=tr [QSA,L] RewriteRule ^tr/search$ /search.php?isolang=tr [QSA,L] RewriteRule ^tr/sitemap$ /sitemap.php?isolang=tr [QSA,L] RewriteRule ^tr/stores$ /stores.php?isolang=tr [QSA,L] RewriteRule ^tr/suppliers$ /supplier.php?isolang=tr [QSA,L] RewriteRule ^tr$ /tr/ [QSA,L] RewriteRule ^tr/([^?&]*)$ /$1?isolang=tr [QSA,L] </IfModule> # Catch 404 errors ErrorDocument 404 /404.php
  10. This is how I removed all the informations about shipping: 1. Go to "blockcart.tpl" and comment out these lines: <span>{l s='Shipping' mod='blockcart'}</span> <span id="cart_block_shipping_cost" class="price ajax_cart_shipping_cost">{$shipping_cost}</span> <br/> 2. In the same file, find this line: <span id="cart_block_total" class="price ajax_block_cart_total">{$total}</span> and replace {$total} with {$product_total}: <span id="cart_block_total" class="price ajax_block_cart_total">{$product_total}</span> 3. probably the "AJAX mode" is on so you "must" edit also the "ajax-cart.js" file which exists in "blockcart" folder in "modules" folder. Open it and go to line 560. Replace: $('.ajax_block_cart_total').text(jsonData.total); with this $('.ajax_block_cart_total').text(jsonData.productTotal); This worked for me. I guess it should work for you too.
  11. Merhaba herkese. Bu soruna çözüm bulunabildi mi? Bir açıklayan olsa çok iyi olurdu.
  12. Thank you very much Nik! These instructions are very simple to follow. My online shop seems functional at the moment. If I encounter any errors, I will post it here. Thank you again!
  13. Hi all, I'm new at prestashop. I have 1.4.2.5 version of ps on my local machine(wamp server). I've built this one e-shop by prestashop but I have nothing online. Now it's time to make it online. There are many helpful documents how to install prestashop on the web but they are all clean installs (I mean "download ps from prestashop.com->unzip files into your server->go to 'install' directory etc... and you have a clean online store). How can I upload my locally ready shop to the online server for the first time?
×
×
  • Create New...