This should work.
RewriteEngine On # Turn on the rewriting engine
RewriteRule /sites/en_US/about/newsroom/([0-9]+)/([0-9]+) sites/en_US/about/newsroom?year=$1&month=$2 [L]
M. Brooks
http://mbrooks.info
I spoke too soon! The site works properly in Firefox and IE but in Safari on the iPad, the pages are not scrollable so I can see only the portion that fits the screen."
This is due to a known issue specific to the iPad. Adding the following CSS attributes should resolve the issue...
This should work for you. You just need to configure CRON to execute this every couple minutes.
https://github.com/nuxy/linux-sh-archive/blob/master/cron/disk-monitor.sh
M. Brooks
http://mbrooks.info
There is an easier way to achieve what you are looking for. The jQuery plugin allows you to create unlimited menus/sub-menus with very little work involved.
http://www.github.com/nuxy/EZ-Menu
M. Brooks
http://mbrooks.info
I tested your code in the latest versions of Firefox and Chrome and the only changes required are the addition/updating of CSS attributes (see below).
html, body {
height 100%;
}
iframe#main {
overflow-y: auto;
overflow: -moz-scrollbars-vertical;
height: 100%;
}
Outside of...
Based on what you described I think this is what you are looking for. Let me know if this works for you.
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(subdomainA\.domain\.com)$ [NC]
RewriteRule ^(.*)$ /folderA/$1 [L]
RewriteCond %{HTTP_HOST} ^(subdomainB\.domain\.com)$ [NC]
RewriteRule ^(.*)$...
..or you can save yourself the grief of having to deal with HTML and generate your table using nothing more than JSON.
Supports row/column level callbacks, column sorting, checkboxes, and much more.
https://www.github.com/nuxy/Tidy-Table
M. Brooks
http://mbrooks.info
Save yourself the pain and frustration and just use a library to do this. You can create a dynamic HTML form from a JSON object that includes support for AJAX/POST methods and form field validation using Regular Expressions. It cannot get any easier than this. Full IE7 support too...
You can set-up each widget to either float freely or you can lock them into a specific position.
A demo of use can be accessed below.
http://mbrooks.info/widgets
M. Brooks
http://mbrooks.info
For those of you that might actually find this useful.
Gratis Widget Toolkit
A web-based widget toolkit that creates customizable objects which can load content from any web-based application using asynchronous requests. Widgets work like miniature windows. They can be moved, shaded, locked...
Here you go.
<?php
// Make a MySQL Connection
mysql_connect("localhost", "usrname", "pwd") or die(mysql_error());
mysql_select_db("phpstorelocator") or die(mysql_error());
// Create a MySQL tables in the selected database
mysql_query("CREATE TABLE `slstate` (
`stateID` int(10) unsigned NOT...
If you have an account access to the database, on the command-line do
Create a new database
$ mysqladmin -u <user> -p create <database>
Import the database from file
$ mysql -u <user> -p <database> < <filename>
M. Brooks
http://mbrooks.info
1) Add this to your sendmail.mc
define(`confCW_FILE', `-o /etc/mail/local-host-names')dnl
FEATURE(masquerade_envelope)dnl
2) Rebuild the file
% m4 /etc/mail/sendmail.mc > /etc/mail/sendmail.cf
3) Create a file called /etc/mail/local-host-names and add the domain names you want to masquerade...
You need at least one IP address. Whether you purchase it from provider or use your home routers external IP address. You will have to use something. But keep in mind that Apache requires a single IP address when Virtual Hosting and multiple if you plan to use unique SSL certificates for each...
1. Create a directory in your cgi-bin called lib.
2. Please the MIME directory in this directory.
3. Add the following lines in your perl script.
use lib qw( ./lib );
use MIME::Lite;
This should work if done correctly.
M. Brooks
http://mbrooks.info
The user account on the remote server must have the proper permission to do so. Since the package is MIME::Lite, you will not have to compile.
Just move the directory MIME-Lite-x.x.x/lib/MIME to be local to your application and use the use lib pragma.
M. Brooks
http://mbrooks.info
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.