
filoaman
Members-
Posts
41 -
Joined
-
Last visited
Everything posted by filoaman
-
@ mac_gyver Thank you for your answer. Everything is clear now...
-
I'm referring to WEB BROWSER!!!!!!! I have a small script on my server (on the internet - on the cloud) and i'm trying to run the script from a WEB BROWSER!
-
Thank you for your answers. @requinix No. I try to check the file size and i get error: "filesize(): stat failed" I try to run a script on my server from a browser, so maybe the problem is what i thought in the first place. I read somewhere that browsers block the access on local files, when you try to access them from a remote server (the internet) @gizmola As i mention above i try to run the script located on my internet server via a browser. I don't run the script on my computer so the source you mention in not relevant in my case.
-
I try forward slashes with no success. here is line of code where i get the error ftp_put($ftp_conn,'fileNameOnServer.txt', 'D:/directory/fileName.txt', FTP_ASCII );
-
Hi. I'm trying to create a small script for personal use. The scope is to upload automatically a certain txt file from my PC hard drive to my server (in a certain directory) every time the script is running. I try different ways (ftp upload using "ftp_put" command, trying to "get_file_contents", etc.) but i always have the same problem: the error i get is that "No such file or directory". This error is about the file on my local PC hard drive. I know that most browser for security reasons doesn't allow access to files from local PC hard drive. Is this the reason i fail miserably or there is a mistake when a declare the local (PC hard drive) path. Until now i try: c:\directory\subdurectory\filename.txt c:/directory/subdurectory/filename.txt file:///c:\directory\subdurectory\filename.txt file:///c:/directory/subdurectory/filename.txt every time without succes. Any ideas? Thank you in advance
-
Exctract line brakes from text file to array
filoaman replied to filoaman's topic in PHP Coding Help
Hi Ch0cu3r Thank you for the interest Since i'm not an experince coder, the only way to handle and modify the original text, in arrange all his elemnts on an array. After your help yesterday, now my script works perfect and i'm able to do every modification i want! I just wonder if there was a way to add this "icing on the cake" for aesthetic reasons. In any case this is a script for personal use and if what i'm looking for is complex, or impossible i can live without this... For a moment i thougth to replace the "\n" of text with an html code spipet (something like "<br />") but every trick i try doesn't work... -
Hello coders I have a text in a file in my server, it looks like this: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam congue quam dui, id pulvinar lacus congue et. Cras ac sollicitudin leo. Vestibulum et quam at dui imperdiet suscipit. Sed varius, lacus ac mattis finibus, lorem odio volutpat nibh, iaculis elementum tellus enim in quam. Duis eget magna et justo congue molestie. Pellentesque sit amet convallis erat. Ut dapibus ante lobortis fringilla porttitor. Mauris tincidunt tristique accumsan. Vivamus a vehicula ligula. Vivamus vestibulum tincidunt quam ornare gravida. Mauris suscipit ultrices viverra. Proin sed gravida nibh. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aliquam erat volutpat. I can extract every element of the text and assign it to an array, in order to reconstrut the text lates as it is. The only thing i can't extract is the line brake. Is there a way to extract line brakes from the text and add them to my array? Thank you in advance
-
Complex (?) explode data from a string to array
filoaman replied to filoaman's topic in PHP Coding Help
Yes it works fine now even with UTF8 characters! Thank you Ch0cu3r, i was on dead end... -
Complex (?) explode data from a string to array
filoaman replied to filoaman's topic in PHP Coding Help
Yes it works fine. Thank you Ch0cu3r The problem is that many of the strings i'd like to explode contain UTF-8 characters and in this case doesn't work correctly. If i try, for example to explode a string like this $string="This is, the text of my Investigação String!!! Contain ocasião numbers like 200 and other items like %."; doesn't work correctly. I search for a solution and the only one i can find was to add a (*UTF8) before the regex, but unfortunately without succes... Any ideas? -
Hi coders I have a string contain simple text, numbers and "special characters" (e.g. commas, points, quotes etc.) $string="This is, the text of my String!!! Contain numbers like 200 and other items like %."; What i'd like to do is explode in array like this $elements=array('This', 'is', ''', 'the', 'text', 'of', 'my', 'String','!', '!, '!', 'Contain', 'numbers', 'like', '200', 'and', 'other', 'items', 'like', '%', '.'); I try several methods and i explode some of the elemnts like whole words, or words and numbes but i'm unable to find a way to explode the "special characters' the way i like. Any ideas? Thank you in advance
-
That would be great! Thank you for your interest
-
Thank you for your answer jazzman1. I already read about cron in other threads of this forum (also in other sources) but i'm not familiar with this and i have to spend sometime learn more about it. For now, finally i have the a solution (complicate but stable) and everything works OK. My script run more than 48 hours without problem, i get the result i want and the webmaster of the remote server happy (i hope so...0) since the script doesn't visit the server more than 25 times every 15 minutes.
-
shared server
-
Did i mention somewhere that i plan to thief data? How did you conclude that?
-
Nothing fancy... There is a website where 600 pages (almost) constantly change. There is no API and i need to collect data from this 600 web pages at least 4 times every day in order to feed with data my application. I don't like the idea to scrape the data at once (my script can do that in a few seconds...) since the remote web site will ban my IP I prefer to scrape the data in a slower way. So i'm looking for a way to pause my script for at least 2-5 minutes after scrape data from 25-50 pages. This way i hope to avoid the IP ban from remote site. I already find a way using "set_time_limit" function, but until now my script is not very stable and some times i get errors and i have to restart the script manually.
-
Banned from where? This forum (phpfreaks) or from the Remote server i try to get the data?
-
Hi I working a script which will get the contents of html files from a remote server. Then will store part of the data in an array for future use. I plan to use a loop in order to get the contents for all the files i want, but i have a problem and i need some help. If I execute the script at once, i'm sure that my IP will get banned from the remote server. I plan to get contents from more than 600 web pages in the same server, so remote server will ban my IP for sure. The only solution i can think is add a delay between each loop step. In other words tell to the script get the data for web page 1, store them in the array, wait some seconds and the start all over again for web page 2 etc. etc. I try "sleep: function but without success. Any ideas? Thank you
-
OK - I just realize what happen! As vinny42 mention the code works. The problem was that i originally create the "$itemsToSearch" array from data posted from a form. So at the end of every "item" there was a brake line (\r). Although I echo the "items" on screen, it was impossible to see the line brake! So although the array_search works perfect, can't find the "item\r" on "$ArrayToSearchIn" array. Since the last "item" was entered in the "$itemsToSearch" array from the post form without (\r) brake, that's why i was able to get the $key only for the last "item"! I clear the entries using this little line of code: $searchTerm=str_replace("\r", '', $searchTerm); and now everythig is fine! Thank you for your help and you feedback!
-
@vinny42 Assume that the syntax errors are i forgot to add the ";" symbol at the end of my original array declaration $itemsToSearch=array("item1","item2","item3"); // An array with the tems I like to search $ArrayToSearchIn=array("item1","item2","item3","item5","item5","item6"); // Here is that array I try to execute the search $i=0; while ($i<3){ $searchTerm=$itemsToSearch[$i]; $key=array_search($searchTerm, $ArrayToSearchIn); print $key."<br>"; $i++; } Are there any other syntax errors? The original code is almost identical. I only change the names of the variables in order to make things more clear for the users to help. You mention that, apart from the syntax errors, you get the result i want to get using this code. Is that true?
-
Hi I'm trying to use array_search in a loop without success. i will appreciate any feed back. here is mu code: $itemsToSearch=array("item1","item2","item3") // An array with the tems I like to search $ArrayToSearchIn=array("item1","item2","item3","item5","item5","item6") // Here is that array I try to execute the search $i=0; while ($i<3){ $searchTerm=$itemsToSearch[$i]; $key=array_search($searchTerm, $ArrayToSearchIn); print $key."<br>"; $i++; } Now what i get as result is something like this: <br> (an empty line with line brake) <br> (an empty line with line brake) 2 (the key number ONLY for the third item "item3" or "$itemsToSearch[2]") I was expecting something like this: 0 (the key number for the first item "item1" or "$itemsToSearch[0]") 1 (the key number for the second item "item2" or "$itemsToSearch[1]") 2 (the key number for the first third "item3" or "$itemsToSearch[2]") What is wrong with my code? Any ideas? Thanks in advance
-
Replace utf8 character in a certain position of a string
filoaman replied to filoaman's topic in PHP Coding Help
Yes, this do the job! I search for an on-line source to check the byte length of all my utf8 characters i like to replace (thanks goad all of them are 2 bytes, so i don't have to make different routine for every character) and the problem solved. Thank's kicken. -
Replace utf8 character in a certain position of a string
filoaman replied to filoaman's topic in PHP Coding Help
This will replace ALL characters. i only want to replace CERTAIN characters in certain positions of the sting, not all the characters. -
Replace utf8 character in a certain position of a string
filoaman replied to filoaman's topic in PHP Coding Help
Thank you for your answer. I read the material but really i can't find how this can solve my problem. The material is about "conv" function which "Convert string to requested character encoding". In my case i don't want to convert the encoding, i just want to replace a certain character of a string. Do i need to convert the encoding? -
I have a utf8 string and I'm trying to replace some of the utf8 charachters with equivalent "plain latin characters" in certain positions of the string. In this test i try to replace the first " î " character with " i ". I found that the position in the string for the utf8 chracter i like to replace is 2. So i excecute substr_replace but i get a strange result. Here is the code: $str="Thîs îs ã ütf8 strîng"; // try to replace the first " î " (position #2) $str = substr_replace($str, "i", 2, 1); // i get this "Thi�s îs ã ütf8 strîng Any ideas? Thanks in advance.
-
Yes, finally the problem was that my "$string" search term wasn't UTF-8. I make the mistake to use (i really can't remember why... ) this expression: "htmlentities($foo);" when i originally imported my data to mySql. So although on the screen when i was using the "print" or "echo" command i was able to see the search term with UTF-8 appearance actually the data wasn't real UTF-8. I use a small function to recognize the encoding of my "$string" search term and i realize that it wasn't UTF-8. I search the database and i realize that the data inside the database wasn't UTF-8 also. So i modify the code on the mySql insertion removing the "htmlentities" and the data inserted on the mySql as UTF-8! The script works just fine now! Thank you.