-
Posts
239 -
Joined
-
Last visited
-
Days Won
7
Everything posted by sylvain
-
[Solved] Could u plz check my contact form and search form
sylvain replied to sylvain's topic in Escalated Requests
I have changed the code in the web search thanks to you. But about the Email Headers https://mxtoolbox.com/Public/Content/EmailHeaders/. I dont see at all in the options "RoundCube" that Plesk have. If i need to set an email to my computer, sorry i did not do it and i wont do. I only access email account trough webpages, not directly by computer. Because directly could be an entrance door to some virus. So i guess some moderator or admin could find the email header by accessing to my account. What i have simply done is fill my self the contact form as any one would do and created some user name, created some subject, creating some fictive email and message. If you have access to my account and you do the simple contact form; after you should notice message sent that it have entered my spams account. Thanks for your time and help. -
[Solved] Could u plz check my contact form and search form
sylvain replied to sylvain's topic in Escalated Requests
I have difficulty to understand your demand for the contact form. Is it the files that have the html codes into that make the contact form? It's some moderators if i remember that helped me trough it many years ago. If you need these files ill be glad to provide but in private. Or maybe some moderator could simply replace the contact form, that look alike to an other contact form mostly the same as i have. Contact form as a box that is named (name) that the user enter the name he/she want, a box named (subject) that is the title of the message, a box that is named (email) that the user enter his/her email adresse. "Upmost important" a image captcha that need to be filled, to not have some robot spams or junks; this to respect heliohost and its servers, similar as the one at my https://sylvain.heliohost.org/contact . The last thing of course is a (send button). Then after pressing the send button, it show an other page into with the indications as: "its possible that messages is not sent correctly, because servers might have problems", " and not sure your gonna have a reply from us". The order of these boxes is not much of importance. But as i say the "captcha" is very important, also the message is just plain text "no attatchments at all". Because i would not like that heliohost and its servers have some problems. The moderators and administrators had done soo much work lately, because of Eddy server and Tommy also and the rest. Simply because i care for each of you Now about my search form, well it was an old search form i have found free made in flash, but i dont think i have the flash ".fla" file anymore. The idea of this form is quite basicly a search form that the user enter in the first box the thing he/she search. After the user choose a search engine from the list, next one of the options (web) (img) (vid). I'm sure you have guessed that web mean (web search) img mean (image search) and you know vid for (video). Next the user click on the button (search) wich make a "_blank" page as if some one would search on one of the search engines. It arrive that the options (web), (img), (vid) does the same search result. Here is the codes at the top before doc html: <?php # give submit button a name # do it only if submit button clicked if ( $_GET[submited] ) { # die if no search engine selected if ( !isset($_GET[u]) ) { die("<p style=\"text-align: center; font-size: 22px;\">Select a search engine</p>"); } $u = $_GET[u]; # strip slashes from query # urlencode query $q = $_GET[q]; $q = urlencode(stripslashes($_GET[q])); /* if other search engines use a name other than q, set them = to $q */ $w = $_GET[w]; #### Google #### if ( $u == "google" && $w == "web") { header("location:https://www.google.com/search?q=$q&gws_rd=ssl"); exit; } if ($u == "google" && $w == "img") { header("location:https://www.google.com/search?q=$q&safe=off&source=lnms&tbm=isch&sa=X&ei"); exit; } if ( $u == "google" && $w == "vid") { header("location:https://www.google.com/search?q=$q&safe=off&tbm=vid&source=lnms&sa"); exit; } ### yahoo ### if ( $u == "yahoo" && $w == "web") { header("location:https://search.yahoo.com/search;_ylt=At_heI5nfkmLUf3jdNcXhVObvZx4?p=$q&toggle=1&cop=mss&ei=UTF-8"); exit; } if ($u == "yahoo" && $w == "img") { header("location:https://images.search.yahoo.com/search/images;_ylt=AwrBT9GcjclUTT0AyBtXNyoA?p=$q&fr=sfp"); exit; } if ($u == "yahoo" && $w == "vid") { header("location:https://video.search.yahoo.com/search/video;_ylt=AwrB8piljclUbUkAqzaJzbkF?p=$q&fr=sfp"); exit; } ### bing ### if ( $u == "bing" && $w == "web") { header("location:http://www.bing.com/search?form=QBLH&q=$q"); exit; } if ($u == "bing" && $w == "img") { header("location:http://www.bing.com/images/search?q=$q"); exit; } if ($u == "bing" && $w == "vid") { header("location:http://www.bing.com/videos/search?q=$q"); exit; } ### Excite ### if ( $u == "excite" && $w == "web") { header("location:http://msxml.excite.com/search/web?q=$q"); exit; } if ($u == "excite" && $w == "img") { header("location:http://msxml.excite.com/search/images?q=$q"); exit; } if ($u == "excite" && $w == "vid") { header("location:http://msxml.excite.com/search/video?q=$q"); exit; } ### Webcrawler ### if ( $u == "webcrawler" && $w == "web") { header("location:http://www.webcrawler.com/search/web?q=$q"); exit; } if ($u == "webcrawler" && $w == "img") { header("location:http://www.webcrawler.com/search/images?q=$q"); exit; } if ($u == "webcrawler" && $w == "vid") { header("location:http://www.webcrawler.com/search/video?q=$q"); exit; } ### Infospace ### if ( $u == "infospace" && $w == "web") { header("location:http://www.infospace.com/search/web?q=$q"); exit; } if ($u == "infospace" && $w == "img") { header("location:http://www.infospace.com/search/images?q=$q"); exit; } if ($u == "infospace" && $w == "vid") { header("location:http://www.infospace.com/search/video?q=$q"); exit; } ### Ask ### if ( $u == "ask" && $w == "web") { header("location:http://www.ask.com/web?q=$q"); exit; } if ($u == "ask" && $w == "img") { header("location:http://www.ask.com/pictures?qsrc=1&o=0&l=dir&q=$q"); exit; } if ($u == "ask" && $w == "vid") { header("location:http://www.ask.com/youtube?qsrc=1&o=0&l=dir&q=$q"); exit; } ### Aol ### if ( $u == "aol" && $w == "web") { header("location:http://search.aol.com/aol/search?s_it=topsearchbox.search&v_t=na&q=$q"); exit; } if ($u == "aol" && $w == "img") { header("location:http://search.aol.com/aol/image?q=$q"); exit; } if ($u == "aol" && $w == "vid") { header("location:http://search.aol.com/aol/video?q=$q"); exit; } ### Youtube ### if ( $u == "youtube" && $w == "web") { header("location:http://www.youtube.com/results?search_query=$q"); exit; } if ($u == "youtube" && $w == "img") { header("location:http://www.youtube.com/results?search_query=$q"); exit; } if ($u == "youtube" && $w == "vid") { header("location:http://www.youtube.com/results?search_query=$q"); exit; } ### Vanbasco ### if ( $u == "vanbasco" && $w == "web") { header("location:http://www.vanbasco.com/search.html?q=$q"); exit; } if ($u == "vanbasco" && $w == "img") { header("location:http://www.vanbasco.com/search.html?q=$q"); exit; } if ($u == "vanbasco" && $w == "vid") { header("location:http://www.vanbasco.com/search.html?q=$q"); exit; } ### sourceforge ### if ( $u == "sourceforge" && $w == "web") { header("location:https://sourceforge.net/directory/?q=$q"); exit; } if ($u == "sourceforge" && $w == "img") { header("location:https://sourceforge.net/directory/?q=$q"); exit; } if ($u == "sourceforge" && $w == "vid") { header("location:https://sourceforge.net/directory/?q=$q"); exit; } ### pxhere ### if ( $u == "pxhere" && $w == "web") { header("location:https://pxhere.com/en/photos?q=$q"); exit; } if ($u == "sourceforge" && $w == "img") { header("location:https://pxhere.com/en/photos?q=$q"); exit; } if ($u == "sourceforge" && $w == "vid") { header("location:https://pxhere.com/en/photos?q=$q"); exit; } } ?> After into the page here is the codes: <P align=center> <div align="center"> <form action="" method="get" name="m" target="_blank"> <TABLE align="center" border=1 cellSpacing=2 cellPadding=1 width=450 background="./images/sylvain_searchbox_bckgrnd03.jpg" height=300> <TBODY> <TR> <TD align=center> <P> <br><br><br><br><br> <input type="text" size="20" name="q" value=""></P> <P><div align=center><select name="u" align="center"><OPTION value="google" class="thestyle" selected>Google Search</OPTION><OPTION value="yahoo">Yahoo Search</OPTION><OPTION value="bing">Bing Search</OPTION><OPTION value="excite">Excite Search</OPTION><OPTION value="webcrawler">Webcrawler Search</OPTION><OPTION value="infospace">Infospace Search</OPTION><OPTION value="ask">Ask Search</OPTION><OPTION value="aol">Aol Search</OPTION><OPTION value="youtube">Youtube Search</OPTION><OPTION value="vanbasco">Vanbasco Karaoke</OPTION><OPTION value="sourceforge">Sourceforge Soft Search</OPTION> <OPTION value="pxhere">PxHere Images "CC0 License"</OPTION> </select></P> </P> <P><INPUT type="radio" name="w" value="web" checked>WEB<INPUT type="radio" name="w" value="img">IMG.<INPUT type="radio" name="w" value="vid">VID.</P> <P><input type="submit" name="submited" value="Submit Search"></P></TD></TR></TBODY></TABLE></form></div></P> I hope it help? Again many thanks. -
Hi id like that some moderator or admin check and test my contact form and search form. Also if the moderator or admin could do changes on it. I'm no expert its very old code that i have found online long time ago, but i think you could check it and fix it. What i have notice. I have simply gone to my contact form with captcha, then i fill my self the form and write some text message; after i enter the captcha and click send. I have gone see my messages after, and i have notice it was in my spam and not in my inbox. I dont mind if it goes in the spam directory, if the system protect the servers its maybe best to leave it that way "i think". The other thing is my old search php form, i dont know what to do at all. Its a form that i have found many years ago, again i'm no expert beside many others. I have simply notice when i go to my search form, there is a text message at the top of the pages writing this (ive copied the message seen); would like if u could fix it because im affraid to do some errors: Warning: Use of undefined constant submited - assumed 'submited' (this will throw an Error in a future version of PHP) in /home/sylvain.heliohost.org/public_html/web-search.php on line 4 Thanks for your time and help. Also thanks for the great work you have done on the servers. I'm glad to still have my url for the peoples that know, and my free personnal website is still there. As you can see by writing you, i'm still with you and glad to be with you. For peoples seeing this public help request message: If peoples want to know a great web hosting place, heliohost.org is a very great place to start; with great peoples that administrate it. Once again many thanks.
-
Ok thanks to let know that its down. I have notice because i cant access. Well i just hope that gonna be able to login, to "keep alive" my free personnal website and heliohost url name. Thanks for your time.
-
Montreal - Quebec
-
I just wanted to share for peoples some softwares that i think that are free and open source for creating webpages. I think its find to put it in the section "other discussion". There is a software named Hugo that create framework for building websites, its said to be free and open source. You can find it at: https://gohugo.io/ There is also the software to create webpages, that is called OpenElement. Its said to be free, with no limitations. You can find it at: https://www.openelement.uk/ Brief i just wanted to share my new discovery, that might help peoples. Brief i just want good things for the peoples. Have a nice day to all.
-
Well its a good thing that it goes to spam. Beside i only accept basic text messages with the captcha contact form. Its a good thing you help me with many things, i dont want that heliohost have any problems. Its nice for the SPF. I also have some projects, as maybe change the complete look of my webpages. Have also other projects. I wonder what wysiwyg free full legal softwares page design i could have? I think OpenElement could be nice (reading some online comments) but not easy i think? Thanks again, i appreciate very much. ?
-
Hi there when i go onto my account on tommy2, i see in my email many spams. Strangely the sender is said to come from as example: abcd@sylvain.heliohost.org, 1234@sylvain.heliohost.org, something@sylvain.heliohost.org (you got the picture). I wonder if some admin could check it, why i have these types of spams. It might help also to help other users of heliohost.org to not have these spams. I simply guess when peoples write me, they write in the contact form as from ......@sylvain.heliohost.org Thanks for your time and help. A+
-
Hi there i dont know if its ok to ask this question here by respect of Helionet. I am from time to time checking some youtube tutorial videos about Scribus, and i cant seem to find out some step by step videos to do what i would like. Maybe you know scribus version 1.4.8 or know someone that know scribus. The thing that i would like is to create some pdf file that can be printed on a 8.5 inch wide by 11 inch lenght paper. The idea i have would be to print 2 pages into one paper page, like if the page printing as panoramic. It's like if one page would be of the height of 8.5 inch and by left to right 5.5 inch (11 inch divided by 2 pages). Some times i even think to divide the 8.5 inch by 11 inch paper size into 4 pages also (so the book is smaller). This to save the amount of paper pages used, to save the amount of ink printed also. If peoples have infos about creating some manuscript for publisher housing. It is important to know how with Scribus for this type of paper size, to know what is the interior zone for the text and images. What would be the margin from each sides of the page (the interior zone) to put the content into? Because if i put the text and images too much near the border of the paper pages, then the images and text is swallowed into the spine of the book (that would not be good). Also what would be the mathematical calculation so that i know that this size of paper page, this size of number of pages ( = equal ) the interior page zone for the text and images. What would be also the size of the book cover (mathematical calculation), thinking about the front cover, the back cover and the thickness of the book? The safe interior zone for the book cover size? There is many questions i have on the subject, but for now its to know the safe zones for the page content. Thanks for your time.
-
Thanks Krydos, i'm glad that you have put my testimonial. Also saying it's been more then 10 years, show to the readers: stability and its a great hosting place beside others. I do hope that it will bring you more donations and encourage donors. Thanks also for the help to renew LetsEncrypt infos (step by step) dont want to make any error or cause some server problems. Just have some basic knowledges about webpage creations. I'm glad that peoples find interresting into my free personnal website. Dont have much time into (work, groceries, etc), but when i can i'll update some links. I have a friend of mine also that i have suggested to create for him maybe some pinball game for his heavy metal rock band called: "call your enemy". I know that he is on youtube and spotify, last month he have took a photo of me with him, his looking for a drummer at this time; have find a guitar basis guy just before. This beside i think to create a free pdf guide "in french" about the software Futurepinball. I have writing to housing publishers, but none have writen me back. Even some book authors havent writen me back. I just have hoped to find some housing publisher in my province. That i dont sign anything, that they pay for the book creation, and that the money to me (dont go to me) but to health organizations as cancer and others. Even for organism that help peoples in the street or peoples that can be evicted because of the rising cost of rent. Brief to help peoples lives. But i'm so discouraged! Because i have no answers from the peoples that i contacted for the french book that i'm building (similar as my english book) on the subject. Well gonna make it available anyway, but would like if some paper book, that it bring money to organism that help lives. Hope that it will bring peoples interrest in the futurepinball software. I hear many times, there are students primary school and some in secondary school; that loose some interrest. It could be great if it reach some schools, would be even funny talk about my french guide on radio; then after the housing publishers try to contact me after. I have forget if you want to simply see a picture of one of my friends with me, he is the singer of the band called: call your enemy. I have made for him a logo, dont know if the heavy metal rock band team will accept it. Here is the link to this picture of him with me: sylvain.heliohost.org/cye Well i try to help peoples of the fiew things and fiew knowledges i have and give free.
-
If you want you could add my "testimonial" on the bottom of the page of Heliohost My testimonial: It's been more then 10 years i'm with Heliohost. The team is fantastic, the services is super; the hosting options are real great. If you have try other hosting places, then have been onto Heliohost; you'll know it's a great place. ?
-
Hi there. I have in my email a message from Letsencrypt that the https certificate gonna end the 24 september. I wonder if there is a simple button writen "renew Letsencrypt" something as that. If there is on what part of plesk (step by step) that i must do. Dont want to do any errors. Or if some admin could check about it and renew it. Thanks for your time. A+
-
I simply want to thank all of you that helped me with my free personal website. It's a nice thing also to have a url https. There is many links that i should update in my website, this when i'll have time. I'm more checking if i had some messages of peoples that write me. Its a good thing the possibility to add something as spam. I wonder if there is some peoples that might have suggestion about free full legal software as openoffice, libreoffice, gimp, inkscape, etc. Maybe gonna add it to my free good software list for peoples. Well i just want good things for peoples. Once again thanks for your time and help. ?
-
Hi there Maybe you have seen like on MSN some banner video that showed some water waves? Maybe you have seen some other video banner? I have done fiew search. Some say you put some video on youtube of some size, that have some time length and some fps (frame per seconds); then you link the banner zone to the youtube video. Some say you create some type of video and put on some other video hosting place. Some say the banner is 600px by 250px heigh, other say 300px by 250px heigh. There are peoples that say the video length is max 30 seconds. There are peoples that say its 24fps, others 30fps max. I would like one day, know how to do theses video banner for my personnal free website; maybe for friends also. But i wonder how to do all free (personnal or commercial use). I think that i'm not the only one that have seen this type of video banner and wonder how it work every steps. Thanks for your time and help.
-
Is there ways to make donations (without) subscribe/have accounts
sylvain replied to sylvain's topic in How You Can Help
No need for me now to do donation, i have some debts to pay. Also i prefer GoFundMe, not PayPal; (maybe i'm not the only one "as zero %") that like GFM. I think there is some other donation third party, that is called (Started/Startup/Starter or Starting) well something like that. I suggest it could possibly when time come, that the donation maybe be called as: PleskHeliohost2022. Much later it could be possibly named: PleskHeliohost2023. It is just some idea for name donation, wonder what you think about it? Having these "suggested" names for donation might also help you organize. Also because of the name donation can help you pin-point the donation. The users could also indicate with some donation number and infos they receive, tell that the donation was for (as example) PleskHeliohost2024; with there donation number and infos they received. A+? -
Is there ways to make donations (without) subscribe/have accounts
sylvain replied to sylvain's topic in How You Can Help
That's great to have other ways for peoples to donate (without) having to create some accounts. Like that the percentage of peoples that want to donate "without" having to create some accounts/subscribe is real neat. So like that if i can again give you some donations, then i will be happy to do so. I do believe that at leas i have donated 3 or maybe 4 time to you and happy to encourage yourself. You are great peoples that i like and appreciate very much! ? -
Is there ways to make donations (without) subscribe/have accounts
sylvain replied to sylvain's topic in How You Can Help
Since you indicate that you often do use GFM for fundraisers. It could be very nice that you simply put some url link to it on https://www.heliohost.org/donate , after the users simply indicate you the infos so you can check the donations made. Id like to know the url to GoFundMe for Heliohost and i'm sure that peoples would like also to know that way also to do donations. It also better because it give more ways for peoples make donations to you. Thanks for your time. A+ -
Hi When i go to https://www.heliohost.org/donate i see options as Paypal and Skrillit When i just for checking "test" point mouse on Paypal i see the link: https://paypal.me/heliohost/ but on Skrillit i see https://www.skrill.com/skrillit/?locale=en-us . So by comparing i see on one hand an url with the word "Heliohost" on the other hand "i dont see the word" (heliohost). Wich at some point could question the peoples that would like to make some donations, because on one hand it is writen "Heliohost" and the other "no url heliohost". Seem that both services require to create or have some account linked to the user money. So if there is some security issue (linked to the company "or" security issue of the users), then some bad intents of some peoples could access the user money. I suggest that you would add some other company to donate, that (dont need create/have accounts) to make some donations. Maybe GoFundMe (dont know how it work) or some others.
-
That's great news. Your the best guys!
-
Well i'm glad that WP has been removed from my account. Would not like that replaced or give some phishing content. I wonder why still peoples use WP?
-
Thanks for uninstalling WordPress. Its strange when i come here or to my hosting, my system detect the url phising and autoblock it. Dont think its my system, this because even VirusTotal say that the url has some virus; so even some external scan not from my self say the same. I dont know what is some blockchain? I even heard on tv something called NFT or NTF something like this. Way too complicated for my head. Beside that i still wonder how to host my own radio player skin on my website. I try to figure it out, so i could create many "muses" radio player skins and change it from time to time. I have some radio player skin that i have designed and done fiew programming that is hosted onto: https://www.muses.org/community-skins . If you want to check my radio player skin, it is at the bottom of the page and the author name is: "Sylvain Heliohost" (this also show that i promote Heliohost and its team). If i would understand how to host it and program to host and see my own skins; it would be nice for my friends. There is many things to do. Think of maybe a new design of the pages with the softwares i have. I'm pretty sure i'll need help with my web search form, this beside my contact form. There is also a friend of mine that has fiew songs on spotify, i'm doing some brainstorming to create for him some vector logo for his heavy metal band. Maybe even create for him a website and discuss with him about it. If you want to listen to his music it is at: https://open.spotify.com/artist/3VKx2lnPWSfE8RBCEIYJPT but i must prevent you, its real heavy metal hard and could be offending; i have told him today face to face i prefer rock less heavy, he appreciated my honesty. Well i try to help many peoples, with my free personnal website and with other good things. I real appreciate all of you you know, it's always important for my self to indicate it. Maybe its not important for you that i give my thanks, but for me its always important. Just by my free personnal website i can help peoples, and do good things for the peoples. I'm not as talented as all of you, but the fiew knowledges i have i use it for good things. ??
-
Hi there Could you please remove WordPress from my account. I again have notice a message about something that is "quarantined". I know that i could click the button remove, but will it do a (clean remove) that i dont know? Some kind of back as it was not installed, just in case if WordPress have made some file modifications. So you can compare with the others accounts, to do a clean uninstallation. Also there is some important thing. I notice that when i enter the forum or the hosting account; my system indicate some url phishing (https://strn.pl) on the website of VirusTotal it also say that there is some virus that come from that. Its maybe something that you have that reach to this url. Thanks for your time. A+
-
Thanks @Krydos for the time and help. It was important for me to report about it. More than 10 years I'm with you. At least you know that my use of the hosting is for good use, also that i simply care. Not only for the hosting, but for each of you that work hard for maintaining. I have figure out how to do some auto signature of the email wanted, it has taken me some time to figure on what to click onto for the signature. Once again, many thanks. ?
-
When i login into Plesk, i then click on "Applications". From it i see (WordPress) and the button "Remove". I then click on "Remove", after what i see is some blank page with the text writen this: {"status":"success"} And the page stay there with this text message and do not return to my main Plesk menu account. I wonder if some admin could "Remove Wordpress" application. I have tryed by clicking the button, and it is still there. If WordPress cause problems i dont want any. Just hoping that it wont cause problems to my free personnal website or what so ever. Thanks for your time and help. ?