Jump to content

Prestashop 1.5 Beta 2 Available


Recommended Posts

Hi,

 

indeed, there was a lack of some features around the theme but it's now fixed.

 

in Preferences > Themes : you can add/remove a theme, and you can create a theme based on an existing one.

 

in Modules > themeinstallator : you can import / export a theme. (will be present in the next beta release).

 

One feature I m still working on is the "imageType configuration" which is sometimes not regenerated during importation

Link to comment
Share on other sites

I would be happy to see a merge between jbx_menu module and blocktopmenu. jbx_menu offers much more oppurtunities, like pictures for menu entries, you can easily change the colors trough the configuration dialoug, which is currently not working in prestashop 1.5, becouse of /classes/AdminTab.php. Could you please help me to fix that problem, or merge it with blocktopmenu, which it is based on. Thanks.

Link to comment
Share on other sites

In Prestashop 1.5.0.3

Selecting the import section (What kind of Entity would you like to import ?) for instance selecting products does not effecting the 'Available fields' field.

And also, selecting categories,suppliers,etc. most of them, does not effect the field.

 

post-101194-0-90455700-1326147715_thumb.png

Link to comment
Share on other sites

 

No i haven't :-O

 

I am having this problem too, on a clean installation on a hosting. The install is at www.mydomain.com/presta5/ and the frontoffice does not work, it redirects to www.mydomain.comindex.php - very weird. I generated the .htaccess from the backend but nothing changes... still the same problem. It did not happen on the alpha version, just on the beta version.

 

Any idea? Thans in advance.

Link to comment
Share on other sites

Hi, I'm runnig tests on v1.5.03.

 

I feel the performance is very slow, both back and front office. Maybe it's my webhosting... but I don't think. I was testing v1.4 on same server before.

 

I will move to dedicated server very shortly. What is the best hardware configuration and settings for archive best performance ? I will run a serious shop many orders, custommers and products. Also I will use many languages and currencies.

Link to comment
Share on other sites

<p>

</p>

<p>Hi everyone,</p>

<p> </p>

<p>PrestaShop 1.5 beta 2 has just been released.</p>

<p>

</p>

<p> </p>

<p>Make Attributes and Groups,<br />

Features a destination "POSITION" and issue (sorted) according to the "POSITION".</p>

<div> </div>

 

Link to comment
Share on other sites

The beta didn't work quite well for me either, it stopped at the last step under installation: installing extra modules. The first time, I could access the admin, but when trying to do a reinstallation, it wouldn't work at all. The SVN version however works fine.

Link to comment
Share on other sites

I'm having problems signing up in teh bugtracker. The sign up page just reloads after I write the letters below... strange,. Any one else have similar problem ?

 

Hi Paul, strange issue. What browser do you use?

 

 

The beta didn't work quite well for me either, it stopped at the last step under installation: installing extra modules. The first time, I could access the admin, but when trying to do a reinstallation, it wouldn't work at all. The SVN version however works fine.

 

 

Any error displayed when it stopped installing? When you tried to do a reinstallation, what happened?

Link to comment
Share on other sites

My first impressions from PS 1.5.0.3 are not good at all

 

1) No "Tabs" were installed from my Module, although in the database all seems ok after installation (there are records for that at ps_tab and ps_tab_lang)

 

2) There's no Front Store - just an empty page.

 

3) The installation process took about 100 times more than 1.4

 

4) The BackOffice is extremely slow.

 

Note: I've installed in on my local server.

PS: After I clicked "install" on the first of mine modules, I got an empty page with the text "Module installed successfully".

Link to comment
Share on other sites

Hello,

"3) The installation process took about 100 times more than 1.4"

-> it is normal, the installer no longer use a simple SQL file to create your use, now he use PrestaShop classes to create entities. You can use MyISAM instead of InnoDB if you have a slow computer (install process take 8s on mine).

 

"4) The BackOffice is extremely slow."

-> the first time only, because now we use Smarty in the BO, and the first time you browse a page Smarty will create some internal cache forever.

 

Regards

Link to comment
Share on other sites

 

2) There's no Front Store - just an empty page.

 

 

Note: I've installed in on my local server.

PS: After I clicked "install" on the first of mine modules, I got an empty page with the text "Module installed successfully".

 

 

I have a similar problem as well. Module installation results in a blank page with the message quoted above.

Link to comment
Share on other sites

Any error displayed when it stopped installing? When you tried to do a reinstallation, what happened?

 

Nope, it just went stall. No messages.

 

PS: How does one get email notifications turned on in this forum, I click on follow this topic, but there's no notification of replies coming...

 

Hmm... I found a new button on the top, I clicked on that one. Maybe it will help

Link to comment
Share on other sites

I saw the problem with the missing Tabs.

 

It seems that in 1.5 the developers have added one additional field to the "tabs" table: active.

So by default all the tabs that are being added from modules in the old (< 1.5) way are NOT active by default.

No backward compatibility. :(

 

Now all the module developers will need to do a version check and to add $tabs->active = 1 if the version is 1.5+.

Link to comment
Share on other sites

Hello ultraWebDev,

this is curious because the active field has a default value set to 1 in database, and set to true in the TabCore object. Can you give me an example of an addons module with this kind of bug ?

 

Regards

 

It's one of the commercial addons that I've developed.

 

Here's my fixed method for adding a tab:

 

/**
 * Installs an Admin Tab
 *
 * @param  $name
 * @param  $class
 * @param  $parent
 * @return bool
 */
protected function installTab($name, $class, $parent = null)
{
	if ($parent === NULL)
		$parentId = 0;
	else
		if (!$parentId = Tab::getIdFromClassName($parent))
			return false;

	@copy(_PS_MODULE_DIR_.$this->name."/img/".$class.".gif", _PS_IMG_DIR_."t/".$class.".gif");
	$tab = new Tab();
	$tab->name = $name;
	$tab->class_name = $class;
	$tab->module = $this->name;
	$tab->id_parent = $parentId;
	if(version_compare(_PS_VERSION_, '1.5.0.0') >= 0)
		$tab->active = 1;
	if (!$tab->save())
		return false;

	return true;
}

 

Without the following code after the module is installed "active" is set to 0 (PrestaShop 1.5.0.3):

 if(version_compare(_PS_VERSION_, '1.5.0.0') >= 0)
  $tab->active = 1;

 

If you take a look at the PrestaShop codebase, you'll see that the field "active" is being cast to Integer, so if you do not add such field, it's NULL, which is cast to 0 and saved that way:

 

ObjectModel.php

  case self::TYPE_BOOL :
   return (int)$value;

Edited by UltraWebDev (see edit history)
Link to comment
Share on other sites

Hi guys,

Is your installation have complete img files? In mine some of images are missing:

For example such as from backend: country flags from

img/l

and

/img/t/AdminImages.gif

looks like some more are not there as well.

Just downloaded installation few minutes ago from above link.

Link to comment
Share on other sites

very cool, the way by prestashop to future is cool, but this momment OpenCart is best.

features is important? yes, but...

 

features < > relation: IE vs Chrome? IE wins. But Chrome is popularity. Why? :)

 

features < > relation: Prestashop vs OpenCart? Prestashop Wins. But OpenCart is more popularity. Why? :)

 

Good work for team prestashop.

 

sorry my english.

 

regards.

Link to comment
Share on other sites

Hello Blanco,

do you have Firefox + Firebug ? If so, can you open Firebug during installation, go on "console" tab and give me the answer of the last ajax query ?

 

Regards

I managed to install by changing the default upload max filesize (default from wamp was 2M, now is 100).

 

Now i have another problem. After install, i get this error from attach.

I get the error after i set to display errors from config/

post-138339-0-40178500-1326958160_thumb.png

Link to comment
Share on other sites

very cool, the way by prestashop to future is cool, but this momment OpenCart is best.

features is important? yes, but...

features < > relation: IE vs Chrome? IE wins. But Chrome is popularity. Why? :)

features < > relation: Prestashop vs OpenCart? Prestashop Wins. But OpenCart is more popularity. Why? :)

 

I agree, good work for team prestashop!

 

OC is quite old and completely free, maybe that's why it have many users. PS is really more professional solution, great many good modules and easy of use. In reality it will not be completely free but I rather use my time to make money and get more customers than try to get all for free and loose time.

Link to comment
Share on other sites

OpenCart, Magento, PrestaShop, you are free to choose the one you want, just test them all and take the best for your project ;)

 

@Dimaer : can you test a new installation with the last SVN version and tell me if everything is now fine with images ?

 

@Blanco : thank you for screenshot, can you tell me with which type of server you work ? Wampserver ? LAMP ? EasyPHP ? IIS ?

Can you give me too the URL of your PrestaShop ? I don't need the domain, just the path. For example if your PrestaShop is in http://localhost/prestashop/ just give me /prestashop/ (with / or with \ if you have backslashes).

 

Regards

Link to comment
Share on other sites

Version 1.5.0.3

Installing went well nice instructions but when you click on the backoffice link it tells you to remove the install-new folder and rename the admin folder.

When you do that of course then you cant reload the admin folder as you have to rename it in your browser.

Not a big problem but some people would be lost with this but if you let them know it the instructions before hand then it would fix it.

 

In Transplant a module I have three "My account block"

 

Favorite Products:

How do you add a product to your favorites

 

Looking good

Link to comment
Share on other sites

Hi There,

 

I went to install the 1.5 however on both the backoffice and the front office I am receiving the following:

 

Fatal error: Class 'Smarty_Internal_Compile_if' not found in /home/www/REDACTED.com/tools/smarty/sysplugins/smarty_internal_templatecompilerbase.php on line 433

 

UPDATE:

This was solved by going to my domain as domain.com instead of www.domain.com

 

Not sure how I can solve this to allow both www and without..

 

UPDATE: This was solved through the "Shops Url" in the administration page.

Edited by snowneo (see edit history)
Link to comment
Share on other sites

Hi There, I went to install the 1.5 however on both the backoffice and the front office I am receiving the following: Fatal error: Class 'Smarty_Internal_Compile_if' not found in /home/www/REDACTED.com/tools/smarty/sysplugins/smarty_internal_templatecompilerbase.php on line 433 UPDATE: This was solved by going to my domain as domain.com instead of www.domain.com Not sure how I can solve this to allow both www and without.. UPDATE: This was solved through the "Shops Url" in the administration page.

 

Can you be specific, where in Administration page i should do this change.

Link to comment
Share on other sites

×
×
  • Create New...