Scottish Borders Business Blog
Search 

Evergreen Integrated Library System customisation and support forum 
Saturday, June 25, 2011, 10:00 AM - Evergreen ILS
Posted by Administrator
If you are looking for an Open Source Library automation system or need support or customization advice regarding Evergreen then see Evergreen ILS support forum
add comment ( 6131 views )   |  0 trackbacks   |  permalink   |   ( 3 / 1035 )
Koha Integrated Library System Support Forum 
Saturday, June 25, 2011, 09:52 AM - Koha ILS
Posted by Administrator
If you are looking for an Open Source Library automation system or need support or customization advice regarding Koha then see Koha ILS support forum
add comment ( 1156 views )   |  0 trackbacks   |  permalink   |   ( 3 / 1005 )
Scottish Borders business listings 
Friday, October 22, 2010, 09:17 AM - Scottish Borders Tourism
Posted by Administrator
Get your business listed for free Scottish borders Business Directory
add comment ( 2083 views )   |  0 trackbacks   |  permalink   |   ( 3 / 849 )
Force Linux to flush the ARP cache 
Thursday, June 10, 2010, 08:59 AM - Commands
Posted by Administrator
regardless of what version the following could be adapted:
below should work for solaris on le0 interface

for arpent in `arp -a | grep "^le0" | awk ''{ print $2 }' ` ; do
arp -d $arpent
done

you could specify multiple/all interfaces by substituting grep with egrep and us
ing the following:
egrep "^le0|^hme0|^net0"

add comment ( 158 views )   |  0 trackbacks   |  permalink   |   ( 3 / 845 )
Activate hidden VISTA partition - most laptops 
Monday, October 12, 2009, 07:50 PM - Windows VISTA
Posted by Administrator
If you need to reset your latop to factory defaults but the partition is hidden and Alt+F10 does not work then this method in my opinion is much simpler than messing with partition managers.

I'm assuming here you just want it like it was when you bought it, You will loose all data.

Step1:
Download the latest version of Ubuntu desktop from Ubuntu Desktop

Step2:
Burn the iso to disk with Magic ISO, Alchohol120%, Nero or similar software that can burn an ISO to a bootable disk

Step3:
Boot up with the Ubuntu disk and follow the instructions for installing Ubuntu.
**** Don't choose Use entire disk, it will delete your hidden partition, use either the free space option or advanced then go in and shrink your Windows partition, the options are obvious when you see them. Basically use any option other than 'Use Entire Disk'.

Step4:
Reboot and when the GRUB boot loader screen appears there is an 'Other Operating Systems' entry and one of the options will be Vista loader. Choose it and it will boot from your hidden partition where you can restore back into Vista.

Job Done
add comment ( 1125 views )   |  0 trackbacks   |  permalink   |   ( 3 / 889 )
Find all large files - Linux 
Friday, October 9, 2009, 03:03 PM - find
Posted by Administrator
Suppose you want to find all files larger than 500MB on a Linux or Unix system and have them sorted to display the largest first then log in as root and execute the following command.


find / -type f -size +500000k -exec ls -lh {} \; 2> /dev/null | awk '{ print $NF ": " $5 }' | sort -nrk 2,2

If you cannot log in as root dont try sudo find .....

Log in as a normal user then execute the command sudo bash and then execute the find command
add comment ( 142 views )   |  0 trackbacks   |  permalink   |   ( 3 / 879 )
Apche Error - (98)Address already in use: make_sock: could not bind to address [::]:443 no listening sockets available, shutting down Unable to open logs 
Sunday, September 6, 2009, 06:49 PM - Apache
Posted by Administrator
On restarting Apache you get this message
(98)Address already in use: make_sock: could not bind to address [::]:443 no listening sockets available, shutting down Unable to open logs

Look for any processes listening on http or https ports, typically ports 443 nd 80.

From a root console type the following command

$ /usr/sbin/lsof -i | grep http

The output will look something like this.

baliem 4442 apache 3u IPv6 2361222 TCP *:http (LISTEN)
baliem 4442 apache 4u IPv6 2361224 TCP *:https (LISTEN)
baliem 4442 apache 103u IPv4 2917715 TCP example.co.uk:46613->12.6.41.35:http (ESTABLISHED)
httpd.vmw 5831 root 16u IPv4 10626 TCP *:8333 (LISTEN)
httpd.vmw 5831 root 17u IPv4 10627 TCP *:8222 (LISTEN)
httpd.vmw 5851 nobody 16u IPv4 10626 TCP *:8333 (LISTEN)
httpd.vmw 5851 nobody 17u IPv4 10627 TCP *:8222 (LISTEN)
httpd.vmw 5857 nobody 16u IPv4 10626 TCP *:8333 (LISTEN)
httpd.vmw 5857 nobody 17u IPv4 10627 TCP *:8222 (LISTEN)


In my case it was athe process called baliem, some sort of proxy hack I think. Simply kill it with

$ kill -9 4442

or

$killall -9 http

Then execute:
/etc/rc.d/init.d/httpd start and you should be ok.

add comment ( 978 views )   |  0 trackbacks   |  permalink   |   ( 3 / 912 )
OSCMax Paypal Error 
Thursday, August 27, 2009, 08:08 AM - Ecommerce
Posted by Administrator
I have installed the Standard Payments module for Paypal.

It works all the way through (incuding entering into admin) until the end when I click on the

Quote:
Return to Store Button
I get the following error

[Quote]
Fatal error: Call to a member function update_credit_account() on a non-object in /home/a1352804/public_html/catalog/includes/modules/payment/paypal_standard.php on line 471


Soulition:
You can add
" if (isset($order_total_modules))" in front of each line indicating error.
add comment ( 976 views )   |  0 trackbacks   |  permalink   |   ( 3 / 870 )

| 1 | 2 | 3 | 4 | Next> Last>>