Jump to content
thirty bees forum

AndyC

Members
  • Posts

    1,149
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by AndyC

  1. AndyC

    Post Missing

    I only know CSV .. Anyway I found a csv upload module and I think I have found my issue in it .. I only put the Category , I see from a new install it reads Home,category .. Hopefully I'll be OK now as my database is now doing backups so will have something to restore if all goes pear shaped again as I have months and months of work ahead of me and a csv will help a lot
  2. AndyC

    Post Missing

    I've tried , but there is no way to get a proper csv out .. It always puts everything into 1 tab like this id;"Name";"Description";"Position";"Displayed"; Yes I know it's my fault for not making a backup .. I may just drop the whole database and start again
  3. AndyC

    Post Missing

    Thank you.. I realised after that I deleted everything ... I put a root category back but it still doesn't let me in ... Is it because the products are not looking at root ..If yres how can I go about fixing please
  4. AndyC

    Post Missing

    Hi I made a post on Sunday evening about my product page being messed up and I posted the error messages. I can't seem to find it now. I don't want to have to start from scratch again , if someone could please help I tried to upload a product CSV then got all these error back .. I tried my back ups but they don't work as it has the wrong file type Root category must be an integer value at line 350 in file classes/helper/HelperTreeCategories.php 345. * @version 1.0.0 Initial version 346. */ 347. public function setRootCategory($value) 348. { 349. if (!Validate::isInt($value)) { 350. throw new PrestaShopException('Root category must be an integer value'); 351. } 352. 353. $this->_root_category = $value; 354. 355. return $this; HelperTreeCategoriesCore->setRootCategory - [line 3258 - controllers/admin/AdminProductsController.php] - [1 Arguments] 3253. // Generate category selection tree 3254. $tree = new HelperTreeCategories('categories-tree', $this->l('Filter by category')); 3255. $tree->setAttribute('is_category_filter', (bool) $this->id_current_category) 3256. ->setAttribute('base_url', preg_replace('#&id_category=[0-9]*#', '', static::$currentIndex).'&token='.$this->token) 3257. ->setInputName('id-category') 3258. ->setRootCategory(Category::getRootCategory()->id) 3259. ->setSelectedCategories([(int) $idCategory]); 3260. $this->tpl_list_vars['category_tree'] = $tree->render(); 3261. 3262. // used to build the new url when changing category 3263. $this->tpl_list_vars['base_url'] = preg_replace('#&id_category=[0-9]*#', '', static::$currentIndex).'&token='.$this->token; AdminProductsControllerCore->initContent - [line 262 - classes/controller/Controller.php] 257. if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className))) { 258. $this->initHeader(); 259. } 260. 261. if ($this->viewAccess()) { 262. $this->initContent(); 263. } else { 264. $this->errors[] = Tools::displayError('Access denied.'); 265. } 266. 267. if (!$this->content_only && ($this->display_footer || (isset($this->className) && $this->className))) { ControllerCore->run - [line 837 - classes/Dispatcher.php] 832. if (isset($paramsHookActionDispatcher)) { 833. Hook::exec('actionDispatcher', $paramsHookActionDispatcher); 834. } 835. 836. // Running controller 837. $controller->run(); 838. } catch (PrestaShopException $e) { 839. $e->displayMessage(); 840. } 841. } 842. DispatcherCore->dispatch - [line 63 - admin/index.php] 58. if (!isset($_REQUEST['controller']) && isset($_REQUEST['tab'])) { 59. $_REQUEST['controller'] = strtolower($_REQUEST['tab']); 60. } 61. 62. // Prepare and trigger admin dispatcher 63. Dispatcher::getInstance()->dispatch();
  5. AndyC

    CSV Upload

    Hi All I've started work on my new website and thought I would give uploading a few products a test drive. Anyway I made sure each 1 corresponded to the drop down and ended up with a 500.. I turned on debug and got a load of errors.. I do have a backup but it was from 7 hours ago now so hoping I can find out what I did wrong. Or is it easier to just restore as it was working before I did this Root category must be an integer value at line 350 in file classes/helper/HelperTreeCategories.php 345. * @version 1.0.0 Initial version 346. */ 347. public function setRootCategory($value) 348. { 349. if (!Validate::isInt($value)) { 350. throw new PrestaShopException('Root category must be an integer value'); 351. } 352. 353. $this->_root_category = $value; 354. 355. return $this; HelperTreeCategoriesCore->setRootCategory - [line 3258 - controllers/admin/AdminProductsController.php] - [1 Arguments] 3253. // Generate category selection tree 3254. $tree = new HelperTreeCategories('categories-tree', $this->l('Filter by category')); 3255. $tree->setAttribute('is_category_filter', (bool) $this->id_current_category) 3256. ->setAttribute('base_url', preg_replace('#&id_category=[0-9]*#', '', static::$currentIndex).'&token='.$this->token) 3257. ->setInputName('id-category') 3258. ->setRootCategory(Category::getRootCategory()->id) 3259. ->setSelectedCategories([(int) $idCategory]); 3260. $this->tpl_list_vars['category_tree'] = $tree->render(); 3261. 3262. // used to build the new url when changing category 3263. $this->tpl_list_vars['base_url'] = preg_replace('#&id_category=[0-9]*#', '', static::$currentIndex).'&token='.$this->token; AdminProductsControllerCore->initContent - [line 262 - classes/controller/Controller.php] 257. if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className))) { 258. $this->initHeader(); 259. } 260. 261. if ($this->viewAccess()) { 262. $this->initContent(); 263. } else { 264. $this->errors[] = Tools::displayError('Access denied.'); 265. } 266. 267. if (!$this->content_only && ($this->display_footer || (isset($this->className) && $this->className))) { ControllerCore->run - [line 837 - classes/Dispatcher.php] 832. if (isset($paramsHookActionDispatcher)) { 833. Hook::exec('actionDispatcher', $paramsHookActionDispatcher); 834. } 835. 836. // Running controller 837. $controller->run(); 838. } catch (PrestaShopException $e) { 839. $e->displayMessage(); 840. } 841. } 842. DispatcherCore->dispatch - [line 63 - admin/index.php] 58. if (!isset($_REQUEST['controller']) && isset($_REQUEST['tab'])) { 59. $_REQUEST['controller'] = strtolower($_REQUEST['tab']); 60. } 61. 62. // Prepare and trigger admin dispatcher 63. Dispatcher::getInstance()->dispatch();
  6. Hi Is there anyway/possible to remove the State drop-down list and make it so the customer has to type it in manually as often people are not bothered to find their State and use none available option and have lost orders over it in the past because their State (or in my case County) is not listed... I only ask as I find it much easier to have to type it out when I have bought things from other websites TIA
  7. AndyC

    Text Attribute

    Might have found another now https://addons.prestashop.com/en/combinaisons-customization/30960-additional-product-attributes-custom-product-fields.html
  8. AndyC

    Text Attribute

    Hi Sorry I am so confused now , does this module create prices too for text or will I still need another to create prices
  9. AndyC

    Text Attribute

    Doesn't really make it clear anywhere about adding a price to text area..Would have loved there to be a admin side so I can see it in action If it does do as you so this 1 will be fine ...Thanks
  10. AndyC

    Text Attribute

    Thanks for your time in looking , although it looks nicer it seems like you can't charge a fee for adding text
  11. AndyC

    Text Attribute

    That 1 looks OK , just a bit pricey though ...Have asked if it is compatible with TB
  12. AndyC

    Text Attribute

    It needs to be priced and the cheapest I can see $250 .. Do you know of any more please
  13. If you know Zencart at all ,TB is very very easy..Adding modules is a simple ftp into 1 folder .Upgrades are a little different and harder but still easy to do ( I had to hire someone to do all this for me ) Only gripe I have is and have only just found out there is no text attribute option .But as above install it and play around ,just make a backup and if you make a major error just restore it
  14. AndyC

    Text Attribute

    Hi thanks Have had a look but they both don't seem to be able to add a price so they no good, as not every one wants engraving as they are all added extras
  15. AndyC

    Text Attribute

    Sorry for the late reply Thing this I need to charge for the engraving and the text could be absolutely anything from numbers to letters to shapes. I could be in rows or 1 single line and could be from 1 word to 30 words if on a plate or something I also have to have a style list For Example Times , English script etc .... Then 5 radio buttons of different types of thing and a free box for any extras information Here's what mine looks like at the moment on Zencart I've come to far to have to go in search of another cart and I really really like TB now Such a pity you can add a price in the Add or modify customizable properties tab as that would be fine ---- I think
  16. AndyC

    Text Attribute

    Hi How can I go about adding a text attribute ,all I have is drop down, radio or colour On 95% of my products I offer engraving and you obviously have to let people add their quotes or what ever they want engraved , this is also an added extra cost. Is there any way this can be done without having to spend a fortune, I didn't even think about this until now Thanks
  17. AndyC

    Data Base Error

    I see , will try this weekend then
  18. AndyC

    Data Base Error

    There is but it hasn't got TB listed , it was the first thing I looked for
  19. AndyC

    Data Base Error

    I understand what you are saying just not sure how to go about it with my database.. I may ask my hosting if they can check this for me
  20. AndyC

    Data Base Error

    Figured out how to edit images
  21. HI I am trying to start building my new website on my live website using a sub domain. All was going very well until I tried to connect to the database. The first time it happened I assumed I had the wrong info so started again ( I've done it 4 times now) and I always get the same error message Database Server is not found. Please verify the login, password and server fields (DbPDO) I gotten to the point of using copy and paste but still get this error.. I also tried on another domain I own that is no tin use and it worked first time so I know I am doing everything right .. Has anyone any ideas as I need to start working on new website as it's going to take months to get right
  22. Sadly my website have hit rock bottom and don't really have the money to buy a template and new checkout as they are quite costly .. i 've just seen I installed the older version .. I'll try and reinstall the latest version soon and see how that goes
  23. Yeah I tried upgrading by just installing new files and completely un-installing and reinstalling module, still did it and the insecure image returned on https as well so had to do yet another restore from backup. Thing is if I don't touch it it works fine but as soon as I try and change anything it turns off ..Very frustrating
  24. Is anyone having issues with their checkout .. As on my main site I have it installed and is working fine, but every time I try and change something it seems to disable everything and then the cart ends upbeing squashed up to the left. The only way I can restore it is to do a complete site restore from a backup. I have just done a clean install of the latest version of TB installed the checkout tried to do some changes a few days later and the exact same thing has just happened. As far as I know it worked fine in the 1.07 version as that is where I started off on... I am over the 3 months period so would have to pay to get the work done
  25. Hi I have been looking though my google webmaster site for issues and I have had a certain issue since last year Under Coverage tab I have a error Submitted URL seems to be a Soft 404. Which tuns out to be the search https://www.mywebsite.co.uk/search Just wondering if there was anything I could do to fix this link ...If you need website would be happy to PM
×
×
  • Create New...