Checking For The GD Library
Checking For The GD Library
Checking For The GD Library
The GD library enables PrestaShop to rework images that you upload, especially resizing
them.
On a default installation of PHP, the GD Library should be turned on, but if that's not the
case for your install, the standard Windows instructions are:
1.
In the root directory of your PHP folder, open the php.ini file.
2.
3.
about
e-commerce software knows that the default folder name for such functions is
often admin.
So we will now name it something more secret and personal.
der
http://www.smaizys.com/prestashop/how-to-create-prestashop-module/
http://www.smaizys.com/prestashop/how-to-create-custom-prestashop-hook/
http://www.1stwebdesigner.com/tutorials/beginners-guide-prestashop/
http://blogs.callosmart.com/2011/02/03/creating-a-prestashop-1-4-themefrom-scratch/
http://www.opensourcevarsity.com/prestashopbasics/prestashopinstall
Debugger em PHPEd
http://www.nusphere.com/products/php_debugger.htm
http://www.nusphere.com/flash_files/dbg-good_smaller.html
Prestashop Tutorial Creating THEME Para efetuar templating (Theme)
recomenda-se ler
http://www.smarty.net/sampleapp1<<-- otimo exemplo FAZER
http://www.smarty.net/docs/en/
http://www.blueprintcss.org/ << - usado em um dos artigos
http://blogs.callosmart.com/2011/02/03/creating-a-prestashop-1-4-themefrom-scratch-part-1-environment-setup/comment-page-0/#comment-218
Ferramentas interessantes
https://kuler.adobe.com/create/color-wheel/
http://www.colorcombos.com/orange-color-schemes.html
http://www.gimp.org/
MVC e FrontController
http://avedo.net/733/understanding-and-implementing-the-frontcontrollerpattern-using-php/
{* Smarty *}
Ola! {$name}, bem vindo ao Smarty!
<?php
// load Smarty library
require_once(SMARTY_DIR . 'Smarty.class.php');
$smarty = new Smarty();
$smarty->template_dir = '/web/www.example.com/smarty/guestbook/templates/';
$smarty->compile_dir = '/web/www.example.com/smarty/guestbook/templates_c/';
$smarty->config_dir = '/web/www.example.com/smarty/guestbook/configs/';
$smarty->cache_dir = '/web/www.example.com/smarty/guestbook/cache/';
$smarty->assign('name','Ned'); /* Name a tag definida no arquivo TPL
$smarty->display('index.tpl');
?>