Blog
Connecting to PSU using new iPhone 2.0 Cisco VPN PDF Print E-mail
This is fairly easy once you figure out what the VPN fields should be set to:
  • Settings / General / Network / VPN / Add VPN Configuration... / IPSEC
  • For PSU  at University Park
    • Description: UP connection to ITS wireless
    • Server: mobility.up.psu.edu
    • Account: your access account
    • Password: your access account password
    • Use Certificate: grayed out - don't use
    • Group Name: pennstate
    • Secret: pennstate
  • Save
  • Turn on VPN w/slider
Update: Doesn't seem to be remembering my password...have to type it in every time.
Last Updated on Monday, 04 August 2008 15:01
 
White screen during Joomla component install PDF Print E-mail

With the new version of Joomla (1.5.2) I now have trouble installing some components using "Extensions/Install-Uninstall/Upload Package File". All I get is a white screen with no messages or errors. I did find a workaround though:

Last Updated on Monday, 04 August 2008 14:48
Read more...
 
Problems w/accessing a PHP array by reference PDF Print E-mail

I'm not sure yet if this is a bug or a feature of PHP, but be very careful when mixing arrays with the PHP reference operator (&). I just spent many hours tracking down a bug where changing an array copy was also changing the original array. It took several more hours to figure out that accessing an array by reference caused subsequent copies of that array to also be linked by reference!

Here's a simple piece of PHP that illustrates what I found (PHP Version 5.1.6):

This code copies an array and changes one of it's values...as expected the original array doesn't change:

<?php
$array1 = array(1,2);
$array2 = $array1;
$array2[1]=22; // Change one value, $array1 remains unchanged
print_r($array1);
?>

Produces:

Array
(
[0] => 1
[1] => 2
)

Last Updated on Wednesday, 04 June 2008 08:41
Read more...
 
Starting a blog PDF Print E-mail
I've decided to start a blog as a place to document technical issues that I'm working on. Entries will be very sporadic as I will only be writing articles when I have an issue I feel others will be interested in, or something I want to reference in the future.
Last Updated on Monday, 04 August 2008 14:49
 


Symmetric Designs is not affiliated with or endorsed by the Joomla Project or Open Source Matters. The Joomla logo is used under a limited license granted by Open Source Matters, the trademark holder in the United States and other countries. Symmetric Designs products are not supported or warranted by the Joomla Project or Open Source Matters.