Category Archives: Apache
Asterisk Setup – 404 Not Found
If you’re getting a 404 Page Not Found error when you’re trying to access your Asterisk web gui on http://localhost:8088 (by default), it’s because you need to create a symbolic link to /usr/share/asterisk/static-http, do the following and all should be … Continue reading
Upload using C++ as Client and PHP as Server
Level: Beginner (coder) This is a small tutorial which will teach you how to upload files using a C++ client application to a server running PHP. I had previously posted a version for C# that can be found here: http://www.johny.org/2007/08/upload-using-c-as-client-and-php-as-server/ … Continue reading
Apache2 .htaccess RewriteEngine error
To enable .htaccess files on your server, edit “/etc/apache2/sites-available/default” file, change AllowOverride to All NameVirtualHost * <VirtualHost *> ServerAdmin admin@site.com DocumentRoot /var/www/ <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow … Continue reading