I'm setting up my old computer (Win 98) for my mom to use the internet however I cannot get any program that accesses the internet to work. I can make a DSL connection no problem and it shows ul/dl activity however when I run IE for instance, I get a "Cannot find server" error no matter what URL...
I'm setting up my old computer (Win 98) for my mom to use the internet however I cannot get any program that accesses the internet to work. I can make a DSL connection no problem and it shows ul/dl activity however when I run IE for instance, I get a "Cannot find server" error no matter what URL...
Toolkit, your second bit of code worked out perfectly... perhaps too perfectly. I think it would have been best to leave out the -ni.bak as there are now tons of index.shtml.bak files throughout the directory tree. How would I go about removing these files automatically?
Thanks again
Jason
Thanks for your reply... I suppose next time I should look in the faq as well as doing a forum search. I tried the code from just below my test domain however it gave me a rather long error.
[vhosts]$ find domain.com -name "index.shtml" | xargs perl -pi.bak -e 's/<!--#exec...
I have a heap of files in a heap of directories that I need to remove a single line of text from. So far the only thing that I can find is the following but its not quite what I'm looking for.
perl -pi.bak -e s/oldstring/newstring/g filename(s)
I need to traverse the entire directory...
hmmm... I'm not sure if I explained it properly. The child window should the focusing rather than the parent window. The parent window is already in focus at the time. When the form is submitted from the parent, on success, the child should then focus.
Thanks for your input.
Jason
I'm having some window focusing problems... here's the steps that I've taken:
I am opening a "contact window" from the parent -
function openFeedbackWindow(thePage) {
feedbackWin=window.open(thePage,'feedback',settings)
}
From that window, the opened file checks to see if the...
A form is being submitted via php on the parent... when the form success message shows on the parent, the existing child window should focus. If for some reason, the user closed the child window, a new one should open.
Thanks for your time :-)
Jason
Well, I guess its not a javascript error per se, it's more of a functional error. Its refreshing an existing child window instead of just focusing it. Here is the code used to open the child
function openFeedbackWindow(thePage) {
feedbackWin=window.open(thePage,'feedback',settings)
}
So...
I have a link in a remote window that will blur itself and focus the opener window. The problem that I'm running into now is checking from the opener to see if the remote window is open so I can focus it. Here's what I have so far but I'm getting errors.
var feedbackWin;
if (!feedbackWin) {...
I can't remember the URL of the site that has instructions on how to fix this problem but I am certain that running the "scanpst" was what I did. After running it, it no longer screws up after a crash.
Jason
Hi Rob... based on your help and some tinker with other people's code as well, the following seems to do the trick.
SELECT p.*, c.coachname, c.hs_url, c.hs_name, IF(co.pid=p.id,1,0) AS is_bookmarked
FROM player p INNER JOIN coach c ON p.hs=c.id LEFT OUTER JOIN co_bookmarks co ON (p.id=co.pid...
Thank you for your response :)
As per your request, here is the slimmed down, basic structure of the 3 tables involved.
CREATE TABLE co_bookmarks (
id tinyint(4) NOT NULL auto_increment,
cid tinyint(4) NOT NULL default '0',
pid tinyint(4) NOT NULL default '0',
KEY id (id)
)
cid...
I have been trying to figure out how to fix this problem for about a month now and have posted on some other websites but haven't had any luck. So if you have any suggestions as to how I might fix the problem, please let me know as it becoming critical. Thanks.
I am working on a program that...
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.