Jump to content

marco78

Members
  • Posts

    19
  • Joined

  • Last visited

Profile Information

  • Location
    italy
  • Activity
    Agency

marco78's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. gswantpotresti rendere utile il tuo commento? dacci indicazioni su quale alchimia i tecnici di serverplan hanno applicato per risolvere il tuo problema, a quanto pare il bug di prestashop che si protrae ancor prima della 1.6.1.2 fino all'attuale release, non è stata reputata così importante da essere risolta... eppure sono molti che lamentano questo problema sul mancato caricamento di pulsanti di salvataggio nella scheda prodotto grazie
  2. salve ho fatto l'upgrade dalla versione 1.6.0.8, alla 1.6.0.9,...1.6.1 fino all'attuale release senza saltarne una delle precedenti... il problema persisteva (tranne sulla 1.6.0.8) sia per l'errore che non caricava tabelle che per i salvataggi bloccati - oggi ho voluto riavviare l'antivirus del server, senza sperarci più di tanto... ed ivece ha funzionato rimane comunque il pulsante di salvataggio dei prodotti nel suo 'continuous spinning' anche se ora è possibile cliccarlo, PS 1615 su CentOS 6.7 nessun evasive mode attivato sul server
  3. stesso problema, alcuni riconducono ad un problema di caricamento di ajax, altri a moduli di apache che andrebbero in conflitto, fatto sta che sui prodotti del catalogo vengono caricate combinazioni inappropriate per il tipo di prodotto
  4. PHP Warning: unlink(/var/www/vhosts/dom.com/httpdocs/img/p/1/3/4/2/4/9/134249-home.jpg): Permission denied in /var/www/vhosts/dom.com/httpdocs/admin/tabs/AdminImages.php on line 290, referer: http://dom.uk/admin/index.php?tab=AdminImages&token=479fcc187b0c47a09676ddffc7a91b50149
  5. hi have problems in multistore redirection from non-www to www version of each store i have 3 stores in PS 1.6 that corretly redirect if url is www, instead putting each one without www, automatically i'm redirected to last (third) shop here is the .htaccess that prestashop generated <IfModule mod_rewrite.c> <IfModule mod_env.c> SetEnv HTTP_MOD_REWRITE On </IfModule> RewriteEngine on RewriteCond %{HTTP_HOST} ^www.mainShop.co.uk$ RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^(.*)faq/?$ /modules/blockfaq/faq.php [QSA,L] RewriteRule ^api/?(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Images RewriteCond %{HTTP_HOST} ^www.mainShop.co.uk$ RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^www.mainShop.co.uk$ RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$1$2$3$4.jpg [L] RewriteCond %{HTTP_HOST} ^www.mainShop.co.uk$ RewriteRule ^([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$1$2$3$4$5.jpg [L] RewriteCond %{HTTP_HOST} ^www.mainShop.co.uk$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$1$2$3$4$5$6.jpg [L] RewriteCond %{HTTP_HOST} ^www.mainShop.co.uk$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.jpg [L] RewriteCond %{HTTP_HOST} ^www.mainShop.co.uk$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.jpg [L] RewriteCond %{HTTP_HOST} ^www.mainShop.co.uk$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.jpg [L] RewriteCond %{HTTP_HOST} ^www.mainShop.co.uk$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.jpg [L] RewriteCond %{HTTP_HOST} ^www.mainShop.co.uk$ RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^www.mainShop.co.uk$ RewriteRule ^c/([a-zA-Z_-]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2.jpg [L] # AlphaImageLoader for IE and fancybox RewriteCond %{HTTP_HOST} ^www.mainShop.co.uk$ RewriteRule ^images_ie/?([^/]+)\.(jpe?g|png|gif)$ js/jquery/plugins/fancybox/images/$1.$2 [L] # Dispatcher RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{HTTP_HOST} ^www.mainShop.co.uk$ RewriteRule ^.*$ - [NC,L] RewriteCond %{HTTP_HOST} ^www.mainShop.co.uk$ RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L] RewriteCond %{HTTP_HOST} ^www.secondShop.com$ RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^(.*)faq/?$ /modules/blockfaq/faq.php [QSA,L] RewriteRule ^api/?(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Images RewriteCond %{HTTP_HOST} ^www.secondShop.com$ RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^www.secondShop.com$ RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$1$2$3$4.jpg [L] RewriteCond %{HTTP_HOST} ^www.secondShop.com$ RewriteRule ^([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$1$2$3$4$5.jpg [L] RewriteCond %{HTTP_HOST} ^www.secondShop.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$1$2$3$4$5$6.jpg [L] RewriteCond %{HTTP_HOST} ^www.secondShop.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.jpg [L] RewriteCond %{HTTP_HOST} ^www.secondShop.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.jpg [L] RewriteCond %{HTTP_HOST} ^www.secondShop.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.jpg [L] RewriteCond %{HTTP_HOST} ^www.secondShop.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.jpg [L] RewriteCond %{HTTP_HOST} ^www.secondShop.com$ RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^www.secondShop.com$ RewriteRule ^c/([a-zA-Z_-]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2.jpg [L] # AlphaImageLoader for IE and fancybox RewriteCond %{HTTP_HOST} ^www.secondShop.com$ RewriteRule ^images_ie/?([^/]+)\.(jpe?g|png|gif)$ js/jquery/plugins/fancybox/images/$1.$2 [L] # Dispatcher RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{HTTP_HOST} ^www.secondShop.com$ RewriteRule ^.*$ - [NC,L] RewriteCond %{HTTP_HOST} ^www.secondShop.com$ RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L] RewriteCond %{HTTPS} on RewriteCond %{HTTP_HOST} ^www.thirdShop.com$ RewriteRule (.*) http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^(.*)faq/?$ /modules/blockfaq/faq.php [QSA,L] RewriteRule ^api/?(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Images RewriteCond %{HTTP_HOST} ^www.thirdShop.com$ RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^www.thirdShop.com$ RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$1$2$3$4.jpg [L] RewriteCond %{HTTP_HOST} ^www.thirdShop.com$ RewriteRule ^([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$1$2$3$4$5.jpg [L] RewriteCond %{HTTP_HOST} ^www.thirdShop.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$1$2$3$4$5$6.jpg [L] RewriteCond %{HTTP_HOST} ^www.thirdShop.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.jpg [L] RewriteCond %{HTTP_HOST} ^www.thirdShop.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.jpg [L] RewriteCond %{HTTP_HOST} ^www.thirdShop.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.jpg [L] RewriteCond %{HTTP_HOST} ^www.thirdShop.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.jpg [L] RewriteCond %{HTTP_HOST} ^www.thirdShop.com$ RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^www.thirdShop.com$ RewriteRule ^c/([a-zA-Z_-]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2.jpg [L] # AlphaImageLoader for IE and fancybox RewriteCond %{HTTP_HOST} ^www.thirdShop.com$ RewriteRule ^images_ie/?([^/]+)\.(jpe?g|png|gif)$ js/jquery/plugins/fancybox/images/$1.$2 [L] # Dispatcher RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{HTTP_HOST} ^www.thirdShop.com$ # RewriteCond %{HTTP_HOST} !^www.thirdShop.com$ RewriteRule ^.*$ - [NC,L] RewriteCond %{HTTP_HOST} ^www.thirdShop.com$ RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L] </IfModule> #If rewrite mod isn't enabled ErrorDocument 404 /index.php?controller=404 should someone help me to understant what is wrong? thankyou
  6. Hy have discovered annoying issue on ebay module after domain migration (when changed website dns redirection), before this migration everything was fine: catalogue sync, image parsing on ebay and so on when had to change website dns to another domain, leaving mysql database and ftp directory unchanged have started to get troubles no one product image is shown on ebay marketplace else if on prestashop aren't visible exceptions and as second trouble, when adding new products i'm going to sync on ebay module and nothing happen i supposed that should be misconfiguration on htaccess or wrong cmod on ftp side but activating develop mode (error reporting) as in defines.inc.php as in config.inc.php i can't obtain alert/indication because in back office everything seems unchanged (may there be another system that suppress error reporting?) please, someone could help me? thanx in advance
  7. Salve ho riscontrato un bug nella sessione di registrazione degli utenti: dopo infatti aver concluso la registrazione in alto a destra compare il nome utente di un'altra persona, accade anche dopo diverse prove con diversi nomi e per giunta anche dopo aver eliminato l'utente incriminato... qualcuno ha dei suggerimenti? ringrazio anticipatamente -------------------------------------- PS 1.6.14 su vhosting
  8. multishop domains do needs to be in the same hoster or should be in different host companies? i'm trying to merge 2 shops in one by assign the main store db connection parameters to the child, obtaining errors: SQLSTATE[42000] [1044] Access denied for user any ideas? thanx in advance.
  9. are there explanations about hierarchical relationship between mysql db's shops? any ideas about how the first shop can control the second?
  10. searching about multi store or multi shop have found really poor infos, first of all: when someone need to activate multishop should there be 1 main folder (for the first shop) and i subfolder (for the second shop) both in the same domain/hosting, OR 2 different domain (ex. first-shop.com and second-shop.fr) first question is: right to have a prestashop installation for the first main shop, but is it mandatory to have a whole (blank) second prestashop installation for the second store? a second question will be: both shops/stores had to share the same mysql db? tryed to assign my first (main) mysql db to the second shop editing the config>setting.inc.php file, unfortunately my second shop dont't work (...should there be a way to share products and categories between the shops) repeated the multistore procedure, now without a blank installation for the second shop domain, i'm getting a blank page are there other procedures? like setting up the .htaccess or smthing else?
  11. HI followed every steps from 1 to 4 but in my PS 1.4.8.2, unfortunately it won't work, in b office totally disappear category (& products) list there's a fix hear y soon
  12. Joeri Vos #9 in my theme there was not this code, i added this to my category.tpl and now all subcategories are correctly visible, except that they are placed in a single column, there's a solution to divide in two or three columns? thank you
  13. sempre sperando per un suggerimento per la prima parte 'calcolo' - la seconda è stata risolta http://www.prestashop.com/forums/topic/95974-features-in-category-page-product-list/
  14. nessun'altro ha suggerimenti o link per il post di sopra? [claudiofringe] avrei bisogno di una dritta con la lista dei prodotti, product-list.tpl nei prdotti ho messo delle caratteristiche così come lunghezza, peso ecc. ora queste sono visibili solo all'interno della scheda prodotto, e cercavo di inserirli in anteprima sulla lista prodotti il codice si trova nel file theme>product.tpl 'scheda prodotto' {if isset($features) && $features} <!-- product's features --> <ul id="idTab2" class="bullet"> {foreach from=$features item=feature} {if isset($feature.value)} <li><span>{$feature.name|escape:'htmlall':'UTF-8'}</span> {$feature.value|escape:'htmlall':'UTF-8'}</li> {/if} {/foreach} </ul> {/if} e provo a copiarlo in un dato punto del product-list.tpl devo dire che smarty non si lascia capire al volo... e se qualcuno avesse un idea mi sarebbe d'aiuto grazie
  15. sorry scott, i was searching suggestions, not picky teachers barking whenever small mistake. enjoy you the forum
×
×
  • Create New...