- Strength to Increase Rep
- +3
- Strength to Decrease Rep
- -0
- Upvotes Received
- 5
- Posts with Upvotes
- 4
- Upvoting Members
- 5
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Re: 7pts? **Seby1**, that's what I'm talkin about. and **coping**, too true. **mikivtc**, I recommend you get with the punctuation program. It might help you organize your thoughts. | |
Re: What bad grammar indicates to me is a lack of critical thinking. It's nothing deep or complex, but that's even more reason that the difference between "it's" and "its" for example should be apparent: i.e., because it's just not that difficult. It makes sense, if you think about it AT … | |
Re: Check out [ProcessWire CMS/CMF](http://www.processwire.com) (Content Management Framework isn't something you hear often). It's like what most people coming from WP-as-a-CMS development, with Joomla and Drupal as the leading alternatives, dream about. I think I've mentioned it in response to someone else before only because it's so awesome and intuitive, even … | |
Re: @cereal: OP said those are just replaced in this code... I gather... or verbatim, "where $ username is my username and $ password is my password but (obviously i cant show it)" so I'm guessing that's not how it actually is in his code | |
Re: Well the form you'll have to create in HTML as well... A database table is not part of a webpage... Your clickable table cells also need to be distinguishable from their header cells, assuming you *don't* want a form to open when clicking on the "Monday" column header; you only … | |
Re: [ProcessWire](http://www.processwire.com)! | |
How might I gather all the songs in my music library (maintained in iTunes) on Mac OS X 10.8.5 with ID3 title tags (I guess? their titles in iTunes) that consist of 4 random capital letters. Or all the ones whose titles are 4 characters long, case insensitive, or mixed … | |
Re: WP is PHP. Work with that if you're trying to implement an external API within a native widget. | |
Re: There are many ways to do this. How you should do it really depends on what you know, and what you have to work with (i.e., your web hosting/server type and what it supports). | |
My company has a website www.geminicatamarans.com. All their websites and their site servers are messy, this one's no exception. They have it set up currently with the index page "redirecting" with JS (window.location.href) to a WP site in a subdirectory (which used to take even longer because there was an … | |
Re: ...or a simple grid system if you don't need all the bells and whistles that comes with full-featured CSS/design frameworks like Bootstrap. (You can also/alternatively get a custom build of Bootstrap with only its grid system.) 960.gs, for example, is solely a grid system. Implementing it in your layouts will … | |
I'm working on a site that had to be customized from a templatemonster.com template. It's just about finished except the contact form only seems to work fully in Firefox, which is odd? In FF, IE, and Chrome it LOOKS like it works, and in the first two the submissions come … | |
I have the same code snippets included for the header and footer, so they're all identical across all pages on this site. Yet, after updating the site files on my client's webserver today, he says on four of the eight total pages, the footer is essentially taller, and on three … | |
About a month ago our developer changed the URL for all the programmed pages; before they were all **/x_y/**somepage.aspx?a=1&b=2&z=7&h= for example and that was changed to **/y/**somepage.aspx?foo=bar&b= (the relevant part being the first section in bold). However all the pages are still accessible via /x_y/... (which is the actual name … | |
Upon uploading my site files to a GoDaddy hosted website -- with a "coming soon" sort of maintenance page I'm assuming is generated by GD (headline "Future home of something quite cool") -- that's on a shared FTP account for which the root is a different domain and there are … | |
Re: You can use a Javascript redirect in the <head>: <script type="text/javascript"> window.location = "http://www.nanotekindustries.com/#top"; </script> FYI, you have Caribbean misspelled. Also site does not work correctly in latest Firefox. And you might want to make the email address there a mailto: link. | |
None of the listings on our ASP.NET website at my company appear in search results. Everyone's just universally accepted (like always) this fact, and just try to work around it. Now my boss is saying for one of the brands we're a dealer for we've gone way down in search … | |
[www.unitedinblue.com](http://www.unitedinblue.com) There's a lot of JS and ajax and extra scripts and things (far as I can tell at a first look) on this website, some of which don't even seem to serve any purpose. If you look in the source (via Inspect Element, not actually viewing the page source, … | |
When clicking on listing links from an email sent via Constant Contact, which masks the links with a tracking code that redirects to the given link, the accessed pages produce a server error 500. Most of the page loads, except for the dynamic listing content which the page is meant … | |
Re: With webdev it's also easier to get your foot in the door... I think... There are countless opportunities. | |
Re: Just use this: <?php // Load the stamp and the photo to apply the watermark to $stamp = imagecreatefrompng('stamp.png'); $im = imagecreatefromjpeg('photo.jpeg'); // Set the margins for the stamp and get the height/width of the stamp image $marge_right = 10; $marge_bottom = 10; $sx = imagesx($stamp); $sy = imagesy($stamp); // … | |
Re: Thanks for spelling that out for us, Mike. | |
Re: You can try this: <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Serve PHP files sans ext" stopProcessing="true"> <match url="^(.*)$" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> <add input="{REQUEST_FILENAME}.php" matchType="IsFile" ignoreCase="false" /> </conditions> <action type="Rewrite" url="{R:1}.php" /> </rule> </rules> </rewrite> </system.webServer> </configuration> | |
Re: It depends on what you mean to achieve. For simple, static-content sites, you're good with just a code/text editor like NotePad++ (I use that too), or Sublime Text, Textmate, ... anything with code highlighting, to improve readability, at least. They offer more bells and whistles than that, but for starters … | |
I've been really interested in Django lately, so I came here to check out the scene on the forums, only to find there's no Python/Django subforum in Web Development. Where can I come on here for support regarding web development with Django? | |
Good day, fellow IT enthusiasts. I am a "super user", and intermediate web developer since the age of 8, having spent so many long hours in childhood on the internet (when I wasn't reading, which I no longer do). Now in my early twenties, already a 2x college dropout. I … |