Any chance the "error" kicks when hitting the site as http://linealuxe.com and not http://www.linealuxe.com? I can't get it to kick on any browser/platform so just trying to narrow it down.
Type: Posts; User: imagn
Any chance the "error" kicks when hitting the site as http://linealuxe.com and not http://www.linealuxe.com? I can't get it to kick on any browser/platform so just trying to narrow it down.
Sorry I had assumed you were using a database to manage the files/user sessions... If you're using PHP you can force-switch to HTTPS like:
if($_SERVER['HTTPS'] !== 'on') {
header("location:...
Try concatenating the actual variable:
var movieHTML = '<object id="objectVideo" type="application/x-shockwave-flash" data="/add-on/Videos/video_player.swf" width="500" height="360">';...
You might find this link useful as well:
http://www.quirksmode.org/css/condcom.html
Can you include a link to the site in question?
You can also store the files OUTSIDE the public html directory and use a force download script to serve the files a user requests. Using this solution means the only way for a malicious user to view...
What problems are you having with Lightbox? Can you post a link...
Run a search for:
link:http://www.yourwebsite.com/
Are you referring to the eblast portion? If so, there's literally hundreds out there. Our company has used:
iContact
Blue Hornet (Expensive side w/ high volume)
Constant ContactIf I was...
The concept (programming) behind matching appropriate books to recipient is pretty straight forward. I think where you might want to rethink the app is in the actual delivery of the emails. For one,...
Where are the CSS attributes for the nav bar DIV???
No no no no baaad!! Use a 301 redirect via htaccess:
redirect 301 /index.php http://www.website.com/catalog/
I'm becoming the poster boy for this but... you can use mod rewrites to "hide" the URL variable name.
Use something like: mysite.com/page-1/
Then you can set up .htacess to something like:
...
You can also check out:
http://www.webreference.com/tools/browser/javascript.html
There's absolutely no merit the ID "issue" but you can always set the auto_increment value to 100...
As for the mod rewrite checkout my other post...
...
First thing is the ID numbers being 3 digits... 1) If you just add a "0" to those that are only 2 digits you're going to have major problems when they actually reach that length. 2) What's your...
Here's an example of mod rewrite:
RewriteEngine on
RewriteBase /
RewriteRule ^sku-([A-Za-z0-9-]+)\.html$ product-detail.php?sku=$1 [L]
Which means that with a URL like:
Well you'd still need to have something like:
www.mysite.com?page=this-is-a-title
Which doesn't really solve the issue of remove URL variables - though technically better than your old...
I would highly recommend you utilize mod rewrites to change the URL variables into something "friendlier."
This URL:
www.mysite.com/pink-elephants-in-tutus/
Will provide MUCH better...
That's a strange error... I've never encountered that in all the years Lightbox has been available. That being said, look into jQuery and the subsequent plug-in.
...
There's a lot I'd do differently with your DIV layout, but if you simply want the entire layout centered in a browser, then wrap everything within <body> in a DIV with these CSS attributes:
...
Why not just wrap whatever authentication code your using (for valid session) around it...
Can we assume you mean that once they are redirected this login form no longer displays?
As long as the site's are different it doesn't matter who they are registered to or what the IP is.
You're not using the preloaded images correctly.
This doesn't reference the array.
document.getElementById('slide').src = "galleryimages/full" + imageNumber + ".jpg";