Team Explorer is not included by default in SSDT. Install the Visual Studio Team Explorer 2010 – ISO – http://www.microsoft.com/en-us/download/details.aspx?id=329 Make sure the Team Explorer […]
Posts
How to set the Row Limit in SSRS report
Implement the Query rowLimit parameter: <RSSharePointList xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xmlns:xsd=”http://www.w3.org/2001/XMLSchema“> <ListName>Help Desk Requests</ListName> <Query> <Parameters> <Parameter Name=”rowLimit”> <DefaultValue>9999</DefaultValue> </Parameter> </Parameters> </Query> <ViewFields> […]
Great Plains: You are not allowed to have negative Actual Quantity
When trying to put negative time in Great Plains project accounting in the Timesheet Entry screen, you get the following error: “You are not allowed […]
SharePoint user email address missing in profile
From SharePoint PowerShell: Set-SPUser -Identity “DOMAINusername” -Email “email@yourdomain.com” -Web “http://yourdomain.com”
glftpd site users: 200 You do not have access to this command.
Command: site change <username> flags +h
glftpd add user with no ratio
Commands: site adduser <username> <password> site addip <username> *@* site change <username> ratio 0
Change Ubuntu root password without getting “Give root password for maintenance”
Reboot machine; Press ‘Esc’ to get to the GRUB menu; Select the image; Press ‘e’ to edit; Change the kernel line from ‘ro’ to ‘rw […]
Install and configure wordpress with multiple hosts
See the previous post about install and configure apache2 with multiplue hosts Download and unzip wordpress: cd /srv/www/brianwilliams.pro sudo wget http://wordpress.org/latest.tar.gz sudo tar -zxvf latest.tar.gz […]
Install and configure apache2 with multiple hosts
Assuming Apache mod_rewrite module is enabled: sudo a2enmod rewrite Create the needed website directories: mkdir /var/www/brianwilliams.pro mkdir /var/www/allaboutyoushelby.com Configure Apache: sudo vi /etc/apache2/sites-available/brianwilliams.pro <VirtualHost *:80> […]
Change Ubuntu from DHCP to static IP
Open the network interfaces file: sudo vi /etc/network/interfaces DHCP configuration: auto eth0 iface eth0 inet dhcp Static configuration: auto eth0 iface eth0 inet static address 192.168.20.56 […]