Cleveland Nightlife Forum Index
    
Calendar

Post new topic   Reply to topic Where did the event calendar go?
Goto page Previous  1, 2, 3  Next
Cleveland Nightlife Forum Index : Suggestions, Support, and Bug Reports
View previous topic : View next topic
Posted by: Random(seed) Reply with quote Add User to Ignore List
 Level 3 Dungeon Master
Posted: Wed Apr 26, 2006 10:53 am
Joined: 05 Feb 2006  Posts: 3606
 Post Post subject:

Location: Cleveland
Back to top


Adam Oliveri wrote:
depending on what your host has setup, there might be an option specifically for setting up Cron jobs. PHP should be fine.


I was under the assumption that PHP had to be run with the scripting engine (usualy attached by the web server process). I personaly dont know how to call the php engine to pass it the script to execute with cron but I suppose it should be possible simmilar to calling the perl engine and passing a script in. Is this correct?

_________________
Tek-Know? Website

Re(Vision)
Every Weds @ Annabell's [Ak]

"Minimal house-no is the shit"


 View user's profile Send private message Visit poster's website

Posted by: Tymezup Reply with quote Add User to Ignore List
 Moderator
Posted: Wed Apr 26, 2006 11:22 am
Joined: 01 Feb 2004  Posts: 5295
 Post Post subject:

Location: Cleveland, OH
Back to top


Random(seed) wrote:

I was under the assumption that PHP had to be run with the scripting engine (usualy attached by the web server process).


That was my assumption as well, which makes it all that more difficult. But Lord knows I could be really wrong on that. I can usually find what I need to get php done, but I've not got a lot of experience in the other stuff.

I don't have shell access to the box; but the control panel has a crontab function where you can set up the date and time and input the path to a script.


 View user's profile Send private message Send e-mail Visit poster's website AIM Address ICQ Number

Posted by: Random(seed) Reply with quote Add User to Ignore List
 Level 3 Dungeon Master
Posted: Wed Apr 26, 2006 11:27 am
Joined: 05 Feb 2006  Posts: 3606
 Post Post subject:

Location: Cleveland
Back to top


Doug Burkhart wrote:
Random(seed) wrote:

I was under the assumption that PHP had to be run with the scripting engine (usualy attached by the web server process).


That was my assumption as well, which makes it all that more difficult. But Lord knows I could be really wrong on that. I can usually find what I need to get php done, but I've not got a lot of experience in the other stuff.

I don't have shell access to the box; but the control panel has a crontab function where you can set up the date and time and input the path to a script.


If thats the case I would be 99% sure it would run perl scripts no prob as thats the usual *nix default. Mind you I am a primary Win.NET programmer so Im falling back on my CS Sys admin class knowledge which I attempted to purge out my head after garaduation Wink

_________________
Tek-Know? Website

Re(Vision)
Every Weds @ Annabell's [Ak]

"Minimal house-no is the shit"


 View user's profile Send private message Visit poster's website

Posted by: geeves Reply with quote Add User to Ignore List
 Professional Hipster
Posted: Wed Apr 26, 2006 11:51 am
Joined: 22 Mar 2004  Posts: 499
 Post Post subject:


Back to top


http://www.sitepoint.com/article/introducing-cron

If you're using cPanel:

http://www.webmasterworld.com/forum88/6102.htm
Quote:

php -q /home/serverpath/script/file.php

or

wget -O /dev/null http://www.example.com/somescript.php



http://www.bitfolge.de/pseudocron-en.html

_________________
http://humanaut.net | http://www.innerchild.biz


 View user's profile Send private message Visit poster's website AIM Address

Posted by: Random(seed) Reply with quote Add User to Ignore List
 Level 3 Dungeon Master
Posted: Wed Apr 26, 2006 12:02 pm
Joined: 05 Feb 2006  Posts: 3606
 Post Post subject:

Location: Cleveland
Back to top


Adam Oliveri wrote:
http://www.sitepoint.com/article/introducing-cron

If you're using cPanel:

http://www.webmasterworld.com/forum88/6102.htm
Quote:

php -q /home/serverpath/script/file.php

or

wget -O /dev/null http://www.example.com/somescript.php



http://www.bitfolge.de/pseudocron-en.html


How would wget to the /dev/null execute a script?? That is making no sence to me right now.

_________________
Tek-Know? Website

Re(Vision)
Every Weds @ Annabell's [Ak]

"Minimal house-no is the shit"


 View user's profile Send private message Visit poster's website

Posted by: Archived Reply with quote Add User to Ignore List
 Moderator
Posted: Wed Apr 26, 2006 12:19 pm
Joined: 10 Feb 2004  Posts: 2638
 Post Post subject:

Location: Omnipresence, Ohio
Back to top


Random(seed) wrote:
How would wget to the /dev/null execute a script?? That is making no sence to me right now.


your spelling makes no 'cents'! Wink

i believe that sending the output to /dev/null just discards what's actually retrieved by wget. the important part is that the php script is executed during that retrieval.


 View user's profile Send private message

Posted by: Random(seed) Reply with quote Add User to Ignore List
 Level 3 Dungeon Master
Posted: Wed Apr 26, 2006 12:28 pm
Joined: 05 Feb 2006  Posts: 3606
 Post Post subject:

Location: Cleveland
Back to top


Mark Strauss wrote:
Random(seed) wrote:
How would wget to the /dev/null execute a script?? That is making no sence to me right now.


your spelling makes no 'cents'! Wink

i believe that sending the output to /dev/null just discards what's actually retrieved by wget. the important part is that the php script is executed during that retrieval.


Yea spelling is NOT one of my strong points.
Now why in sam hell would the script get executed during the wget? I guess Im just not sure on how wget does its thing but that seems like a massive security hole.

_________________
Tek-Know? Website

Re(Vision)
Every Weds @ Annabell's [Ak]

"Minimal house-no is the shit"


 View user's profile Send private message Visit poster's website

Posted by: geeves Reply with quote Add User to Ignore List
 Professional Hipster
Posted: Wed Apr 26, 2006 12:46 pm
Joined: 22 Mar 2004  Posts: 499
 Post Post subject:


Back to top


Mark Strauss wrote:
i believe that sending the output to /dev/null just discards what's actually retrieved by wget. the important part is that the php script is executed during that retrieval.


thank you.

Try maybe reading what I link to, sometimes it puts things in context Smile

That's why I included the link instead of just typing out the command.

_________________
http://humanaut.net | http://www.innerchild.biz


 View user's profile Send private message Visit poster's website AIM Address

Posted by: Random(seed) Reply with quote Add User to Ignore List
 Level 3 Dungeon Master
Posted: Wed Apr 26, 2006 12:50 pm
Joined: 05 Feb 2006  Posts: 3606
 Post Post subject:

Location: Cleveland
Back to top


Adam Oliveri wrote:
Mark Strauss wrote:
i believe that sending the output to /dev/null just discards what's actually retrieved by wget. the important part is that the php script is executed during that retrieval.


thank you.

Try maybe reading what I link to, sometimes it puts things in context Smile

That's why I included the link instead of just typing out the command.


Eh I dont care enough about the *nix systems to spend time with it, I already did my time thank you very much. I just thought it was an interesting topic of discussion.

Your so RTFM Wink

_________________
Tek-Know? Website

Re(Vision)
Every Weds @ Annabell's [Ak]

"Minimal house-no is the shit"


 View user's profile Send private message Visit poster's website

Posted by: geeves Reply with quote Add User to Ignore List
 Professional Hipster
Posted: Wed Apr 26, 2006 12:53 pm
Joined: 22 Mar 2004  Posts: 499
 Post Post subject:


Back to top


Random(seed) wrote:
Adam Oliveri wrote:
Mark Strauss wrote:
i believe that sending the output to /dev/null just discards what's actually retrieved by wget. the important part is that the php script is executed during that retrieval.


thank you.

Try maybe reading what I link to, sometimes it puts things in context Smile

That's why I included the link instead of just typing out the command.


Eh I dont care enough about the *nix systems to spend time with it, I already did my time thank you very much. I just thought it was an interesting topic of discussion.

Your so RTFM Wink


Not really, I'm usually, I'll look up what I need to when I need it. But in that one link it did say exactly what the wget /dev/null was for Smile

_________________
http://humanaut.net | http://www.innerchild.biz


 View user's profile Send private message Visit poster's website AIM Address

Posted by: Random(seed) Reply with quote Add User to Ignore List
 Level 3 Dungeon Master
Posted: Wed Apr 26, 2006 1:01 pm
Joined: 05 Feb 2006  Posts: 3606
 Post Post subject:

Location: Cleveland
Back to top


After looking thorough that link it dosent tell you SHIT about whats actually going on. Ok you /dev/null the output duh thats obvious but why/how does wget actully cause the scripting engine to load and to execute at all? Still sounds like a security problem in the making to me. Of cource Im sure im wrong but Im happy to just float along in my little world untill I am corrected. Oh wait I guess if i really want to know Ill just google linux group it and......... GET RTFM as an answer again.

Ill foot to mouth now, Im just sick of nix people and their figure it out your damn self attitude. I was raised on if you dont know something, ASK QUESTIONS.

_________________
Tek-Know? Website

Re(Vision)
Every Weds @ Annabell's [Ak]

"Minimal house-no is the shit"


 View user's profile Send private message Visit poster's website

Posted by: graph Reply with quote Add User to Ignore List
 hublugggggghhhh
Posted: Wed Apr 26, 2006 1:24 pm
Joined: 06 Apr 2004  Posts: 8898
 Post Post subject:

Location: 216/412
Back to top


worst thread ever

_________________


 View user's profile Send private message

Posted by: Random(seed) Reply with quote Add User to Ignore List
 Level 3 Dungeon Master
Posted: Wed Apr 26, 2006 1:26 pm
Joined: 05 Feb 2006  Posts: 3606
 Post Post subject:

Location: Cleveland
Back to top


James [graph] wrote:
worst thread ever


Worst post EVVVVVAAAAAAAAAAAA.

_________________
Tek-Know? Website

Re(Vision)
Every Weds @ Annabell's [Ak]

"Minimal house-no is the shit"


 View user's profile Send private message Visit poster's website

Posted by: Metz Reply with quote Add User to Ignore List
 VIP Line Jumper
Posted: Wed Apr 26, 2006 9:57 pm
Joined: 19 Feb 2004  Posts: 1018
 Post Post subject:

Location: Cleveland, OH
Back to top


ramzi wrote:
D3R3K wrote:

grrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr.

<snip>I know this was done to keep the forums tidy and stop the "bump" posts...


What's wrong with bump posts?

BUMP!


 View user's profile Send private message Send e-mail Visit poster's website

Posted by: Tymezup Reply with quote Add User to Ignore List
 Moderator
Posted: Wed Apr 26, 2006 10:12 pm
Joined: 01 Feb 2004  Posts: 5295
 Post Post subject:

Location: Cleveland, OH
Back to top


Metz wrote:

BUMPS!



 View user's profile Send private message Send e-mail Visit poster's website AIM Address ICQ Number

Posted by: Derek Carney Reply with quote Add User to Ignore List
 I<3CNL
Posted: Thu Apr 27, 2006 3:23 am
Joined: 11 Nov 2004  Posts: 5825
 Post Post subject:

Location: Oakland, California
Back to top


Metz wrote:
ramzi wrote:
D3R3K wrote:

grrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr.

<snip>I know this was done to keep the forums tidy and stop the "bump" posts...


What's wrong with bump posts?

BUMP!


Bumping is cool. I did that sticky-ing to make it easier to see what was going on TONIGHT. They were all lumped at the top. Easy to see what was on tonight's agenda. That's all. With the age of information, comes an overload of information, and sorting and organizing information in a logical manner is the best way to keep us all sane. No?

_________________
blogacide


 View user's profile Send private message Send e-mail Visit poster's website

Posted by: geeves Reply with quote Add User to Ignore List
 Professional Hipster
Posted: Thu Apr 27, 2006 8:57 am
Joined: 22 Mar 2004  Posts: 499
 Post Post subject:


Back to top


Metz wrote:
ramzi wrote:
D3R3K wrote:

grrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr.

<snip>I know this was done to keep the forums tidy and stop the "bump" posts...


What's wrong with bump posts?

BUMP!


My personal opinion is that they're a waste of resources. Especially when the thread poster bumps his/her own post just to get it to the top - repeatedly. Seeing 3 or 4 "bumps" in a row is just tacky.

But forget me, I also think poor grammar and aol-speak tacky and inane as well.

Also, Doug - another performance tune - remove some of those emoticons. The way these are handled :shudder:

For each emoticon, each post is run through the regexp parser. Currently that's 400+ times.

_________________
http://humanaut.net | http://www.innerchild.biz


 View user's profile Send private message Visit poster's website AIM Address

Posted by: Phoenix Reply with quote Add User to Ignore List
 CNL Bigmouth
Posted: Fri May 05, 2006 4:38 pm
Joined: 06 May 2004  Posts: 1751
 Post Post subject:


Back to top


I sure do miss the EVENT CALENDAR. Confused


 View user's profile Send private message Send e-mail

Posted by: ramzi Reply with quote Add User to Ignore List
 Trainspotter
Posted: Tue Jun 20, 2006 4:26 pm
Joined: 20 May 2004  Posts: 315
 Post Post subject:

Location: Cleveland
Back to top


spiderr987 wrote:
I sure do miss the EVENT CALENDAR. Confused


Me too...

R


 View user's profile Send private message Send e-mail Visit poster's website

Posted by: graph Reply with quote Add User to Ignore List
 hublugggggghhhh
Posted: Tue Jun 20, 2006 4:27 pm
Joined: 06 Apr 2004  Posts: 8898
 Post Post subject:

Location: 216/412
Back to top


I have the wahhmbulance on the other line, would you like to speak with it?

_________________


 View user's profile Send private message

Post new topic   Reply to topic
Display posts from previous:   

Page 2 of 3
All times are GMT - 5 Hours
Goto page Previous  1, 2, 3  Next

 
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
You cannot post calendar events in this forum

Cleveland Nightlife topic RSS feed 


Powered by phpBB © 2001, 2005 phpBB Group