Rapid E-Commerce Site Build

I need a full website development service focused on a complete e-commerce site and I’m looking to launch as soon as possible. Here’s what I expect: • A modern, responsive storefront that works smoothly on desktop and mobile… (Budget: $250 – $750 USD, Jobs: Backend Development, eCommerce, Frontend Development, HTML, Payment Gateway Integration, PHP, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/web-development/Rapid-Commerce-Site-Build.html

      

Next.js Demo Site, Admin & Payments

I need a small-scale, proof-of-concept website built in Next.js that I can share via a public link (please do not deploy on Vercel). Fast page speed is essential: Lighthouse scores in the green range will be part of the acceptance check… (Budget: ₹12500 – ₹37500 INR, Jobs: Frontend Development, HTML, JavaScript, Next.js, Payment Gateway Integration, PHP, SEO, Website Design)

Read more here:: https://www.freelancer.com/projects/nextjs/Next-Demo-Site-Admin-Payments.html

      

Corporate Website Design for Finance Company

We are an IT and communications company based in Sydney. We are looking to launch a financing company that provides finance for equipment. I need a designer / developer who is good with Hubspot. We will then drop the pages into our internal system once received… (Budget: $250 – $750 AUD, Jobs: Content Management System (CMS), Corporate Identity, Graphic Design, HTML, Hubspot, PHP, SEO, Web Design, Website Design, Website Development)

Read more here:: https://www.freelancer.com/projects/web-design/Corporate-Website-Design-for-Finance.html

      

Resolve Shopify Passkey Login Issue -- 2

I’m locked out of my Shopify store because the login screen insists on a passkey that I can’t supply. I’ve already gone through the usual first-line fixes—basic troubleshooting and a ticket with Shopify support—but they couldn’t get me back in… (Budget: $10 – $30 USD, Jobs: API Integration, Data Protection, HTML, PHP, Shopify, Technical Support, Web Security, Website Design)

Read more here:: https://www.freelancer.com/projects/api-integration/Resolve-Shopify-Passkey-Login-Issue-40277680.html

      

High-Traffic Website Optimization & Security Enhancements -- 2

Hi, I am looking for an experienced DevOps / Linux server optimization expert for a LIVE high-traffic production website. Please apply only if you have real experience handling 50,000+ concurrent users, Cloudflare setups, and strong security hardening… (Budget: ₹1500 – ₹12500 INR, Jobs: Apache, Cloudflare, DevOps, Linux, Nginx, Performance Tuning, PHP, Security)

Read more here:: https://www.freelancer.com/projects/devops/High-Traffic-Website-Optimization-40277669.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