mattvot
-
How do you make embedded JSON look pretty?
Thanks Mottie, Does Chili support JSON? Not a great load of documentation with it.
-
[Solved] Can I stop browsers suggesting how to fill an input field?
Cheers, but not quite what I'm lookng for. I need something like an attribute to put in the input field to stop it for all visitors. I figured that it might be a javascript fix, rather than css or php, and that the fact that there is no normal…
-
How do you hide the admin details in a WP sidebar?
function get_the_avatars_with_link_to_authors(){ $authors = get_users_of_blog(); foreach ($authors as $author){ $author_data = get_userdata($author->user_id); $author_nicename = $author_data->user_nicename; …
-
.htaccess custom url with php
Go to the config.php file and change $config['index_page'] = \"index.php\"; to $config['index_page'] = \"\";
-
MySQL offsite?
You can just make the MySQL database accept external commands and then you can use it on the server that doesn't have a database as if it has.
-
Determining if a site is built on Wordpress
could you ask the client how he changes the site's content?
-
Need help constructing a MySQL query.
sorry, my fault. One of the key's meant to be 'value'. But anyway, your code works. thanks SELECT * FROM `table1` LEFT JOIN `table2` ON `table2`.`id` = `table1`.id` WHERE `table1`.`name` = '$name' AND `table2`.`url_key` = …
-
Need help constructing a MySQL query.
all the fields are varchar and I want to be able to select all the values and records in table1 based on the criteria Thanks
-
A load of empty space at the bottom of the page.
Yeh, still working on it. Thanks, I looked at CSS and couldn't find anything with FireBug. I guess the problem will solve itself when I go through and fix the errors.
-
How can I tell how long a PHP script can run + how to extend
Thanks both of you. Yeh, well the first run through of the script will take forever, but it is coded in such a way as when it realises it has parsed the item it is looking at already the script stops that feed and turns to the next one.
-
Can you recommend any good PHP & MYSQL books?
I've got this http://www.amazon.co.uk/exec/obidos/ASIN/1592004946/ it's good and easy to understand, However, it is older than the dummies one. Published in 2004.
-
Use Google-Hosted JavaScript Libraries (…still the Right Way
Could you try running through your plugins and other code to see if it's not one of them causing an error? Everything on the script you provided should work.
-
How can I tell how long a PHP script can run + how to extend
Haha, Well, My client struck a deal with a massive website and is allowed to be a re distributor of all their data. At first the XML feed was too big to process, so I got them to separate them into countries. Now I was able to get my script to do o…
-
If all google sites were gone today, where would you go?
I suppose it's how you use the services that determine what you'll miss. I do agree, YouTube has lower quality, but they do have a HQ option now that seeps to be on par with vimeo, sometimes. But I don't think the USP of YouTube is …
-
User to login into their page...
http://php-login-script.com/ maybe
-
User to login into their page...
so what happens when I find out a user's username and go to: http://www.domain.com/beta/mattvot Am I now logged in without using a password?
-
How to import only the first 10 XML items via HTTP...
thanks for the help :) but simplexml_load_file caches the whole file in the server's RAM, which is the problem
-
User to login into their page...
redirect after logon to your website won't work. the script creates a session which is not transferable. I would say to just have the actual html form's action pointing to the login script on your server.
-
What do you call php variables like this: $this->hello
hmm, That sort of makes sense. Sometimes I see them with a function like: $this->function();
-
Recaptcha help
It seems to me that the file recaptchalib.php does not exsist in the plugin's folder. I suggest you take a look and see if it is there. If it isn't I would reupload the plugin. :)
-
Am I open to attack?
if you wanted to prevent spam from that form try only accepting 1 email every 24 hours from a computer.
-
password-protect-a-website
I think you will need to be more specific. How about a link to the site?
-
Pretty URL problem
Yeh, it's weird. I don't understand .htaccess. It's like you spend all this time learning and then its a waste when, probably, such a small thing is not working, and it could be probably be so simple, nobody covers it in their tuts. A…
-
Pretty URL problem
Hum, I just uploaded the attached file onto my test domain. http://votsikas.com/htaccesshelp/ It works. http://votsikas.com/htaccesshelp/index.php?p=about http://votsikas.com/htaccesshelp/index.php?p=contact http://votsikas.com/htaccesshelp/index…
-
Pretty URL problem
Thanks so much, but it still doesn't work. I understand why your solution should work, but mine does not. I looked at the page you referred from and I looked at the fist option of making both trailing slash and no trailing slash work. I figure …
-
Pretty URL problem
Yeh, that's where I got the idea off of lol. That's fine, site.com/about will work, but not site.com/about/. It's very weird
-
Background image taking to long to load.
@[the cool]ikthius Yep, I have done that. One moment, I'll try it on a different laptop right now. Errm, no problem here. must be my laptop, but if it happens to me it can happen to somebody else. I suppose I'll have to try and make a be…
-
Validation: It's your cross browser compatability friend!
It's a thumbs up from me. 8-)