For install phpstorm, use this method
sudo pacman -S phpstorm
If you want try phpstorm (15 days)
sudo pacman -S phpstorm-eap
For Sublime Text Stable Version (2)
sudo pacman -S sublime-text
For Sublime Text Dev Version (3)
sudo pacman -S sublime-text-dev
Offset: 0xcbe3
Original: 85
Crack: 39
cd /opt/sublime_text_3
sudo sed -i 's/\xf3\x01\x00\x85\xc0\x0f/\xf3\x01\x00\x39\xc0\x0f/' sublime_text
cd /bin/
sudo rm subl3
sudo ln -s /opt/sublime_text_3/sublime_text subl3
Its very easy!
sudo pacman -S php-composer
First download and install mcrypt module.
sudo pacman -S php-mcrypt
Add module to php.ini
sudo nano /etc/php/php.ini
Uncomment mcrypt module
extension=mcrypt.so
~$ sudo chmod +x vhost-manager.py
~$ sudo ./vhost-manager.py -m add -n vserver1
Creating project folder...
Creating public_html folder...
Creating virtual host file...
Adding to hosts file...
Restarting httpd service...
DONE!
sudo ./vhost-manager.oy -m remove -n vserver1
Removing project folder...
Removing virtual host file...
DONE!
Edit /etc/php/php.ini
file with any text editor.
sudo nano /etc/php/php.ini
Uncomment this lines:
;extension=phar.so
;extension=openssl.so
Add this string to end of open_basedir
declaration
:/usr/local/bin
Restart service
sudo systemctl restart httpd
Install wine and extras
sudo pacman -S wine
sudo pacman -S wine-mono
sudo pacman -S wine-gecko
Download Battle.net World Of Warcraft Client
Start with wine
wine World-of-Warcraft-Setup-enGB.exe
Firstly, install phpmyadmin
and php-mcrypt
packages.
sudo pacman -S phpmyadmin php-mcrypt
Enable extensions in php.ini
sudo nano /etc/php/php.ini
Uncomment
extension=mysqli.so
extension=mcrypt.so
Add webapps
to php.ini's open_basedir path
open_basedir = /srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/webapps/:/etc/webapps/
Create new Apache configuration file in /etc/httpd/conf/extra
sudo nano /etc/httpd/conf/extra/phpmyadmin.conf
Add these lines to new file
Alias /phpmyadmin "/usr/share/webapps/phpMyAdmin"
<Directory "/usr/share/webapps/phpMyAdmin">
DirectoryIndex index.php
AllowOverride All
Options FollowSymlinks
Require all granted
</Directory>
Include new file in httpd.conf (bottom)
sudo nano /etc/httpd/conf/httpd.conf
Include conf/extra/phpmyadmin.conf
Edit /etc/webapps/phpmyadmin/config.inc.php
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'YOUR-MYSQL-PASSWORD';