Search:
Type: Posts; User: jeffshead
Search :
Search took 0.01 seconds.
This seems to work OK but it's not exactly what I wanted:
<ifmodule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !^.png [NC]
RewriteCond %{REQUEST_FILENAME} !^.css [NC]...
I have encountered an issue and I don't know how to fix.
When testing this .htaccess, the rewrite takes place if I use Opera version 12.10.
How should I change it so this does not happen?
...
Thank you for your reply :)
I have a typo in my original post. It's not font-size:100%; that's the problem. It's font: inherit;.
I tried your suggestion with font: inherit; but it does not...
Can some of you pros tell me what's the best way to go about fixing CSS conflicts when combining multiple, pre-made templates, scripts etc.?
I have a pre-made website template and I added a PHP...
I edited the file as follows and it seems to work so far:
<ifmodule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !^.png [nc]
RewriteCond %{REQUEST_FILENAME} !^.css [nc]...
I want to redirect all users with outdated browsers to a different site.
I'm currently using the following in a .htaccess file:
<ifmodule mod_rewrite.c>
RewriteEngine on
RewriteCond...
Can you explain in more detail or post example code?
I found a JQuery alternative that seems to work OK with multiple span tags with the same class name.
$(function(){
var count = 10;
countdown = setInterval(function(){
...
The code below works just fine. It replaces the innerHTML of a single span tag named "countDown".
I've tried to edit the code so it adds the countdown numbers to multiple places (span's) on the...
I realize this is an old thread but I just ran into the same problem.
Anyone know how to add a link in the title or comment?
I've tried encoding the URL several different ways.
What I find...
When a user visits the mysite.com/gamelist.php page, the featured games are displayed as in the image below:
http://img153.imageshack.us/img153/9477/clip3v.jpg
But when a user visits another...
That took me forever. I finally got something to work.
I changed Page1 form:
$link = $link."?var1=".$var3."&var2=".md5($var3."text");
header("Location: page2.php?link=".urlencode($link));
To:...
Thank you for taking the time, but I'm still over my head. What seems simple to you is confusing as heck for me. I'm still searching but I haven't found an example of implementing...
Wow! Smoke comes out of ears... need time to process.
I'm limited on how I can do this because it will require rewrite of other code and then I'll really mess things up.
Maybe it would be...
Found a typo in my first post. Too late to edit it though.
Supposed to be:
http://www.mysite.com/page2.php?link=https://www.mysite.com/directory/?var1=whatever1&var2=whatever2
...
I'm trying to pass a URL, with variables, from one page to a second page and the second page will redirect the user to that URL.
Sample URL sent from page1: ...
I made a test file and stripped all of the content out. It performs just as the original page does. Here is the code:
<?php
$timestamp = ( isset($_REQUEST['timestamp']) ) ?...
Didn't work.
The timer count down starts from 1.27 billion seconds until a refresh then it starts from 10. The redirect never happens.
Here is the code:
<?php
session_start();
if...
Thank you for your help criterion9.:)
I'm still not able to get it to work. After the timer page redirects me, the timer is still on zero when I return to the timer page. I have to refresh the...
I tired the edit below, but it did not work:
...
if($timeTilEnd <= 0) {
unset($_SESSION['endOfTimer']);
session_destroy();
}
...
I found a script that puts a JavaScript countdown timer on a web page. The timer uses a PHP session so the timer does not reset until it reaches zero even if the user refreshes the page or leaves and...
Still testing, but adding session_write_close() after the "session stuff" seems to have solved the issue.
Thanks guys!
Thanks criterion9 and Mindzai!
I'll pass your thoughts on to the author and see where that leads.