Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #3K

19 Posted Topics

Member Avatar for jrock2004

So the localization file I am getting is an xliff file. I am trying to find a tutorial or a starter to help me call in a key and return its value. I have seen some tools but not what I am looking for. Any help will be appreciated. Thanks.

0
74
Member Avatar for jrock2004

I have several different computers that I work on the same code. So on my server I have the master git repo. I have noticed that some code when I push then try to pull and or fetch on other computer it does not pull some of it down. Not …

Member Avatar for L7Sqr
0
260
Member Avatar for jrock2004

Ok so let me explain what I am looking for. I have one repo where the new code is being written that lives on one repository. On another repository I have pulled a snapshot of their code and edited to work in a certain environment. In a couple of weeks …

Member Avatar for jrock2004
0
119
Member Avatar for jrock2004

Of so if I use this in a template on the index page I get what I want. If this code lives on a page.php page it shows me the recent pages created. [CODE] <?php $i = 1; while (have_posts() && $i < 6) : the_post(); ?> <li><a href="<?php the_permalink(); …

Member Avatar for Kraai
0
92
Member Avatar for jrock2004

I am assuming I will use the date function but I want to get the day that is the 3rd wednesday of the month. My site has dates for meetings and they are always the 3rd wed of the month. I like to show the next 3 meeting dates. Could …

Member Avatar for rch1231
0
57
Member Avatar for jrock2004

Ok so I am writing a PHP script that will gather some information into a file and the push it up via SVN. I am running into a problem with pushing it up via SVN. [CODE=php] shell_exec("svn commit -m $message store-webapp-test-selenium-$storeCode --password $svnPassword"); [/CODE] I have even tried it like …

Member Avatar for digital-ether
0
139
Member Avatar for nicnac23

Another way to do it is you push your data to one file. Then write what you need the internal file and the rest just push to the other.

Member Avatar for JenniC
0
1K
Member Avatar for jrock2004

Ok so I am trying to setup on my site to have 6 of my recent tweets. I am trying to use the .getJSON method and it is just not working. [CODE] $.getJSON("http://api.twitter.com/1/statuses/user_timeline/jrock2004.json", function(data) { $.each(data, function(){ $('<div></div>') .hide() .append('<span>' + this.text + '</span>') .appendTo('#tweets') .fadeIn(); }); }); [/CODE] Any …

Member Avatar for JJenZz
0
102
Member Avatar for niths

Well more information is needed? Are the images stored in the database themselves or do you have a field in the db that just points to the file location and filename?

Member Avatar for vibhaJ
0
91
Member Avatar for mariko
Member Avatar for mariko
0
140
Member Avatar for meo_spt
Member Avatar for meo_spt
0
780
Member Avatar for jrock2004

Ok I have a page that has a list of teachers on it that has their email address. What I want to do is when the teacher's email link is clicked a lightbox type form comes up. So would it best to code what my form is in a separate …

Member Avatar for jrock2004
0
116
Member Avatar for _mike_

So you are saying is if you put your main stylesheet above that code and you open your site in firefox that it is all messed up? How? Do you have a link we can view this?

Member Avatar for _mike_
0
185
Member Avatar for ultimatebuster

Not sure if you are using jquery at all but you could do it like this [code=javascript] $(document).ready(function() { tallest = 0; group.each(function() { thisHeight = $(this).height(); if(thisHeight > tallest) { tallest = thisHeight; } }); group.height(tallest); equalHeight($("#left")); equalHeight($("#right")); }); [/code]

Member Avatar for jrock2004
0
227
Member Avatar for niths

Well there are many ways of doing this. The quick and dirty way of doing this is wrap a form around the table. Change edit to a submit button and store the username in the name attr so you can post it on the next file. Then do a db …

Member Avatar for jrock2004
0
73
Member Avatar for canterorist

Well you would need to have a webserver running. If you do not then in the terminal do the following: [code] sudo tasksel install lamp-server [/code]

Member Avatar for jrock2004
0
52
Member Avatar for 77wildhorses

You could use jQuery to detect if the person is on an iPad/iPhone and if they are rewrite your nav to not use the flash.

Member Avatar for Brian Stephens
0
136
Member Avatar for idane

Well when I am coding checkboxes in the DB I usually put them in as either a 0 or 1. You set it to 1 if they check it. If this is not what you are looking for please let me know. Thanks [QUOTE=idane;1274842]I have a site that im trying …

Member Avatar for idane
0
104
Member Avatar for jrock2004

I am trying to make an expandable div that has a background image. Below is the code I am using. I am just trying to make a quick example of this. Attached is a screenshot. In the bottom right corner of the div you see that white is outside the …

Member Avatar for jrock2004
0
150

The End.