web
web
ace6vel Kade moze da se najde dobar free web hosting (subdomain) do 200MB so poddrska na php za strana so php-nuke . mi treba nesto na koe ke raboti FTP file upload preku nekoj programa do sega se sto najdov ne mozam da se konektiram na serverot. koristam filezilla i na 4 razlicni strani napraviv useri i nikoj ne raboti preku programava. Fala odnapred
Mufla Najdof neshto, samo ne gi probav. Imash lista na besplatni hostinzi so PHP i mySQL. Proveri gi. Ako ne pobaraj na google. Google sve znajt [;)][:)] http://www.oinko.net/freephp/
OooOo Ete mufla beshe pobrz, istiot link kje go ostavev i jas :) A za mali pari mozhesh preku Strelec da zemesh hosting.
Strelec acika... ako te bendisuvaat cenite na www.TJ-Hosting.com , kontaktiraj me i lesno kje go reshime toa so CC-to!
ace6vel ok Strelec a cenive se za mesec mislev na hostingot ili... oti ne go razbiram bas eve zemi primer sakam strana so domain i hosting za 2 godini kolku bi me kostalo toa? *hosting bussines plan i domain ".com"
Strelec business plan???:) Ne zezaj, zoshto ti e?:) Vidi ja ovaa strana: http://www.tugjinojabano.com/ Za nejze treba samo 'starter' plan... Iako ima i database i 'menu' teshko preku 60MB! Da, cenite tamu za hosting se za eden mesec ($5.95). Za edna godina domain+hosting (starter plan) bi te chinelo 80 i neshto kanadski dolari! Za dve godini, duplo! Odi na 'add to card' za se' shto sakash i kje vidish na kraj kolku pari bi te chinela odredena kombinacija!
ace6vel ne mi e mene za parite samo vo mk sum i nemam cc kako da go platam toa :) Fala ke vidam do kaj ke dojdam so stranata fala mufla i OooOo
ace6vel ama na toj plan nema MySQL databaza taka? oti jas taka gledam mene mi treba so databaza, sakam da dignam eden portal mambo za toa mi e.a inaku ova ne izleguva skapo okolu 3500den godisno.
Mufla
quote:
Originally posted by Strelec
acika... ako te bendisuvaat cenite na www.TJ-Hosting.com , kontaktiraj me i lesno kje go reshime toa so CC-to!
eftini ceni. Pogodni za nas, od MK :o) Se mislam da zeam. Samo me interesirat..imase neshto problem so PHPto, go sredi?
Strelec Nemashe nikakov problem so PHP-to... Problem togash beshe shto PHP skriptite shto mi gi nudevte bea od dedo Noe :) i ne rabotea na Windows Server 2003... I vi prezentirav tamu novi skripti (prilagodeni za Windows Server 2003)!
Mufla Nevervam da e do win, ali skriptite rabotea na linux :o) Znam ti dadof skripta sho jas ja koristam. Zato prashaf.
Strelec Skriptite veruvam deka rabotele na linux!:) btw, eve gi postovite shto togash vi gi napishav (se odnesuva za ASP skripti shto togash mi gi nudea ozonce i antrax):
quote:
Originally posted by Strelec
Со воведување на Windows Server 2003, Microsoft веќе не нуди поддршка за CDONTS. Оттаму, апликациите кои што употребуваат CDONTS не функционираат на Windows Server 2003, понатаму CDONTS не овозможува да се прати емаил преку "authenticated SMTP"!:(
quote:
Originally posted by Strelec
btw, кога ќе почнете да ги ставате вебсајтовите на Windows Server 2003, вашите скрипти нема да работат... Значи, ако наидете на таков проблем, еве ви СУПЕР скрипта (на пример за форма што содржи: име, ID, емаил адреса, коментар): <%@ LANGUAGE="VBScript" %> <% '*************************** '* ASP FormMail * '- Ovde imate nekolku raboti za menuvanje. --- referers = Array("www.menuvaj.com", "menuvaj.com","localhost") smtpServer = "smtp.menuvaj.com" fromAddr = "menuvaj@menuvaj.com" '- Ovde ja menuvate e-mail adresata i pasvordot od e-mail akauntot needToAuth = True userName = "menuvaj@menuvaj.com" password = "smenipassword" '- Ovde zavrshuva menuvanje na parametrite. --------------------------- Response.Buffer = true errorMsgs = Array() 'Check for form data. if Request.ServerVariables("Content_Length") = 0 then call AddErrorMsg("No form data submitted.") end if 'Check if referer is allowed. if UBound(referers) >= 0 then validReferer = false referer = GetHost(Request.ServerVariables("HTTP_REFERER")) for each host in referers if host = referer then validReferer = true end if next if not validReferer then if referer = "" then call AddErrorMsg("No referer.") else call AddErrorMsg("Invalid referer: '" & referer & "'.") end if end if end if 'Check for the recipients field. if Request.Form("_recipients") = "" then call AddErrorMsg("Missing email recipient.") end if 'Check all recipient email addresses. recipients = Split(Request.Form("_recipients"), ",") for each name in recipients name = Trim(name) if not IsValidEmailAddress(name) then call AddErrorMsg("Invalid email address in recipient list: " & name & ".") end if next recipients = Join(recipients, ",") 'Get replyTo email address from specified field, if given, and check it. name = Trim(Request.Form("_replyToField")) if name <> "" then replyTo = Request.Form(name) else replyTo = Request.Form("_replyTo") end if if replyTo <> "" then if not IsValidEmailAddress(replyTo) then call AddErrorMsg("Invalid email address in reply-to field: " & replyTo & ".") end if end if 'Get subject text. subject = Request.Form("_subject") 'If required fields are specified, check for them. if Request.Form("_requiredFields") <> "" then required = Split(Request.Form("_requiredFields"), ",") for each name in required name = Trim(name) if Left(name, 1) <> "_" and Request.Form(name) = "" then call AddErrorMsg("Missing value for " & name) end if next end if 'If a field order was given, use it. Otherwise use the order the fields were 'received in. str = "" if Request.Form("_fieldOrder") <> "" then fieldOrder = Split(Request.Form("_fieldOrder"), ",") for each name in fieldOrder if str <> "" then str = str & "," end if str = str & Trim(name) next fieldOrder = Split(str, ",") else fieldOrder = FormFieldList() end if 'If there were no errors, build the email note and send it. if UBound(errorMsgs) < 0 then 'Build table of form fields and values. body = "<table border=""0"" cellpadding=""2"" cellspacing=""0"">" & vbCrLf for each name in fieldOrder body = body _ & "<tr valign=""top"">" _ & "<td><b>" & name & ":</b></td>" _ & "<td>" & Request.Form(name) & "</td>" _ & "</tr>" & vbCrLf next body = body & "</table>" & vbCrLf 'Add a table for any requested environmental variables. if Request.Form("_envars") <> "" then body = body _ & "<p> </p>" & vbCrLf _ & "<table border=""0"" cellpadding=""2"" cellspacing=""0"">" & vbCrLf envars = Split(Request.Form("_envars"), ",") for each name in envars name = Trim(name) body = body _ & "<tr valign=""top"">" _ & "<td><b>" & name & ":</b></td>" _ & "<td>" & Request.ServerVariables(name) & "</td>" _ & "</tr>" & vbCrLf next body = body & "</table>" & vbCrLf end if 'Send it. str = SendMail() if str <> "" then AddErrorMsg(str) end if 'Redirect if a URL was given. if Request.Form("_redirect") <> "" then Response.Redirect(Request.Form("_redirect")) end if end if %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <title>Form Mail</title> <style type="text/css"> body { background-color: #ffffff; color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 10pt; } table { border: solid 1px #000000; border-collapse: collapse; } td, th { border: solid 1px #000000; border-collapse: collapse; font-family: Arial, Helvetica, sans-serif; font-size: 10pt; padding: 2px; padding-left: 8px; padding-right: 8px; } th { background-color: #c0c0c0; } .error { color: #c00000; } </style> </head> <body> <% if UBound(errorMsgs) >= 0 then %> <p class="error">Form could not be processed due to the following errors:</p> <ul> <% for each msg in errorMsgs %> <li class="error"><% = msg %></li> <% next %> </ul> <% else %> <table cellpadding="0" cellspacing="0"> <tr> <th colspan="2" valign="bottom"> Thank you, the following information has been sent: </th> </tr> <% for each name in fieldOrder %> <tr valign="top"> <td><b><% = name %></b></td> <td><% = Request.Form(name) %></td> </tr> <% next %> </table> <% end if %> </body> </html> <% '--------------------------------------------------------------------------- ' Subroutines and functions. '--------------------------------------------------------------------------- sub AddErrorMsg(msg) dim n 'Add an error message to the list. n = UBound(errorMsgs) Redim Preserve errorMsgs(n + 1) errorMsgs(n + 1) = msg end sub function GetHost(url) dim i, s GetHost = "" 'Strip down to host or IP address and port number, if any. if Left(url, 7) = "http://" then s = Mid(url, 8) elseif Left(url, 8) = "https://" then s = Mid(url, 9) end if i = InStr(s, "/") if i > 1 then s = Mid(s, 1, i - 1) end if getHost = s end function 'Define the global list of valid TLDs. dim validTlds function IsValidEmailAddress(emailAddr) dim i, localPart, domain, charCode, subdomain, subdomains, tld 'Check for valid syntax in an email address. IsValidEmailAddress = true 'Parse out the local part and the domain. i = InStrRev(emailAddr, "@") if i <= 1 then IsValidEmailAddress = false exit function end if localPart = Left(emailAddr, i - 1) domain = Mid(emailAddr, i + 1) if Len(localPart) < 1 or Len(domain) < 3 then IsValidEmailAddress = false exit function end if 'Check for invalid characters in the local part. for i = 1 to Len(localPart) charCode = Asc(Mid(localPart, i, 1)) if charCode < 32 or charCode >= 127 then IsValidEmailAddress = false exit function end if next 'Check for invalid characters in the domain. domain = LCase(domain) for i = 1 to Len(domain) charCode = Asc(Mid(domain, i, 1)) if not ((charCode >= 97 and charCode <= 122) or (charCode >= 48 and charCode <= 57) or charCode = 45 or charCode = 46) then IsValidEmailAddress = false exit function end if next 'Check each subdomain. subdomains = Split(domain, ".") for each subdomain in subdomains if Len(subdomain) < 1 then IsValidEmailAddress = false exit function end if next 'Last subdomain should be a TDL. tld = subdomains(UBound(subdomains)) if not IsArray(validTlds) then call SetValidTlds() end if for i = LBound(validTlds) to UBound(validTlds) if tld = validTlds(i) then exit function end if next IsValidEmailAddress = false end function sub setValidTlds() 'Load the global list of valid TLDs. validTlds = Array("aero", "biz", "com", "coop", "edu", "gov", "info", "int", "mil", "museum", "name", "net", "org", "pro", _ "ac", "ad", "ae", "af", "ag", "ai", "al", "am", "an", "ao", "aq", "ar", "as", "at", "au", "aw", "az", _ "ba", "bb", "bd", "be", "bf", "bg", "bh", "bi", "bj", "bm", "bn", "bo", "br", "bs", "bt", "bv", "bw", "by", "bz", _ "ca", "cc", "cd", "cf", "cg", "ch", "ci", "ck", "cl", "cm", "cn", "co", "cr", "cu", "cv", "cx", "cy", "cz", _ "de", "dj", "dk", "dm", "do", "dz", "ec", "ee", "eg", "eh", "er", "es", "et", _ "fi", "fj", "fk", "fm", "fo", "fr", _ "ga", "gd", "ge", "gf", "gg", "gh", "gi", "gl", "gm", "gn", "gp", "gq", "gr", "gs", "gt", "gu", "gw", "gy", _ "hk", "hm", "hn", "hr", "ht", "hu", _ "id", "ie", "il", "im", "in", "io", "iq", "ir", "is", "it", _ "je", "jm", "jo", "jp", _ "ke", "kg", "kh", "ki", "km", "kn", "kp", "kr", "kw", "ky", "kz", _ "la", "lb", "lc", "li", "lk", "lr", "ls", "lt", "lu", "lv", "ly", _ "ma", "mc", "md", "mg", "mh", "mk", "ml", "mm", "mn", "mo", "mp", "mq", "mr", "ms", "mt", "mu", "mv", "mw ", "mx", "my", "mz", _ "na", "nc", "ne", "nf", "ng", "ni", "nl", "no", "np", "nr", "nu", "nz", _ "om", _ "pa", "pe", "pf", "pg", "ph", "pk", "pl", "pm", "pn", "pr", "ps", "pt", "pw", "py", _ "qa", _ "re", "ro", "ru", "rw", _ "sa", "sb", "sc", "sd", "se", "sg", "sh", "si", "sj", "sk", "sl", "sm", "sn", "so", "sr", "st", "sv", "sy", "sz", _ "tc", "td", "tf", "tg", "th", "tj", "tk", "tm", "tn", "to", "tp", "tr", "tt", "tv", "tw", "tz", _ "ua", "ug", "uk", "um", "us", "uy", "uz", _ "va", "vc", "ve", "vg", "vi", "vn", "vu", _ "wf", "ws", _ "ye", "yt", "yu", _ "za", "zm", "zw") end sub function FormFieldList() dim str, i, name 'Build an array of form field names ordered as they were received. str = "" for i = 1 to Request.Form.Count for each name in Request.Form if Left(name, 1) <> "_" and Request.Form(name) is Request.Form(i) then if str <> "" then str = str & "," end if str = str & name exit for end if next next FormFieldList = Split(str, ",") end function function SendMail() dim mailObj, cdoMessage, cdoConfig dim addrList 'Send email based on mail component. Uses global variables for parameters 'because there are so many. SendMail = "" 'Send email (CDOSYS version). set cdoMessage = Server.CreateObject("CDO.Message") set cdoConfig = Server.CreateObject("CDO.Configuration") cdoConfig.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2 cdoConfig.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver") = smtpServer if needToAuth then cdoConfig.Fields("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = 1 cdoConfig.Fields("http://schemas.microsoft.com/cdo/configuration/sendusername") = userName cdoConfig.Fields("http://schemas.microsoft.com/cdo/configuration/sendpassword") = password end if cdoConfig.Fields.Update set cdoMessage.Configuration = cdoConfig cdoMessage.From = fromAddr cdoMessage.ReplyTo = replyTo cdoMessage.To = recipients cdoMessage.Subject = subject cdoMessage.HtmlBody = body on error resume next cdoMessage.Send if Err.Number <> 0 then SendMail = "Email send failed: " & Err.Description & "." end if set cdoMessage = Nothing set cdoConfig = Nothing end function %>
А еве и една едноставна форма за истото, па менувајте самите тоа што треба да се менува! <form action="formmail.asp" method="post"> <p> <input name="_recipients" type="hidden" value="menuvaj@menuvaj.com" /> <input name="_requiredFields" type="hidden" value="Name,Customer ID,Email,Comments" /> <input name="_subject" type="hidden" value="Message from web form" /> Name: <input name="Name" type="text" /><br /> Customer ID: <input name="Customer ID" type="text" /><br /> Email Address: <input name="Email" type="text" /><br /> Comments:<br /> <textarea name="Comments" rows=5 cols=50></textarea> <input type="submit" value="Submit" /> <input type="reset" value="Clear" /> </p> </form>
ace6vel Strelec ne mi kaza dali vo starter planot ima sql databaza?
Misticen 200 MB, 2000 денари годишно, пакетот ги вклучува сите "салтанати". Доколку си во МК, можеш да платиш со општа уплатница Примамливо? : ) П.С. Ко аукција ова еј!
Strelec Misticen za ova vednash odi na ban! p.s. Nekoj drug da ne ima poniska cena od mojata???
Strelec sorry, ne sum ti go prochital toj post... starter planot nema SQL, a MS Access ima unlimited... btw, naskoro i starter planot kje vkluchi SQL Server 2000/MySQL!
ace6vel OK uste tato da si dojde i da mi dade pari :))
ace6vel
quote:
Originally posted by Mufla
Najdof neshto, samo ne gi probav. Imash lista na besplatni hostinzi so PHP i mySQL. Proveri gi. Ako ne pobaraj na google. Google sve znajt [;)][:)] http://www.oinko.net/freephp/
btw nisto od ova pa i na google so barav ne raboti so ftp [V] ne mozam da pravam testovi da vidam so e kako e [:(]
Mufla
quote:
Originally posted by ace6vel
quote:
Originally posted by Mufla
Najdof neshto, samo ne gi probav. Imash lista na besplatni hostinzi so PHP i mySQL. Proveri gi. Ako ne pobaraj na google. Google sve znajt [;)][:)] http://www.oinko.net/freephp/
btw nisto od ova pa i na google so barav ne raboti so ftp [V] ne mozam da pravam testovi da vidam so e kako e [:(]
pobaraj AppServ. Vo nego imas i apache i php i mysql (za win e sve). I praj si testoj [;)][:D] edit: http://www.appservnetwork.com/ eve go