Smartbill API Integration with Shopify for Invoicing

Salut. Am nevoie de cineva care sa integreze API-ul celor de la SmartBill într-un magazin online Shopify: – Emitere facturi – Storno facturi; – Reemitere facturi – Informațiile din factură să fie pe câmpurile… (Budget: €30 – €250 EUR, Jobs: API, API Integration, eCommerce, Graphic Design, HTML, Invoicing, PHP, Shopify, Shopify Development, Website Design)

Read more here:: https://www.freelancer.com/projects/html/Smartbill-API-Integration-with-Wix.html

      

GoHighLevel Automation & Funnel designer

I want a complete lead-generation machine built inside GoHighLevel. Starting with a clean multi-step funnel, I need each page, form, and CTA mapped to an automated workflow that captures visitors, tags them properly, and nurtures them until they book a call… (Budget: $2 – $8 USD, Jobs: API Integration, Automation, CRM, Full Stack Development, HTML, n8n, PHP, Social Media Marketing, Virtual Assistant, Zapier)

Read more here:: https://www.freelancer.com/projects/api-integration/GoHighLevel-Automation-Funnel-designer.html

      

Yad2 Rental Landlord Scraper

I need a repeatable script that will crawl Yad2’s rental section and return a clean, deduplicated list of every private landlord currently advertising Apartments, Houses or Commercial properties. For each… (Budget: $250 – $750 USD, Jobs: Automation, Data Extraction, Data Processing, PHP, Python, Selenium, Software Architecture, Web Scraping)

Read more here:: https://www.freelancer.com/projects/selenium/Yad-Rental-Landlord-Scraper.html

      

Responsive Bilingual car Website

I already have the full layout ready in Canva and now need it converted into a live, pixel-perfect site that handles both desktop and mobile screens seamlessly. The goal is a business-focused test drive-booking… (Budget: $30 – $250 USD, Jobs: CSS, Graphic Design, HTML, JavaScript, MySQL, PHP, UX / User Experience, Web Design, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/web-development/Responsive-Bilingual-car-Website.html

      

Stock-Tracking Web App Development

Job Description I’m looking for a developer to build a simple, fast stock-tracking web app for a plumbing & heating business. The system will allow plumbers to: scan a QR code on a storage box enter a… (Budget: £20 – £250 GBP, Jobs: API Integration, HTML, JavaScript, MySQL, PHP, User Interface / IA, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/web-development/Stock-Tracking-Web-App-Development.html

      

WooCommerce Text & Mobile Fixes

The site at https://recmack.asifali.store/ is live on a staging server and needs a round of quick but polished bug-fixing. My priorities are: • Correct every instance of incorrect wording on the Homepage, Product pages, and the Checkout page… (Budget: $30 – $250 USD, Jobs: CSS, HTML, JavaScript, PHP, Web Development, Website Optimization, WooCommerce, WordPress)

Read more here:: https://www.freelancer.com/projects/woocommerce/WooCommerce-Text-Mobile-Fixes.html

      

WHMCS Domain Checker Error & Request to Improve Domain Search Page

I am using the Prosper theme from Zomex, and I’ve encountered an issue with the domain checker on our WHMCS site. When I try to check a domain’s status (registered or available) using this URL: https://junubia.net/domainchecker.php… (Budget: $10 – $30 USD, Jobs: CSS, HTML, JavaScript, PHP, Web Development, Web Hosting, Website Design, WHMCS)

Read more here:: https://www.freelancer.com/projects/web-development/WHMCS-Domain-Checker-Error-Request.html

      

Flutter Developer Needed – Dating App Bug Fix (Push Notifications)

Project: Flutter Dating App – Bug Fix (Push Notifications) Type: Maintenance / bug fixing (app already exists) Platform: iOS + Android (Flutter) What I need I have an existing Flutter dating app and… (Budget: $30 – $250 USD, Jobs: Android, App Development, Flutter, Git, GitHub, iOS Development, iPhone, Mobile App Development, PHP, Push Notification)

Read more here:: https://www.freelancer.com/projects/flutter/Flutter-Developer-Needed-Dating-App.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