473,909 Members | 2,700 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

script help

i installed apache 2.2 on winxp with php5. when i write a piece of
html and include a php or java script in the html i have no problem.
when i file the script and use something like
<script src="script.php "></script>
i get nothing. he finds the file - if i rename it - he complains.
i'm guessing a config param. please help.

Sep 15 '06 #1
5 1428
hoozdiss wrote:
>
i installed apache 2.2 on winxp with php5. when i write a piece of
html and include a php or java script in the html i have no problem.
when i file the script and use something like
<script src="script.php "></script>
i get nothing. he finds the file - if i rename it - he complains.
i'm guessing a config param. please help.
You made two substantial mistakes.

1) If you use the HTML <scripttag you must tell the user agent which
language it is written in.

e.g. <SCRIPT type="text/vbscript"
src="http://someplace.com/progs/vbcalc">

2) The <scripttag is for client side scripting only! The server should
just pass the script to the user agent which should execute it.
If you want to include PHP scripts from a file use

<?php
include("/path/script.php");
?>

Bye!
Sep 15 '06 #2
On Fri, 15 Sep 2006 14:54:48 -0400, hoozdiss <Bi***@msn.comw rote:
>i installed apache 2.2 on winxp with php5. when i write a piece of
html and include a php or java script in the html i have no problem.
when i file the script and use something like
<script src="script.php "></script>
That's specifying a client-side script to run, which is probably not what you
want (unless the PHP script is itself generating Javascript, for example).

You probably want to use require() or similar in a PHP block.

--
Andy Hassall :: an**@andyh.co.u k :: http://www.andyh.co.uk
http://www.andyhsoftware.co.uk/space :: disk and FTP usage analysis tool
Sep 15 '06 #3
i'm trying to run scripts like site counters etc. right now i just
have small test scripts -

</head>

<body>
this is a test
<script type="text/javascript"
src="http://192.168.123.162/test/scriptA.php"></script>
<br>and this<br>
<script src="http://localhost/test/calendar.php"></script>
try this-<br>
<script type="text/javascript" src="scriptJ.js "></script>
<br>
<script type="text/javascript">
document.write( "this part works")
</script>
<br>
try include
<?php
include("script A.php");
?>

etc.
i keep the script files in the same directory as the html-
....Apache2.2\h tdocs\test
if i delete them - there's a msg in the log so he knows they're there.

i don't know about using script type= javasript with php - am i
missing something here? but even the js doesn't work (except the
inline one).


Sep 15 '06 #4
hoozdiss wrote:
i'm trying to run scripts like site counters etc. right now i just
have small test scripts -

</head>

<body>
this is a test
<script type="text/javascript"
src="http://192.168.123.162/test/scriptA.php"></script>
<br>and this<br>
<script src="http://localhost/test/calendar.php"></script>
try this-<br>
<script type="text/javascript" src="scriptJ.js "></script>
<br>
<script type="text/javascript">
document.write( "this part works")
</script>
<br>
try include
<?php
include("script A.php");
?>

etc.
i keep the script files in the same directory as the html-
...Apache2.2\ht docs\test
if i delete them - there's a msg in the log so he knows they're there.

i don't know about using script type= javasript with php - am i
missing something here? but even the js doesn't work (except the
inline one).

There is no difference between using a script tag in PHP and in HTML (as
long as the tags aren't in a PHP block, of course).

First of all try getting it to work in a simple html page. Once you get
it to work there, it will work in this page.

--
=============== ===
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attgl obal.net
=============== ===
Sep 15 '06 #5
god - been working on this all day - finally found it - you can tell
i'm new to this. my apache install was vanilla - i used htdocs for
initial testing then added a test directory under that which is where
i tested the scripts. they didn't work until just now when i added
the test directory and "Options +Includes" to the httpd.conf file.
i really thought that was supposed to trickle down. anyway thanks for
all offers of help.
Sep 15 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
6563
by: dpackwood | last post by:
Hello, I have two different scripts that do pretty much the same thing. The main perl script is on Windows. It runs and in the middle of it, it then calls out another perl script that then should run on a Unix box I have. Both scripts run ok, except for the part when Windows try's to call out the Unix script. I have it set up where the Unix is mapped through a drive letter and can drop stuff into the Unix box. It is going through another...
4
4195
by: hupjack | last post by:
I finally joined the millions of cell phone users out there. I'm the 2nd phone on what is now a family share plan. (Our two cell phones use minutes from a central 400 minute peak time pool.) Looking at the verizon wireless website, minutes used are displayed only as two different totals for our 2 phones. Dialing in from a phones to check remaining minutes, the minutes are presented the same way, broken down by each phone but not...
14
2633
by: Akbar | last post by:
Hey there, Big-time curiosity issue here... Here's the test code (it's not that long)... it's to display a large number of image links with captions, ideally pulled in from an external file (that part's not here -- spotlighting the problem code): --------BEGIN CODE PAGE------------ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
8
4241
by: Johnny Knoxville | last post by:
I've added a favicon to my site (http://lazyape.filetap.com/) which works fine if you add the site to favourites the normal way, but I have some JavaScript code on a couple of pages with a link, which when you click it bookmarks the site (much easier). The favicon is never saved if the site is bookmarked this way. Does anyone have any ideas how to fix this?? This is the code: <script language="JavaScript">
4
1810
by: Derek | last post by:
I have the following script in a page and it gets an error in IE 6. Says something about an invalid argument but the line number doesn't help since I can't see the javascript code when viewing source. I have this script in a popup page where the user selects a user ID (id) and that value is then placed into one of the parent window's form text field called "userId". This script works fine in the latest Mozilla and Mozilla Firefox but...
0
3236
by: ZMan | last post by:
Scenario: This is about debugging server side scripts that make calls to middle-tier business DLLs. The server side scripts are legacy ASP 3.0 pages, and the DLLs are managed DLLs converted/developed with VB.NET. What I want from debugging is to be able to step into the methods in the DLLs called from ASP scripts using Visual Studio .NET. Background: For typical script debugging issues, you can read and follow the two documents on...
9
4925
by: Harry Smith | last post by:
While reading the documentation on IsStartupScriptRegistered, there is a reference to "client startup script" as "Determines if the client startup script is registered with the Page object." What is meant by "Client Start Script"? Thanks, Harry
3
3692
by: Angus | last post by:
I have a web page with a toolbar containing a Save button. The Save button can change contextually to be a Search button in some cases. Hence the button name searchsavechanges. The snippet of html is: <a class="searchsavechanges btn btn3d tbbtn" href="javascript:" style="position:static"> <div id="TBsearchsavechanges">Search</div> </a>
3
1748
by: David | last post by:
On Sun, May 4, 2008 at 4:43 AM, lev <levlozhkin@gmail.comwrote: Hi, I started tidying up the script a bit, but there are some parts I don't understand or look buggy. So I'm forwarding you the version I have so far. Look for the comments with my e-mail address in them for more information. If I have time I'll tidy up the script some more when I have more info about those issues.
1
47527
KevinADC
by: KevinADC | last post by:
Note: You may skip to the end of the article if all you want is the perl code. Introduction Many websites have a form or a link you can use to download a file. You click a form button or click on a link and after a moment or two a file download dialog box pops-up in your web browser and prompts you for some instructions, such as “open” or “save“. I’m going to show you how to do that using a perl script. What You Need Any recent...
0
9879
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
11348
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
11052
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10540
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
8099
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
7249
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5938
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4776
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3359
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.