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

      

All in One AI Commerce

I want an integrated, cloud-based system that takes a product from manufacturing plans all the way to the moment it reaches the customer, then loops the resulting data straight back into smarter decisions… (Budget: ₹12500 – ₹37500 INR, Jobs: AI Chatbot, AI Development, API, Cloud Computing, eCommerce, HTML, MySQL, PHP)

Read more here:: https://www.freelancer.com/projects/api/All-One-Commerce.html

      

*Technical SEO Expert (Laravel Experience Required)

**Technical SEO Expert (Laravel Experience Required)** We are looking for a **Technical SEO Expert** who also has **strong Laravel development experience**. **Requirements:** * Proven expertise in **Technical… (Budget: $15 – $25 USD, Jobs: Backend Development, Laravel, MySQL, PHP, SEO, SEO Auditing, Web Design, Web Development, Website Analytics, Website Optimization)

Read more here:: https://www.freelancer.com/projects/laravel/Technical-SEO-Expert-Laravel-Experience.html

      

IBM DOORS Classic 9.7 and DXL Scripting Expert

I need a DXL scripting expert for data migration tasks in IBM DOORS Classic. Ideal Skills and Experience: – Proficiency in DXL scripting – Experience with IBM DOORS Classic data modelling – Data extraction… (Budget: ₹1250 – ₹2500 INR, Jobs: Data Extraction, Data Management, Data Processing, JSON, MySQL, PHP, Software Architecture, XML)

Read more here:: https://www.freelancer.com/projects/data-extraction/IBM-DOORS-DXL-Scripting-Expert.html

      

Multiplayer Online Gaming Platform Build

I already have the source code for three simple games and now need to turn them into a cohesive, gaming-focused website. The work starts by refactoring each game so it can run smoothly in a browser, then wiring them together through a common lobby that handles matchmaking and real-time multiplayer… (Budget: $3000 – $5000 AUD, Jobs: Android, C# Programming, Frontend Development, Game Design, Game Development, Game Programming, Mobile App Development, PHP, Web Application, Web Development)

Read more here:: https://www.freelancer.com/projects/android/Multiplayer-Online-Gaming-Platform-Build.html

      

Laravel & jQuery Custom Business Platform

I’m kicking off a custom business-focused web platform and need a dependable full-stack developer who is equally comfortable in Laravel, Vanilla JS, and jQuery. The core stack is fixed—Laravel for all… (Budget: $750 – $1500 USD, Jobs: AJAX, Full Stack Development, JavaScript, jQuery, Laravel, MySQL, PHP, Software Architecture)

Read more here:: https://www.freelancer.com/projects/laravel/Laravel-jQuery-Custom-Business-Platform.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