is there any way that i can get like a script or something for site subscription member service, to put on my site, for free?
na lol. im looking to make a subscription service for my site, so people have to be members to view certain stuff (dont worry itz not a porno site)
You didn't specify what is available on your server, so will start you with PHP & Perl. Other scripting languages are also available at that web site. <a HREF="http://www.hotscripts.com/PHP/Scripts_and_Programs/User_Authentication/index.html">User Authentication </a> <a HREF="http://www.hotscripts.com/CGI_and_Perl/Scripts_and_Programs/User_Management/index.html">User Management</a>
i installed the second one of the list, clicked on the thing that you need to do to install and it said Execution of (members/Makefile.PL) is not permitted for the following reason: Script is not executable. Issue 'chmod 755 filename' Server Data: Server Administrator/Contact: support@powweb.com Server Name: hoopscentral.net Server Port: 80 Server Protocol: HTTP/1.1 Request Data: User Agent/Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705) Request Method: GET Remote Address: --------- Remote Port: 3734 Referring Page: http://hoopscentral.net/members/
this is what my site has Disk Space (Raid Storage) 650 MB Data Transfer/Bandwidth 45 GB/mo. POP3/IMAP Email & SMTP Catch-All Email/Email Forwarding 10 FTP Users (Unlimited FTP Access) CGI-BIN, SSI, .htaccess, Cronjobs Web-Based Email (secure) Member Operations Control Panel Control Panel Web Users 25 PHP4 w/ Zend Optimizer, Perl5, Sendmail FrontPage 98/2000/2002 Ext. Detailed Webstats Report, Raw Log Files Built in osCommerce (Shopping Cart) FREE! Secure Socket Layer (Secure Server) INCLUDED! 24/7 Fast & Responsive Support 7 Days Telephone Support! DNS Control ( A record, Cnames, MX records) MySQL Database INCLUDED! Flash, Shockwave, Midi, Mulitmedia Support No Forced Advertising or Links 99.7% Uptime and Reliablity
You need to make the Perl script: Makefile.pl executable. "755" means it is user, group, and world executable. if you have SSH access, cd into the directory and type `chmod 755 Makefile.pl` Or you can change the permissions within your FTP client, consult your help files in your FTP program for chmod.
CGIWrap encountered an error while attempting to execute this script: Error Message: Exec format error Error Number: 8 This message usually indicates there is a problem with the script itself. Often this indicates either that the #! line of the script is incorrect, or the script was uploaded in binary mode instead of ascii mode. Check to make sure that the script does not have control-M's at the end of every line. That will prevent it from executing. An easy fix that takes care of this most of the time is to put '#!/.../perl --' instead of '#!/.../perl' on the first line of the script. If you are not the owner of this script, please forward this error and the URL that caused it to the script owner. That is often the component in the URL right after /cgiwrap/.
the short version is to make sure any .pl or .cgi file is upload in ascii mode. the longer version: if you haven't edit the top line of the script than the script was uploaded in binary format. you can check by changing into the directory, and typing `./Makefile.pl` if it says file not found although you know for sure its there, then it is in binary mode and needs to be uploaded again in ascii. If you have vim on your system, you can vim -b <filename> to check for the ^M at the end of each line, like this: testing^M testing 123 to get out of vim, its esc,esc (press the ESC key two times) :q! <enter> then reloaded if needed.