BenWalker
-
Thoughts and Help with "clean" URLs
1) How much will clean URLs help my prospects of finding a Job with this site. I would say clean URLs are becoming expected. No-one would be surprised with you using them, but some might be surprised when you don't. 2) How clean should…
-
.htaccess error
Can't test this right now, but I think you need a space after the regex: RewriteRule ^([a-zA-Z0-9_-]+)$ profile.php?u=$1
-
Opinions on CSS Frameworks
I use bootstrap when I'm developing a back-end without a front-end to plug into. I do more back-end work (developer, not designer), and I like output to at least slightly correlate with the desired end product. Frameworks clearly have a use. I…
-
Each tab to have own color
I realise that this is probably not relevant to this specific query, since the site doesn't appear to use wordpress, but I implemented something similar in a WordPress theme I designed recently. The classes are, unfortunately, not semantic, but…
-
yet another a:active problem
http://codepen.io/anon/pen/IotpH Sorry -- needed a:link as well.
-
How to replicate buttons in jQuery?
Sorry - explanation: Event handlers aren't replicated when you duplicate an object. You need instead to have a method that either binds it explicitly, or (as in this case) uses a "delegated events" approach. What that means is that …
-
How to replicate buttons in jQuery?
var singleData = $('#main').html(); $(document).on('click', '.replicate', function() { $('#main').append(singleData); });
-
yet another a:active problem
Add the following within a:active: outline: 0;
-
How to make Ajax work in wordpress
I suspect not, no. You haven't given much information, you see. 1) frame1.php doesn't look like a wordpress query, so you might need to confirm that it is, or that it is not intended to be. 2) It would be sensible to give a link to the p…
-
Website Input
I was almost certain that font was present on all systems. Most, but not all. Windows users will have it covered, as will mac users who have a copy of MS Office. Most others will not. Source: http://typophile.com/node/71284
-
contact form not working......
Sorry - that's a lot of code to read through. Which bit's not working? Could you post any error messages or tell me what is happening differently from what you expect?
-
contact form not working......
form id="form" method="post" What script handles the form? You need to specify in an action. Eg: form action="contact-form.php" id="form" method="post"
-
PHP Switch/Case and the Dreaded Unclean URLs
Thanks goes out to BenWalker also, for contributing to solving this issue. Not a problem at all. I've posted functional code that does what you describe using the site structure you posted (and a bit of guesswork as to how you build your p…
-
PHP Switch/Case and the Dreaded Unclean URLs
Here's a zip file anyways: https://dl.dropbox.com/u/2477024/rpotterjr.zip I used a sub-folder rather fiddling with my hosts, so the htaccess file has a line reading: RewriteBase /rpotterjr/ You will either need to unzip the folder to: 127…
-
PHP Switch/Case and the Dreaded Unclean URLs
http://pastebin.com/aWcuKks0 My suggestions seem to be following a theme. If you're still having difficulties, I'm happy to put together a working zip file.
-
PHP Switch/Case and the Dreaded Unclean URLs
By the way, I'm surprised this hasn't come up already... I assume you will have a root variable for your site's root directory (I'll call it "$root"):
-
PHP Switch/Case and the Dreaded Unclean URLs
Could you post your code?
-
PHP Switch/Case and the Dreaded Unclean URLs
You have access to the "$page" variable to test for which page is active in your nav menu. Of course, you could just use "$_GET['page']" each time, but it's less tidy.
-
iMDb - Personal Movies Database webapp - test drive
Try on line 95: if (movies[i].title.search(new RegExp(filter, "i")) > -1) {
-
iMDb - Personal Movies Database webapp - test drive
I think that I answeredyour question about the purpose of this webapp above. You say above what it is, but not why it is: webapp which get info from personal database with collection of movies and gets also info for each one of them from tm…
-
iMDb - Personal Movies Database webapp - test drive
Getting the same problem as @markomarkogame on chrome 27 with the page scrolling to top whenever I click on a title. Not too bad initially. Bit of a pain once scrolled down a long way. I can't imagine anyone having the patience to scroll down …
-
htaccess file is not working on the hosting server
Good lord, well that clarifies everything. If you want help and support, try spending more than 10 seconds responding to people who are actually trying to assist you. It's called manners. With the almost non-existent information you have given…
-
.htaccess AddHandler
Have you tried: AddHandler application/x-httpd-php5 .xml
-
Chris's simple contact form doesn't work
I want to use the mail script as chris's and show a message for success or error after sending mails. I understand that. But you say you have uploaded the scripts onto the server and when you complete the form it gives you the success mess…
-
Chris's simple contact form doesn't work
@AlirezaM Yes, mine is different from yours. That's because I want you to isolate components of the application in order to work out where it is going wrong. The script I posted uses the mail() function and some variables and nothing else. If…
-
Chris's simple contact form doesn't work
If PHP were not installed, I doubt the application would appear correctly. He'd see php tags, for a start, and probably wouldn't see a "The message has been sent successfully" message.
-
MODX deserves more "buzz"
Thanks for your response. Indeed many of your problems have been fixed... Settings and docs are a lot better now. To be honest, this was the main reason why I gave up, so it's nice to know they've been resolved. I probably won't …
-
Chris's simple contact form doesn't work
Does PHP's mail() work correctly?
-
MODX deserves more "buzz"
I used MODX just over a year ago and ultimately moved (at the time) to GetSimple CMS. Nowadays I would probably use Kirby instead. I also use Wordpress for larger sites that multiple people edit. My experience of MODX was that the template syntax w…
-
Chris's simple contact form doesn't work
Simple questions, but important: What type of server are you running it on? (Apache, windows?) Are you running it on a "live" server, or from a personal (local) installation? Are you sure you are not sending emails? If you are on apache…