Migrate WordPress Backup tar file from linux hostng server to windows hosting server

I have a full tar archive of my WordPress site taken from a Linux host together with its .sql database dump. Your task is to unpack that backup, restore the files and database on my new Windows-based hosting plan, and make the site live without altering any content or design… (Budget: €8 – €30 EUR, Jobs: Database Management, HTML, IIS, Linux, MySQL, PHP, Plesk, Web Hosting, Windows Server, WordPress)

Read more here:: https://www.freelancer.com/projects/database-management/Migrate-WordPress-Backup-tar-file.html

      

Basic User Database Website

I need a small website whose only purpose is to store, and display phone numbers information. I need it to be able to import contacts from google or from csv. or vcard A simple search box for my workers to search the phone number to see if it is saved inside the database… (Budget: $30 – $250 USD, Jobs: API, Database Management, Frontend Development, HTML, MySQL, PHP, Web Development, Website Design)

Read more here:: https://www.freelancer.com/projects/web-development/Basic-User-Database-Website.html

      

Movie Streaming & Review Website

I’m building a web platform focused exclusively on Movies and TV shows and I want it to feel as effortless as Netflix but as community-driven as IMDb. The core of the job is to create a fully responsive… (Budget: ₹150000 – ₹250000 INR, Jobs: API Development, Django, HTML, JavaScript, Laravel, Node.js, PHP, Web Development)

Read more here:: https://www.freelancer.com/projects/web-development/Movie-Streaming-Review-Website.html

      

WordPress AI Menu Audit Plugin

AI-Powered Menu Audit MVP for Food & Beverage Website Budget: ~$150 USD Deadline: 7 days Project Type: MVP / Fixed Price About the Project I am building a website for the food & beverage industry and need a developer to create a simple AI-powered menu audit tool… (Budget: $30 – $250 USD, Jobs: AI Chatbot, AI Content Creation, API Integration, CSS, Email Marketing, HTML, PHP, WordPress)

Read more here:: https://www.freelancer.com/projects/api-integration/WordPress-Menu-Audit-Plugin.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.