Full-Featured Website Development WordPress

I’m putting together a single WordPress build that must comfortably serve three roles at once: a fully-fledged e-commerce storefront, a clean portfolio section, and a regularly updated blog. The backbone… (Budget: ₹1250 – ₹2500 INR, Jobs: CSS, HTML, PHP, SEO, Web Development, WordPress, WordPress Design, WordPress Plugin)

Read more here:: https://www.freelancer.com/projects/web-development/Full-Featured-Website-Development.html

      

Villa Booking Website Development

I need a modern, mobile-friendly website that lets guests book my villa directly online. The site’s main job is to handle reservations end-to-end, so I can stop relying on third-party portals and manage everything in one place… (Budget: ₹1500 – ₹12500 INR, Jobs: Content Management System (CMS), CSS, Graphic Design, HTML, Payment Processing, PHP, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/web-development/Villa-Booking-Website-Development.html

      

WordPress DIVI Global Header/Footer Development -- 2

WordPress DIVI developers only develop our header and footer – global header and footer on DIVI theme builder using DIVI, icons are with divi – it is mandatory to know DIVI 5 – follow the instruction… (Budget: ₹100 – ₹400 INR, Jobs: CSS, HTML, PHP, Web Design, Web Development, WordPress, WordPress Design, WordPress Plugin)

Read more here:: https://www.freelancer.com/projects/php/Wordpress-DIVI-Global-Header-Footer.html

      

Building of Planning Labs Official Website

Hello, We are planning to redesign and redevelop the official website of Planning Labs, an experiential and digital marketing agency based in Mumbai. The objective is to create a premium, modern, visually… (Budget: ₹1500 – ₹12500 INR, Jobs: Content Management System (CMS), Digital Marketing, HTML, PHP, SEO, Web Design, Web Development, Website Design, Website Optimization)

Read more here:: https://www.freelancer.com/projects/web-design/Building-Planning-Labs-Official-Website.html

      

Minimalist Digital History Website Build

I’m commissioning a professional, mobile-first website to showcase an ongoing digital history project and a compact online exhibition. The visual direction is firmly minimalistic and clean—plenty of white… (Budget: €250 – €750 EUR, Jobs: CMS, CSS, HTML, JavaScript, PHP, Web Design, Web Development, Webflow, Website Design, WordPress)

Read more here:: https://www.freelancer.com/projects/web-design/Minimalist-Digital-History-Website-Build.html

      

Website Bug Fix & Optimization

Several pages on my site are throwing inconsistent errors, and a few interactive elements have stopped responding as intended. I am experiencing a mix of visual glitches, slow load times, and the occasional 500-level server response… (Budget: $30 – $250 USD, Jobs: Backend Development, CSS, Frontend Development, HTML, JavaScript, MySQL, PHP, Web Development)

Read more here:: https://www.freelancer.com/projects/web-development/Website-Bug-Fix-Optimization.html

      

Get Grade-A GTmetrix Shopify

My Shopify homepage must reach a solid Grade A on both mobile and desktop when tested on GTmetrix. Right now the site lags behind because of slow loading times and some unrefined JavaScript and Liquid snippets… (Budget: €8 – €30 EUR, Jobs: CSS, Frontend Development, GTmetrix, HTML, JavaScript, PHP, SEO, Shopify, Web Development, Website Optimization)

Read more here:: https://www.freelancer.com/projects/shopify-site/Get-Grade-GTmetrix-Shopify.html

      

Instalando Laravel Framework

laravelLaravel utiliza o composer para gerenciar suas dependências. Então, antes de usar o Laravel, você precisa ter o composer instalado em sua máquina. Caso não tenha veja como fazer a instalação neste post anterior: Instalando Composer

 

1. Baixe o instalador do laravel via composer

php composer.phar global require "laravel/installer=~1.1"

 

2. Criar projeto

php composer.phar create-project laravel/laravel phpConference 4.2 --prefer-dist

 

3. Configurar ambiente laravel

Nesses arquivos você poderá configurar a URL para os diferentes ambientes como também o local, timezone, chave para criptografia, entre outros.

Produção:

phpConference/app/config/app.php

Local:

phpConference/app/config/local/app.php

 

4. Permitir escrita ao servidor web para o seguinte diretório:

phpConference/app/storage

 

Requisitos:

PHP >= 5.4
Extensão PHP MCrypt
Modulo apache mod_rewrite

Referência: http://laravel.com/docs/4.2

Instalando Composer

composer
Composer: ferramenta para gerenciamento de dependências em PHP. Ele permite que você declare as bibliotecas dependentes que seu projeto precisa e vai instalá-los.

Pré-Requisito: versão minima do PHP 5.3.2.

Para instalar a última versão do composer digite a seguinte linha no terminal do Linux/Unix/OSX.

Instalação via cURL:

curl -sS https://getcomposer.org/installer | php

Ou instalação via PHP:

php -r "readfile('https://getcomposer.org/installer');" | php

 

Referencia: https://getcomposer.org/doc/00-intro.md

Instalando PHPUnit no Windows com XAMPP

Partindo do principio de que o XAMPP já está instalado e configurado abra o painel de controle do XAMPP (XAMPP Control Panel) e clique no botão Shell.

Painel de controle do XAMPP
Painel de controle do XAMPP

 

 

 

 

 

 

 

 

 

Quando abrir o terminal/prompt de comando digite os seguintes comandos:

pear config-set auto_discover 1
pear install pear.phpunit.de/PHPUnit
pear install phpunit/PHPUnit_SkeletonGenerator

Pronto ao final destes três comandos deverá retornar a mensagem: install ok

Para verificar se o PHPUnit está executando e qual a versão digite o comando abaixo:

phpunit --version

 

Agora você já pode começar a escrever seus testes.