User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T18:27:09Z http://stackoverflow.com/feeds/user/17415 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/90987/a-visual-mysql-tool-for-ubuntu 6 A visual MySQL tool for Ubuntu callaghan.matthew 2008-09-18T08:41:29Z 2009-12-05T02:34:39Z <p>Hi all</p> <p>I have recently installed Ruby on Rails on my new Ubuntu machine (first time for me) and i was working through a demonstration on setting up a sample blog.</p> <p>Basically, i came to the part of setting up the mysql database and would rather use a visual MySQL tool to do this rather than command line.</p> <p>What is best to use? and how do o get it?</p> <p>Thanks all.</p> http://stackoverflow.com/questions/796850/adding-an-anchor-to-generated-urls 0 Adding an anchor to generated URLs callaghan.matthew 2009-04-28T08:42:09Z 2009-12-02T21:25:03Z <p>Hi</p> <p>I have tried finding a simialr example and using that to answer my problem, but I can't seem to get it to work, so apologies if this sounds similar to other problems.</p> <p>Basically, I am using Terminal Four's Site Manager CMS system to build my websites. This tool allows you to generate navigation elements to use through out your site.</p> <p>I need to add a custom bit of JS to append to these links an anchor.</p> <p>The links generated are similar to this:</p> <pre><code>&lt;ul id="tab-menu"&gt; &lt;li&gt;&lt;a href="/section/page"&gt;test link, can i rewrite and add an anchor!!!&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>I can edit the css properties of the link, but I can't figure out how to add an anchor.</p> <p>The JQuery I am using is as follows:</p> <pre><code>&lt;script type="text/javascript" src="http://jquery.com/src/jquery-latest.pack.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(document).ready(function(){ // everything goes here $("#tab-menu").children("li").each(function() { $(this).children("a").css({color:"red"}); }); }); &lt;/script&gt; </code></pre> <p>Thanks in advance for any help.</p> <p>Paddy</p> http://stackoverflow.com/questions/1798474/problem-with-caching-maybe-when-using-ajax-and-php 0 Problem with caching (maybe) when using AJAX and PHP callaghan.matthew 2009-11-25T17:15:45Z 2009-11-25T17:52:44Z <p>Hi</p> <p>Firstly I tried fiding some similar posts but could not quite find anything. Mainly because I see this problem in FF and not IE only.</p> <p>I had a web page that was updating a mysql db no problem with some data. Then today, I switched the way it does this so that I can use an ID instead of a value, so for sizes, instead of small, medium and large it is 1, 2 and 3.</p> <p>The site in question is here: <a href="http://www.emmasykesphotography.co.uk/recent-weddings.php" rel="nofollow">http://www.emmasykesphotography.co.uk/recent-weddings.php</a> and you can get to a test gallery by entering the code 1234.</p> <p>I am getting the script to outoput per each time you add to basket.</p> <p>So under the radio buttons, there is the values 1, 2 and 3.</p> <p>The html for this bit is as follows:</p> <p> Small (6x4) - &pound;4.99<br/> Medium (7x5) - &pound;6.99<br/> Large (8x6) - &pound;10.99</p> <p>I have decided for now to hand code it in to get it working.</p> <p>This gets sent to an included javascript file and then gets sent to an insert page as thus:</p> <p>unction createObject() { var request_type; var browser = navigator.appName; if(browser == "Microsoft Internet Explorer"){ request_type = new ActiveXObject("Microsoft.XMLHTTP"); }else{ request_type = new XMLHttpRequest(); } return request_type; }</p> <p>var http = createObject();</p> <p>/* -------------------------- <em>/ /</em> INSERT <em>/ /</em> -------------------------- <em>/ /</em> Required: var nocache is a random number to add to request. This value solve an Internet Explorer cache issue */ var nocache = 0; function insert() { // Optional: Show a waiting message in the layer with ID login_response document.getElementById('insert_response').innerHTML = "Just a second..." // Required: verify that all fileds is not empty. Use encodeURI() to solve some issues about character encoding. var image= encodeURI(document.getElementById('image').value); var image_Size= encodeURI(document.getElementById('image_Size').value);</p> <p>alert(image_Size); alert(nocache);</p> <p>// Set the random number to add to URL request nocache = Math.random(); // Pass the login variables like URL variable http.open('get', 'insert.php?image='+image+'&amp;imageSize='+image_Size+'&amp;nocache = '+nocache); http.onreadystatechange = insertReply; http.send(null); } function insertReply() { if(http.readyState == 4){ var response = http.responseText; // else if login is ok show a message: "Site added+ site URL". document.getElementById('insert_response').innerHTML = 'Image added:'+response; } }</p> <p>As you can see, no matter what happens, the alert popup says 1. Even if you select medium or large.</p> <p>Has anyone any ideas what may be going on here.</p> <p>Thanks in advance.</p> <p>Paddy</p> http://stackoverflow.com/questions/1159603/bringing-back-only-one-row-in-a-joined-table-using-ms-access 0 Bringing back only one row in a joined table using MS Access callaghan.matthew 2009-07-21T14:36:38Z 2009-07-22T05:57:19Z <p>Hi All</p> <p>I know there are similar postings out there, but when I have tried to use any of them in my own query I can not get it working.</p> <p>Basically, I have 3 tables that I want to query in ACCESS using the SQL view.</p> <p>Initially though and for this example I am trying to do it with just the 2.</p> <p>tb1 name: Tasks</p> <p>tb1 fields wanted: Task ID Task Title Project ID (This is to be used to grab the project title at the end, i.e. the 3rd table as mentioned above)</p> <p>tb2 name: Task Notes</p> <p>tb2 fields wanted: Task Note ID Task Note Date Task Note</p> <p>What was happening using the design view, is that if there was 3 notes for example relating to one task in the Tasks table, it was listing all 3 task notes. </p> <p>What I want to do, is to bring out the last Task Note entered only, be it by [Task Note ID] or by [Task Note Date].</p> <p>What I am left with now, built from help from here is the following SQL statement:</p> <pre><code>SELECT t.[Task ID], t.[Task Title], t.[Project ID], tn.* FROM Tasks t INNER JOIN [Task Notes] tn ON t.[Task ID] = tn.[Task ID] WHERE tn.[Task ID] = (SELECT max(tn.[Task Note Date]) FROM tn where tn[Task ID] = t.[Task ID]) ; </code></pre> <p>I am getting a syntax error with this, but previous incarnations have also left me stuck.</p> <p>I normally develop outside of ACCESS and in php/asp it is fine, however in ACCESS I am a newbie.</p> <p>Any help would be greatly appreciated</p> <p>Cheers</p> <p>Matthew</p> http://stackoverflow.com/questions/796850/adding-an-anchor-to-generated-urls/796869#796869 0 Answer by callaghan.matthew for Adding an anchor to generated URLs callaghan.matthew 2009-04-28T08:50:26Z 2009-04-28T08:50:26Z <p>I can now target the html by using the following:</p> <pre><code>$(this).children("a").html("it works"); </code></pre> <p>I assumed that: </p> <pre><code>$(this).children("a").href("something"); </code></pre> <p>would edit the href but I am wrong.</p> <p>Paddy</p> http://stackoverflow.com/questions/242916/terminalfour-site-manager-content-management-system 0 Terminalfour site manager - Content Management System callaghan.matthew 2008-10-28T11:09:14Z 2008-11-11T15:21:20Z <p>Hi all</p> <p>I am about to start a project, ongoing actually for the next 2 years where we as an organisation will be implementing <a href="http://www.terminalfour.com/content-management-system/" rel="nofollow">TerminalFour Site Manager</a></p> <p>I am basically after any advice or support if anyone has used this piece of software, and what they think about it.</p> <p>So far, apart from it being clearly not the prettiest of interfaces, it does seem that it can handle the majority of basic website editing etc quite well. </p> <p>I do see limitations though when it comes to custom built templates and linking with external data, RSS, MySQL tables and the like.</p> <p>So as mentioned, if anyone else has used it or is going to use, what are your thoughts?</p> <p>Thanks</p> http://stackoverflow.com/questions/205228/how-do-i-initialize-a-blank-database-as-per-a-populated-dataset/205259#205259 0 Answer by callaghan.matthew for How do I initialize a blank database as per a populated dataset? callaghan.matthew 2008-10-15T15:48:02Z 2008-10-15T15:48:02Z <p>You could take it a step further and write a script to load in a text file.</p> <p>In this text file you could set up some default styling and then use your script to handle it, for example:</p> <p>tb_newTable<br> id pk<br> name vc 255<br> email vc 255<br> -end</p> <p>Or something. So your handler reads this, recognises tb_ to be table name, then on line by line basis it creates the fields, so id pk could field name id, and primary key, name vc 255 is field called name at varchar 255 etc.. with -end stopping it.</p> <p>This is theoreticaly mind, and the above won't do squat but it migth give you an idea.</p> http://stackoverflow.com/questions/186581/when-do-you-design-the-gui-first-and-the-backend-code-later-or-vice-versa/186599#186599 2 Answer by callaghan.matthew for When do you design the GUI first and the backend code later, or vice versa? callaghan.matthew 2008-10-09T09:57:46Z 2008-10-09T09:57:46Z <p>I would assume that this depends on the type of project, and yes, i am aware that is not really an answer as they all do. But usually you can visualise how the front end wants to look from the back end aswell.</p> <p>I would always have an eye on the front end myself, as at the end of the day that is the part that wil be visible. Also, it usually helps get an idea of what is expected by visualising, even if in block form or via post it notes what you want to see as to what it is you are indeed coding.</p> <p>Of course, it always helps if it is for a client and they give you the visuals before hand :) That way as long as you match the visuals you can still go to town with non visual related back end fun.</p> http://stackoverflow.com/questions/178863/change-theme-css-based-on-user/178960#178960 0 Answer by callaghan.matthew for Change Theme / CSS based on user callaghan.matthew 2008-10-07T15:15:21Z 2008-10-07T15:15:21Z <p>With php for example you can create dynamic css, so this coupled with the user information stored in a db would surely suffice.</p> <p>Try <a href="http://www.digital-web.com/articles/generating_dynamic_css_with_php/" rel="nofollow">here</a> or <a href="http://www.barelyfitz.com/projects/csscolor/" rel="nofollow">here</a> as an introduction.</p> http://stackoverflow.com/questions/177660/best-language-for-a-non-programmer-tech-support-person-to-learn/177951#177951 0 Answer by callaghan.matthew for Best language for a non-programmer tech support person to learn callaghan.matthew 2008-10-07T11:01:26Z 2008-10-07T11:01:26Z <p>You could try an alternative to learning regex, by using the powerful regex capabilities of <a href="http://www.editpadpro.com/editpadlite.html" rel="nofollow">editpad</a></p> <p>This is very fast and a lot of the tasks that you are scripting to do the conversions/replacements may be possible by using this.</p> http://stackoverflow.com/questions/121638/mvc-frameworks-on-hosted-servers 0 MVC frameworks on hosted servers callaghan.matthew 2008-09-23T15:14:20Z 2008-10-02T22:02:06Z <p>Hi all</p> <p>This may seem like a daft question, but i was wondering about how to use MVC frameworks on hosted servers.</p> <p>I am playing about (albeit slowly) at home with the RoR on Ubuntu and understand that if i want to do a live site then i need hosting with Rails and Ruby.</p> <p>However, what happens about the PHP frameworks. For example i have seen in the past all about the CakePHP but lately i have just come across the <a href="http://www.symfony-project.org/tutorial/1_1/my-first-project" rel="nofollow">Symfony project</a> and was thinking that if i had a server stack set up i could develop at home, how would i go about deploying anything live. </p> <p>How do i use php command line on live servers, and how would i go about installing the framework on another server.</p> <p>This is all hyperthetical at the moment as i am just thinking about it, but it is a question that i have thought of in the past.</p> <p>Regards</p> http://stackoverflow.com/questions/90987/a-visual-mysql-tool-for-ubuntu/92489#92489 0 Answer by callaghan.matthew for A visual MySQL tool for Ubuntu callaghan.matthew 2008-09-18T13:23:21Z 2008-09-18T13:23:21Z <p>Thanks all.</p> <p>I will try either the phpMyAdmin as i have had experience of using it in the past.</p> <p>I still have a bit of a way to go to understand how to connect to the 3 database types that RoR uses but we shall see.</p> <p>Cheers</p> http://stackoverflow.com/questions/90802/simple-free-php-blog-engine-easy-to-redesign/91089#91089 0 Answer by callaghan.matthew for Simple, free PHP blog engine easy to redesign? callaghan.matthew 2008-09-18T09:07:26Z 2008-09-18T09:07:26Z <p>Only one answer, Wordpress. I have used it only a few times to customise but simply found that it can be done by editing the header and footer files along with the stylesheet. </p> <p>What can be simpler.</p> <p>I suggest you just give it a go before you look at others as you could deliberate for ages just to come back to it :)</p> http://stackoverflow.com/questions/1004458/jquery-cycle-plugin-with-different-effect-on-next-and-previous/1012067#1012067 Comment by on JQuery cycle plugin with different effect on next and previous 2009-12-01T15:40:48Z 2009-12-01T15:40:48Z Hi I am looking at something similar to this where I also need to define different values for the timeout. Can this be done? Possibly like: timeout: val1,val2,val3 etc Cheers Paddy http://stackoverflow.com/questions/1798474/problem-with-caching-maybe-when-using-ajax-and-php/1798673#1798673 Comment by on Problem with caching (maybe) when using AJAX and PHP 2009-11-26T09:27:56Z 2009-11-26T09:27:56Z Thanks both. Looking back I can't believe I made such a school boy error. Guess that is what happens whenthe rush is on. Thanks both. http://stackoverflow.com/questions/1159603/bringing-back-only-one-row-in-a-joined-table-using-ms-access/1159648#1159648 Comment by on Bringing back only one row in a joined table using MS Access 2009-07-22T13:46:09Z 2009-07-22T13:46:09Z Hi What is TaskNoteIDS in the above example? Is it a typo, or is it a temp table. I am getting syntax errors with this, and then when i try to use [Task Notes] instead it still gives me syntax errors (which are really unhelpful MS) Cheers Matthew http://stackoverflow.com/questions/796850/adding-an-anchor-to-generated-urls/796925#796925 Comment by on Adding an anchor to generated URLs 2009-04-28T12:30:44Z 2009-04-28T12:30:44Z Thanks, this works perfectly. Paddy http://stackoverflow.com/questions/121638/mvc-frameworks-on-hosted-servers/164805#164805 Comment by on MVC frameworks on hosted servers 2008-10-09T10:52:21Z 2008-10-09T10:52:21Z Ah right, never thought of it like this but it makes blatant sense. Cheers http://stackoverflow.com/questions/121638/mvc-frameworks-on-hosted-servers/121742#121742 Comment by on MVC frameworks on hosted servers 2008-09-23T15:58:23Z 2008-09-23T15:58:23Z Thanks for your comments. At the moment it was simply just a general check i was after. Although i have read more into Symfony and i am interested in trying it further. The host company i use is streamline.net. Thanks anyway to all. http://stackoverflow.com/questions/121638/mvc-frameworks-on-hosted-servers/121664#121664 Comment by on MVC frameworks on hosted servers 2008-09-23T15:47:06Z 2008-09-23T15:47:06Z Thanks (all) for this. I shall have to give this a go and see what happens.