Healthcare B2B Lead-Gen Site

Project Overview We are looking for an experienced WordPress Elementor Developer to build a premium B2B website for our healthcare division. This is primarily a development project, not a branding or strategy project… (Budget: €1500 – €3000 EUR, Jobs: B2B Marketing, CSS, Graphic Design, HTML, PHP, Web Development, Website Design, Website Optimization)

Read more here:: https://www.freelancer.com/projects/css/Healthcare-Lead-Gen-Site.html

      

Custom CRM with AI Integration

Looking for customize CRM we have one email id price, supplier name, supplier email id, which brand, date of email – it will grab all old emails – database link with AI email id for rfq- any email coming… (Budget: ₹37500 – ₹75000 INR, Jobs: AI Chatbot, AI Development, CRM, Database Management, Email Marketing, MySQL, PHP, Software Architecture)

Read more here:: https://www.freelancer.com/projects/email-marketing/Custom-CRM-with-Integration.html

      

E-commerce Site Enhancement & Optimization

Freelance Project: E-commerce Website Improvements & Optimization I am looking for an experienced WordPress/WooCommerce developer to complete the following improvements on my e-commerce website. Project… (Budget: $250 – $750 USD, Jobs: Chatbot, Customer Experience, Documentation, eCommerce, PHP, Product Management, Website Design, Website Optimization, WooCommerce, WordPress)

Read more here:: https://www.freelancer.com/projects/woocommerce/commerce-Site-Enhancement-Optimization.html

      

Custom GPT-Style AI Assistant

I’m building a bilingual (Hindi + English) conversational AI, accessible both as a responsive website and a native Android app. The core is a text-based chat interface that must feel as fluid as ChatGPT while specialising in handling customer-support queries… (Budget: ₹12500 – ₹37500 INR, Jobs: AI Chatbot Development, AI Development, Android, Android App Development, Graphic Design, Mobile App Development, PHP, Web Development)

Read more here:: https://www.freelancer.com/projects/ai-chatbot-development/Custom-GPT-Style-Assistant.html

      

Advanced Google Sheet Automation

I’m ready to transform a plain Google Sheet into a fully-fledged, automated workspace. The file should look clean and intuitive while running behind-the-scenes scripts that remove repetitive chores and speed up everyday tasks… (Budget: $15 – $25 USD, Jobs: Automation, Data Entry, Google Chrome, Google Sheets, PHP)

Read more here:: https://www.freelancer.com/projects/automation/Advanced-Google-Sheet-Automation-40555866.html

      

Website Data Extraction via Postman

I need a Postman-only workflow that pulls user information from a site whose traffic I have confirmed runs on a REST API. The job breaks down into two parts: • Reproduce the calls I already know about, then trace and document any additional endpoints we still need… (Budget: $10 – $30 USD, Jobs: API, API Development, Data Extraction, JavaScript, JSON, PHP, REST API, Software Architecture)

Read more here:: https://www.freelancer.com/projects/api/Website-Data-Extraction-via-Postman.html

      

Wix School Website Development

I need a freelancer to enhance our school website on Wix. There’s an existing outline, but it needs to be fleshed out and polished. The website’s primary purpose is to showcase school events and achievements… (Budget: ₹1500 – ₹12500 INR, Jobs: Graphic Design, HTML, PHP, Web Design, Web Development, Website Design, Website Optimization, Wix)

Read more here:: https://www.freelancer.com/projects/wix/Wix-School-Website-Development.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