925 reputation
1935
bio website sonikastudios.com
location Vancouver, Canada
age 27
visits member for 3 years, 4 months
seen May 8 at 16:23
stats profile views 206
Web developer, Graphic Designer, and Business Owner in Vancouver, BC PHP/MySQL, HTML/CSS, Javascript and jQuery, AJAX and DB management specialist Also experienced with Illustrator/InDesign/Photoshop etc.

Mar
18
comment Looking for examples or help on integrating RETS into a php website
If the ROI spent on hiring a C++ or Python/Ruby developer is worthwhile compared to the volume that the company is looking at, I can see that being logical. Money is a huge factor in this business too, and availability of HR pool.
Mar
14
comment Looking for examples or help on integrating RETS into a php website
Yup this is awful advice, I agree. I have methods implemented to detect modified dates etc. and caching it smartly. Don't need to branch out into another language just to handle RETS feeds. I have multiple RETS feeds set up with PHP too, no problems after I did some optimization on the code.
Oct
22
comment %2F in URL breaks and does not reference to the .php file required
That explains. Thanks so much.
Aug
27
comment Pointing two sets of private nameservers to one pair of IPs
But my original question of being able to point multiple private nameservers to the same IPs - is that going to be OK?
Aug
27
comment Jquery error not defined?
Try $('homelink') as a selector instead. It's a softer way to select, and there's built-in exceptions in case the item is not there.
Aug
27
comment Dropdown menu colour not restoring after hovering out of the submenu div downwards
No, but thank you so much. I'll settle for waht works and move onto finishing the site... it's been long enough!
Aug
23
comment Dropdown menu colour not restoring after hovering out of the submenu div downwards
Cufon.replace('#menu>li', { fontFamily: 'gillsans', hover:true, hoverables: { li: true }, ignore: { ul: true }, textless: { li: true } });
Aug
23
comment Dropdown menu colour not restoring after hovering out of the submenu div downwards
FAQ #10 had the answer... github.com/sorccu/cufon/wiki/FAQ#wiki-faq-10
Aug
23
comment Dropdown menu colour not restoring after hovering out of the submenu div downwards
Yup CUFON error. Grrrr. Does anybody know how to resolve this in scope of CUFON? The design will be absurd without the right font..
Aug
23
comment Dropdown menu colour not restoring after hovering out of the submenu div downwards
CUFON font replacement.. maybe I should try disabling CUFON then.
Aug
23
comment Dropdown menu colour not restoring after hovering out of the submenu div downwards
Yup it's all JS. I know this is one of those bizarre things. I wonder if it's some weird thing with browser behaviour that I can't get around. Funny thing is, after i hover in and out to make it go all white, and look at the firebug status, it says it SHOULD be color:#002349 which is the deep blue, so I can't even troubleshoot which line of CSS is causing this weird behaviour... :)(
Aug
23
comment Jquery error not defined?
8 Seconds apart! Yup the sequences was it - looked at the source code on the page.
Aug
23
comment Jquery error not defined?
He provided the link - easy enough to find the source and just go through it. Probably better than being limited to whatever info he gives us thinking that is all that is relevant... that's my two cents on the whole "paste the code" thing, because sometimes you need the whole picture.
Aug
23
comment Dropdown menu colour not restoring after hovering out of the submenu div downwards
Roger that = updated the CSS.
Aug
8
comment POST var not being passed in PHP whatsoever
That would be genius, except the previous coder had it set that way, and I'm trying to minimize my efforts in getting this live and getting the job done... really don't want to deal with this guy's messy coding. This stuff is awful what I'm dealing with! I miss my own code.
Aug
8
comment POST var not being passed in PHP whatsoever
This is from another developer that I'm inheriting - his login check was using $HTTP_VARS or whatever the fuck instead of $_COOKIE or $_SESSION and the newer version of PHP was rejecting that, so I had a redirect loop. No wonder the POST vars were not showing, because it had gone from login.php->index.php->login.php back again! Thanks for the kind help.
Aug
8
comment POST var not being passed in PHP whatsoever
Tried with and without that both already.
Aug
8
comment POST var not being passed in PHP whatsoever
#1 - removing the enctype did not make a difference. #2 - tried both print_r($_POST) AND print_r($_REQUEST) to make sure. nothign. #3 - I'll look into that, but right now i'm more concerned about why my new server rejects my POST vars. #4 - Absolutely. The print_r($_POST) does return Array() so the php commands work well. It's just returning a complete blank.
Aug
8
comment POST var not being passed in PHP whatsoever
Added the Firebug snippet as well to the question above
Aug
8
comment POST var not being passed in PHP whatsoever
No error log, and action="" was the original script. I made it more explicit in order to be more specific. Removed it again, same result. Array() returned, rather than the full $_POST or $_REQUEST array.