Forum: eCommerce Sep 7th, 2007 |
| Replies: 0 Views: 1,452 I will need to buy an SSL certificate soon and I have a few questions.
When I create the signing request and purchase the certificate, am I tied to the server that generated the request? Once I... |
Forum: PHP Jul 4th, 2007 |
| Replies: 1 Views: 1,708 I don't see where you are grabbing the submitted data. Normally this would be something like:
$wavName = $_POST['wavName'];
The submitted data may be in $_POST or in $_REQUEST. Try... |
Forum: PHP Jul 4th, 2007 |
| Replies: 2 Views: 1,002 I've used cURL to log into a clients secure site and generate downloads for the clients' customers. Does that answer your question or did I not understand? |
Forum: Existing Scripts Jun 29th, 2007 |
| Replies: 0 Views: 2,807 I'm looking for a way to collect hardware/software information from users that visit a site I'm working on (The user will request this action with full knowledge of what is happening of course). You... |
Forum: PHP May 14th, 2007 |
| Replies: 26 Views: 11,295 I think its great. It's to the point and succinct. It makes it look easy (which it is for the most part). If somebody has a problem, then its a good reason for them to post and everyone can benefit... |
Forum: PHP May 14th, 2007 |
| Replies: 3 Views: 1,104 I think you should consult the php site. Some useful resources:
http://www.php.net/manual/en/tutorial.php
http://www.php.net/manual/en/langref.php
http://www.php.net/manual/en/security.php... |
Forum: PHP May 14th, 2007 |
| Replies: 2 Views: 1,232 For some reason the forum module is redeclaring the <html> and <head> sections of the document. The forum is there, but the browser won't display it because of the html errors. You should probably... |
Forum: Search Engine Optimization May 13th, 2007 |
| Replies: 2 Views: 1,080 I'm writing some copy and the premise is a story about a small business owner. "small business owner" is NOT the keyword phrase I want to optimize the page for, but I find myself using "small... |
Forum: HTML and CSS May 13th, 2007 |
| Replies: 5 Views: 2,760 rariti do as smalldogn says ;)
For more info on the problem check out the following link:
http://developer.mozilla.org/en/docs/Incorrect_MIME_Type_for_CSS_Files |
Forum: Existing Scripts Apr 18th, 2007 |
| Replies: 2 Views: 2,030 That should work without modification to your .htaccess file.
The only thing that might be an issue would be indexing. So if you see a list of files in the directory instead of the page you... |
Forum: HTML and CSS Apr 17th, 2007 |
| Replies: 6 Views: 6,446 Give the table cell you want to scroll an id, then give it a fixed height, and set overlfow to scroll. Should look something like this:
td#id {
height: 400px;
overflow: scroll;
}
I would... |
Forum: Promotion and Marketing Plans Apr 15th, 2007 |
| Replies: 9 Views: 7,444 Dani are you talking about checking the referer or something else? |
Forum: Graphics and Multimedia Apr 14th, 2007 |
| Replies: 2 Views: 1,432 The best way is to use layers. So you would import the image or photo into a photoshop file on a layer. Then make a new layer "above" the image and draw or import the graphics that will create the... |
Forum: PHP Apr 14th, 2007 |
| Replies: 2 Views: 1,369 <input type="submit" value="att1">
and in your php do:
if($_POST['submit'] == "att1") {
do stuff...
} |
Forum: Existing Scripts Apr 12th, 2007 |
| Replies: 1 Views: 1,671 That really depends on how your host has setup the server. Chances are you will need to create an ftp account and install the frontpage extensions for the site you want to work with. |
Forum: HTML and CSS Apr 12th, 2007 |
| Replies: 5 Views: 1,494 You don't want to do that. That would be very annoying and people would not stay on your site. |
Forum: HTML and CSS Apr 12th, 2007 |
| Replies: 3 Views: 1,318 Make sure you read the whole thread:
http://www.daniweb.com/techtalkforums/thread73830.html |
Forum: PHP Apr 12th, 2007 |
| Replies: 4 Views: 1,972 Are you sure the query is returning results? Are the results an array?
print_r($sqlProject); so you know the query looks lik you think it should. Try running that query in phpMyAdmin and see what... |
Forum: Site Layout and Usability Apr 11th, 2007 |
| Replies: 2 Views: 2,502 Yep, Firefox will show it, IE will not. Try removing the doctype declaration and see if IE will show it. Your doctype declaration is invalid. The doctype you probably wanted to use is:
<!DOCTYPE... |
Forum: PHP Apr 11th, 2007 |
| Replies: 7 Views: 1,855 I think it's because the server accepts asp style code tags as php tags, in other words the server is try ing to parse <?xml... ?> as php.
So try this:
<?php echo '<?xml version="1.0"... |
Forum: HTML and CSS Apr 9th, 2007 |
| Replies: 1 Views: 1,095 MySQL is the most widely used and supported database. PostgreSQL is popular as well.
Server-side languages to look into for interfacing your site with your database: PHP, Ruby on Rails, Python.
... |
Forum: PHP Apr 9th, 2007 |
| Replies: 2 Views: 2,828 You need to learn about arrays and loops.
http://www.php.net/manual/en/language.types.array.php
http://www.php.net/manual/en/ref.array.php
... |
Forum: PHP Apr 9th, 2007 |
| Replies: 1 Views: 1,188 It looks like the value of the 'stat_pts' field in the database is zero, or possibly you have the field name wrong. Change it to this and you will be able to figure it out i think:
function... |
Forum: PHP Apr 9th, 2007 |
| Replies: 2 Views: 931 You should post several lines of code before the line mentioned in the error + the line mentioned in the error. If possible post a "complete statement", ie a section of code that is more or less... |
Forum: PHP Apr 5th, 2007 |
| Replies: 3 Views: 9,930 http://us.php.net/manual/en/function.shell-exec.php |
Forum: PHP Apr 2nd, 2007 |
| Replies: 12 Views: 3,049 Make a page for viewing profiles, that won't show anything that is private or allow any edits. This page you can pull the username from the page link.
Then make a seperate page only for editing.... |
Forum: PHP Apr 2nd, 2007 |
| Replies: 12 Views: 3,049 Man I can't believe i missed that echo in the first post. I thought you were in html mode...
You don't want to call your include that way. This is kind of backwards but try it:
... |
Forum: PHP Apr 2nd, 2007 |
| Replies: 21 Views: 8,241 I ran out of time on the other post ;_;
/cakecalendar/
/app/
/config/
/controllers/
/locale/ |
Forum: JavaScript / DHTML / AJAX Apr 2nd, 2007 |
| Replies: 1 Views: 2,793 This doesn't use ASP, but it should give you the client-side info you need.
http://remysharp.com/2007/01/20/auto-populating-select-boxes-using-jquery-ajax/
I highly recommend the JQuery... |
Forum: PHP Apr 2nd, 2007 |
| Replies: 12 Views: 3,049 index.php?page=userinfo?user=$session->username\
should be:
index.php?page=userinfo&user=<?php echo $session->username ?> |
Forum: PHP Apr 2nd, 2007 |
| Replies: 21 Views: 8,241 Huh?? There should only be 1 core.php to edit!
Describe your folder/directory layout for me.
Edit:
Actually, which directory do you want the calendar installed in? I figured out that you are... |
Forum: PHP Apr 1st, 2007 |
| Replies: 21 Views: 8,241 That is a warning, it doesnt necessarily mean the app is broken. As long as you are not in debug mode you won't see that. So edit /cake/app/config/core.php and change:
define('DEBUG', 2); or... |
Forum: PHP Apr 1st, 2007 |
| Replies: 2 Views: 980 echo "Logged in as ".$sesion->username; |
Forum: PHP Apr 1st, 2007 |
| Replies: 21 Views: 8,241 I'm assuming you have uploaded the calendar app.
Ok in /cake/app/sql/ you should find the file cakecalendar.sql. Your host probably has some way to use phpmyadmin via whatever control panel you... |
Forum: PHP Apr 1st, 2007 |
| Replies: 2 Views: 3,379 Does the server you are working on have register_globals = on ? If not (and its more secure if register_globals is off) then you will need to get the $content variable like so:
$Content =... |
Forum: PHP Apr 1st, 2007 |
| Replies: 21 Views: 8,241 Edit the file /cake/app/config/core.php and change:
define('DEBUG', 2); or it might be define('DEBUG', 1);
to:
define('DEBUG', 0);
You still need a database, once you have a database ready then... |
Forum: PHP Mar 31st, 2007 |
| Replies: 1 Views: 1,015 The webroot is the top level directory where files will be served to the web. For instance the directory structure may look like this:
/home/accountName/public_html/
In this case only files in... |
Forum: PHP Mar 31st, 2007 |
| Replies: 6 Views: 1,377 What is in the /dimensional-letters/metal/ directory? |
Forum: PHP Mar 31st, 2007 |
| Replies: 6 Views: 1,377 Look for a .htaccess file in the top directory and as long as there doesn't appear to be any passwords or other info to keep private, post it here. It may give some clues as to what's happening. |
Forum: PHP Mar 31st, 2007 |
| Replies: 21 Views: 8,241 Ok. Find the file called bootstrap.php. It should be in app/config/bootstrap.php. Now edit bootstrap.php and add the following code:
$modelPaths =... |