English Amiga Board


Go Back   English Amiga Board > News

 
 
Thread Tools
Old 15 May 2010, 11:16   #81
Yesideez
(2b)||!(2b)
 
Yesideez's Avatar
 
Join Date: Mar 2007
Location: Cranbrook, Devon, UK
Age: 50
Posts: 241
If you don't know PHP that kinda explains why you're using frames. I did the same before I learnt PHP because modifying one menu file inside a frame is a lot easier than editing the menu in loads of pages.

If you've got PHP enabled on the web space you can use one of the most basic features - including files.

With plain HTML you can create a site on your computer and play with it until it looks right then upload it but that's not the case with PHP - you need to either install Apache and PHP on your machine (effectively turning it into a server - best to install WAMP or XAMP - Google them!) or upload scripts to your web space for testing (which is what I do)

Imagine this file...
Code:
<html>
<body>
  <div id="menu">loads of HTML here for our menu</div>
  <div id="content">loads of HTML here for our main part</div>
  <div id="footer">some HTML here for our footer</div>
</body>
</html>
Let's call that something like "example.php" - it could end in .html but we're going to split the menu into a new file - "inc-menu.php" so our script is now:

Code:
<html>
<body>
<?php include('inc-menu.php'); ?>
  <div id="content">loads of HTML here for our main part</div>
  <div id="footer">some HTML here for our footer</div>
</body>
</html>
...and in "inc-menu.php" all we have is this:
Code:
  <div id="menu">loads of HTML here for our menu</div>
PHP blocks start with <?php and end in ?>
Upload those two files to your web space and see how the menu file is included in.
Yesideez is offline  
Old 15 May 2010, 13:02   #82
Josh
Lord of Amiga-Manuals
 
Josh's Avatar
 
Join Date: Jan 2007
Location: Kassel / Germany
Age: 53
Posts: 552
@Yesideez:

You have PM ...


Cheers Josh
Josh is offline  
Old 16 May 2010, 23:58   #83
Josh
Lord of Amiga-Manuals
 
Josh's Avatar
 
Join Date: Jan 2007
Location: Kassel / Germany
Age: 53
Posts: 552
Optical update (not finished yet). Hope it is something you like...


Cheers Josh
Josh is offline  
Old 17 May 2010, 00:21   #84
Retro-Nerd
Missile Command Champion
 
Retro-Nerd's Avatar
 
Join Date: Aug 2005
Location: Germany
Age: 52
Posts: 12,436
Nice! Reminds me of an Amigas OS, somehow.
Retro-Nerd is offline  
Old 17 May 2010, 05:27   #85
lost_loven
Registered User
 
Join Date: May 2007
Location: winnipeg
Posts: 358
can't get the amiga 3000 Eng user manual..

http://amiga-manuals.npage.de/index.html

anyone help out? it comes up with a error being damaged..

please.

lost
lost_loven is offline  
Old 17 May 2010, 06:05   #86
zipper
Registered User
 
Join Date: Mar 2004
Location: finland
Posts: 1,837
Same error .
zipper is offline  
Old 17 May 2010, 09:00   #87
Josh
Lord of Amiga-Manuals
 
Josh's Avatar
 
Join Date: Jan 2007
Location: Kassel / Germany
Age: 53
Posts: 552
Maybe your Browsers doesn't do what they should doing... It's working fine.

@lost_loven:
You have copied the link to my page, not the link to the link what should be broken...

Try the direct link:
http://amiga-manuals.xiik.net/hardwa...Manual-ENG.pdf


Cheers Josh

Last edited by Josh; 17 May 2010 at 09:06.
Josh is offline  
Old 17 May 2010, 13:16   #88
lost_loven
Registered User
 
Join Date: May 2007
Location: winnipeg
Posts: 358
hmmm didn't work, i will try again tonight after work on a different computer here,
thank you. maybe its this vista64 or something corrupted on my end.

lost
lost_loven is offline  
Old 17 May 2010, 13:19   #89
TCD
HOL/FTP busy bee
 
TCD's Avatar
 
Join Date: Sep 2006
Location: Germany
Age: 46
Posts: 31,525
Nope, says that the file is corrupted here too. Tried it both with FF and IE.
TCD is offline  
Old 17 May 2010, 16:11   #90
Josh
Lord of Amiga-Manuals
 
Josh's Avatar
 
Join Date: Jan 2007
Location: Kassel / Germany
Age: 53
Posts: 552
Strange... At me it works fine...

Anyone could make further tests?


Cheers Josh

@lost_loven: Please try this link too: http://www..com/file/lo4tqz...Manual-ENG.pdf
Josh is offline  
Old 17 May 2010, 16:21   #91
lilalurl
Global Moderator
 
lilalurl's Avatar
 
Join Date: Aug 2001
Location: France
Posts: 3,289
Send a message via ICQ to lilalurl
I tried the direct link from post #87 and it downloaded and opened fine. Scrolled a bit in the manual and not seen an issue.

FF 3.6.3 and Foxit Reader for PDF.

What do lost_loven and TCD use for PDFs? Acrobat? Browser plug-in?
lilalurl is offline  
Old 17 May 2010, 16:33   #92
zipper
Registered User
 
Join Date: Mar 2004
Location: finland
Posts: 1,837
Mystic, fails at job and at home; winXP, Win7 64; IE8 and Firefox, Adobe Reader 9.3. Perhaps Adobe?....Confirmed; Foxit reads OK.

Last edited by zipper; 17 May 2010 at 16:38.
zipper is offline  
Old 17 May 2010, 16:36   #93
Josh
Lord of Amiga-Manuals
 
Josh's Avatar
 
Join Date: Jan 2007
Location: Kassel / Germany
Age: 53
Posts: 552
Ermm... only for better understanding;

Is it a problem downloading the file or is it a problem reading the file?


Cheers Josh
Josh is offline  
Old 17 May 2010, 16:37   #94
TCD
HOL/FTP busy bee
 
TCD's Avatar
 
Join Date: Sep 2006
Location: Germany
Age: 46
Posts: 31,525
Vista, Adobe 8.22 here.
TCD is offline  
Old 17 May 2010, 17:01   #95
Retro-Nerd
Missile Command Champion
 
Retro-Nerd's Avatar
 
Join Date: Aug 2005
Location: Germany
Age: 52
Posts: 12,436
No problems here with the Foxit Reader, after an JPEG2000 & JBIG update. Which comes automatically.
Retro-Nerd is offline  
Old 17 May 2010, 19:51   #96
zipper
Registered User
 
Join Date: Mar 2004
Location: finland
Posts: 1,837
Quote:
Originally Posted by Josh View Post
Ermm... only for better understanding;
Is it a problem downloading the file or is it a problem reading the file?
Seems to be Adobe reading problem.
zipper is offline  
Old 17 May 2010, 20:20   #97
gulliver
BoingBagged
 
gulliver's Avatar
 
Join Date: Aug 2007
Location: The South of nowhere
Age: 46
Posts: 2,358
@Josh

Excellent work!

You should upload many of these manuals, which arent on your site:

http://amigarealm.whdownload.com/arc...als/index.html


BTW the kickstart eBook on your site seems it is having a dead link.
gulliver is offline  
Old 17 May 2010, 20:29   #98
TCD
HOL/FTP busy bee
 
TCD's Avatar
 
Join Date: Sep 2006
Location: Germany
Age: 46
Posts: 31,525
Quote:
Originally Posted by zipper View Post
Seems to be Adobe reading problem.
Yep. Maybe you could 're'-convert it?
TCD is offline  
Old 17 May 2010, 20:50   #99
Josh
Lord of Amiga-Manuals
 
Josh's Avatar
 
Join Date: Jan 2007
Location: Kassel / Germany
Age: 53
Posts: 552
Quote:
Originally Posted by gulliver View Post
@Josh

Excellent work!

You should upload many of these manuals, which arent on your site:

http://amigarealm.whdownload.com/arc...als/index.html
Thank you. I will see what I can use from there.


Quote:
BTW the kickstart eBook on your site seems it is having a dead link.
Not anymore - fixed again. Thanks for telling! (it was dead, because the link doesn't shows to amiga-manuals.xiik.net...)


Cheers Josh
Josh is offline  
Old 18 May 2010, 02:58   #100
lost_loven
Registered User
 
Join Date: May 2007
Location: winnipeg
Posts: 358
tried with firefox and updated adobe reader to 9.3 and still no go It downloaded fine but still damaged it says,.. download fine. ie can't find the file dns error server can't be found.
lost_loven is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
New Amiga website amigapd Amiga scene 50 20 November 2010 11:34
Link lost to Amiga manual website - not Joshs davideo Amiga websites reviews 6 24 September 2010 00:03
Good Amiga Manual website trackah123 Amiga websites reviews 7 06 May 2010 13:15
Need help with new Amiga website ami_junkie Amiga scene 0 10 December 2008 02:46
Amiga website request!? thinlega request.Apps 0 20 March 2004 16:11

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 10:59.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.34200 seconds with 14 queries