the power of the Abyss!

 
Post new topic   Reply to topic    Aprelium Forum Index -> Powered by Abyss
View previous topic :: View next topic  
Author Message
carmondrake
-


Joined: 07 Jun 2005
Posts: 10

PostPosted: Wed Jun 08, 2005 1:21 am    Post subject: the power of the Abyss! Reply with quote

Hello all, jus using abyss as my personal file/cgi toybox I love it its fasst on tha net!! not that i host much for the public as of yet ;)
ip is http://carmon.dyndns.org/
thanks abyss I love ur server! only prob ive had so far is unless i install the server as a service on my win2k the webserver always seems to fail to load apon reboot. any sugestions on getting automatic startup on user loggin to work? ... not that running as a service isint just as good but its nice to see the little blinky icon when its inuse in the tray i like to know when i have guests -=)
thanks Aprelium!
_________________
http://carmon.dyndns.org
Back to top View user's profile Send private message
aprelium
-


Joined: 22 Mar 2002
Posts: 6800

PostPosted: Wed Jun 08, 2005 1:20 pm    Post subject: Re: the power of the Abyss! Reply with quote

carmondrake wrote:

thanks abyss I love ur server! only prob ive had so far is unless i install the server as a service on my win2k the webserver always seems to fail to load apon reboot. any sugestions on getting automatic startup on user loggin to work? ... not that running as a service isint just as good but its nice to see the little blinky icon when its inuse in the tray i like to know when i have guests -=)
thanks Aprelium!


Thanks. Can you please let us know what "fails" means? What is the error message you get?
_________________
Support Team
Aprelium - http://www.aprelium.com
Back to top View user's profile Send private message Send e-mail
carmondrake
-


Joined: 07 Jun 2005
Posts: 10

PostPosted: Thu Jun 09, 2005 12:41 am    Post subject: Reply with quote

It dosent generate any errors at all, but it just never apears in the tray allong with the antivirus & DNS tracker after login. Abbys also never shows up in the process list, thow it does start up if i start it from the programs menu & appears in the processes... awell lol im perfectley happy running the server as a Service, the intigrated consol is verry functional.
oh yess i also had 1 more question for you I just did a php 5.0.4 install using your instructions in help (verry helpfull btw) im a totall new at php & inserting php into pages & ive ben trying to get this really simple counter to work on my page heres a link to the counter [link]http://carmon.dyndns.org/counter2.php[/link]
it works fine by itsself but when i try to include it to a page it never shows up using include to page
<?php include("counter2.php"); ?>
the counter resides in the same directory as the index its made to be on & consists of these lines:
<?php
$viewss = file("counterlog.txt");
$views = $viewss[0]; $views++;
$fp = fopen("counterlog.txt", "w");
fwrite($fp, $views);
fclose($fp);
print $views;
?>
see anything that might confuse the interprater or abbys into ignoring the script? i have 2 counters & both are similar & both never get included
im wondering if my usage of <?php include("counter2.php"); ?> is correct in windows?
_________________
http://carmon.dyndns.org
Back to top View user's profile Send private message
aprelium
-


Joined: 22 Mar 2002
Posts: 6800

PostPosted: Thu Jun 09, 2005 12:26 pm    Post subject: Reply with quote

carmondrake wrote:
It dosent generate any errors at all, but it just never apears in the tray allong with the antivirus & DNS tracker after login. Abbys also never shows up in the process list, thow it does start up if i start it from the programs menu & appears in the processes... awell lol im perfectley happy running the server as a Service, the intigrated consol is verry functional.


If Abyss is run as a system service, it will run in the background (as any system process) and will not show its icon in the tray. System services are meant to run hidden from users. But even if it is running as a service, you can open your browser and type the console URL (for example http://127.0.0.1:9999) to control it.

Quote:

oh yess i also had 1 more question for you I just did a php 5.0.4 install using your instructions in help (verry helpfull btw) im a totall new at php & inserting php into pages & ive ben trying to get this really simple counter to work on my page heres a link to the counter [link]http://carmon.dyndns.org/counter2.php[/link]
it works fine by itsself but when i try to include it to a page it never shows up using include to page
<?php include("counter2.php"); ?>
the counter resides in the same directory as the index its made to be on & consists of these lines:
<?php
$viewss = file("counterlog.txt");
$views = $viewss[0]; $views++;
$fp = fopen("counterlog.txt", "w");
fwrite($fp, $views);
fclose($fp);
print $views;
?>
see anything that might confuse the interprater or abbys into ignoring the script? i have 2 counters & both are similar & both never get included
im wondering if my usage of <?php include("counter2.php"); ?> is correct in windows?

If you're including that in a .html page, it won't work because HTML pages are not sent to the PHP interpreter. So this include statement will only work in a PHP files (a file which extension is associated with the PHP interpreter).

So can you give us more information about the name of the file(s) where this include is inserted?
_________________
Support Team
Aprelium - http://www.aprelium.com
Back to top View user's profile Send private message Send e-mail
carmondrake
-


Joined: 07 Jun 2005
Posts: 10

PostPosted: Fri Jun 10, 2005 6:34 am    Post subject: ok Reply with quote

So what ur saying is just turn the index into a php ahh yes that works perfectley lol cant belive i diddint try that hehe, solved my problem! thanks verry much!
_________________
http://carmon.dyndns.org
Back to top View user's profile Send private message
briosky
-


Joined: 18 Jun 2005
Posts: 46
Location: Salt Lake City, UT

PostPosted: Mon Jun 27, 2005 2:08 pm    Post subject: Reply with quote

i liked your site !
perhaps design might be improved
nice php tweaks lol
good luck
_________________
Brionews - Everyday Freshnews http://brionews.com
Back to top View user's profile Send private message Visit poster's website MSN Messenger
carmondrake
-


Joined: 07 Jun 2005
Posts: 10

PostPosted: Thu Jun 30, 2005 7:20 pm    Post subject: abyss website Reply with quote

Thanks So much for all your help, i finally finished my website (well for now)
I finally got my tablescript up & running, Check it out! I do have 1 question, in the aprelium faq under adding php to the server, where it talks about Pressing Add in the Associated Extensions table & adding the php value, why dont u also sugest to add html as a value to the next line so u can run php directley off html pages using includes for running counters & such ;) Im preaty newbish at this & i hate reading manuals lol took me an hour to figgure that 1 out =) thanks again Aprelium
! carmon@mindless.com
new improoved layout as aposed to no layout ;) http://carmon.dyndns.org Carmon's Scripty TearDownGrounds...(emerald Triangle)
[/url]
_________________
http://carmon.dyndns.org
Back to top View user's profile Send private message
Arctic
-


Joined: 24 Sep 2004
Posts: 560

PostPosted: Thu Jun 30, 2005 7:54 pm    Post subject: Reply with quote

Just add HTML to be proccessed as PHP...
Back to top View user's profile Send private message ICQ Number
carmondrake
-


Joined: 07 Jun 2005
Posts: 10

PostPosted: Fri Jul 01, 2005 5:52 pm    Post subject: robots Reply with quote

I was reading up on webrobots from the google archives, it turns out most web robots like the google bot wont index fully .php sites because of the fact there dynamicley created (they complain in the faq about ppl using php to dynamicley create hidden everchanging content to spam the robots into false listings) this is why i wanna run the php on the html pages rather than jus a fully php site.
_________________
http://carmon.dyndns.org
Back to top View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Aprelium Forum Index -> Powered by Abyss All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB phpBB Group