Jump to content

Rommeo

Members
  • Posts

    313
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Rommeo's Achievements

Advanced Member

Advanced Member (4/5)

0

Reputation

  1. Hello, For a project integration I need to give access only to "Test-Robot/2022v11" I was using this code when the test robot's name was just "robot" and it was working fine; RewriteCond %{HTTP_USER_AGENT} !=robot RewriteRule .* - [F,L] This also did not work when the name changed into "Test-Robot" (I guess it's because of the hypen that needs to be escaped?) RewriteCond %{HTTP_USER_AGENT} !=Test-Robot RewriteRule .* - [F,L] Now robot's name is "Test-Robot/2022v11" and I need to write a rule for "starting with Test-Robot" (since the rest "/2022v11" will change), how can I write it? I tried this and no success; RewriteCond %{HTTP_USER_AGENT} !^Test\-Robot/* RewriteRule .* - [F,L] Thank you in advance.
  2. any ideas? I m wondering if this update is up to staff? or there is a program installed to those servers and it automatically updates itself?
  3. Wondering if this update is up to university staff? I mean 2 days have passed and it's so long time for this kind of update. It took 2 hours for my friends in EU. There is a big gap between 2 hours and 2 days.. and unfortunately they say university forbid to use other DNS servers.
  4. I have changed the name servers of one of my domain names. Nowadays I need to use the internet of a university here, inside the university I m not able to reach my website with new settings, it still shows the page that is available in old hosting. Outside the university, where ever I go I m able to reach my website with its new hosting and settings. I have also asked my friends in other countries, they are also able to see the website with its new settings. But inside the university still old page.. what can cause this?
  5. I have textfield for signature in my form, I m checking if the signature was sent ( if(!empty($_POST['signature'])) and if it's not empty I m putting it into the db. The problem is that, I have noticed a greek user has entered something in greek letters, and function could not deal with it and saved it as it is.( DB field supports greek charset ) I just want to allow english and german chars with special chars ( ",',< etc. ) , no other charset like greek. How can I do that? any function for this purpose ?
  6. I was going to. Wanted to say "well your first problem is using GoDaddy" but I held my tongue. But now that the question's answered: Well Little Guy, your first problem is using GoDaddy... I was planning to use godaddy, has just seen this topic.. Which vendor do you recommend?
  7. if I send the harddisk to a firm abroad, it s also not possible to take the filenames back right? no folders and filenames?
  8. @maniacdan : this program looks good, but is it possible to recover folder by folder instead of file by file? it was well organized harddisk..
  9. I really would like you to see the website of the "biggest firm" here. I m not making any assumptions really. I m just saying that I have no option of sending the disk to anywhere, and I m just looking for a way or program for it.
  10. @PaulRyan : Thank you, I m checking the program now @ManiacDan : Have you used that program before? or just found? @Pikachu2000 : In the country I m living in there is no such big firms, and I m sure they are giving disks to the interns to fix it..
  11. Dear Friends, I have just formatted the wrong harddisk that keeps all my backups of the websites,databases and userinfos and accounts, personal programs, all my documents, mail backups, e-books, and everything. Actually I was trying to format the usb device, but I did not notice that program asking me to format E: instead of F:, it was just one second. So I m looking for something that ll recover my 2TB harddisk back. I really need good advices. I have heard about the firms that recovers files etc, but I think I can not trust them since my mails, documents,databases keeps personal infos about me and people including money transfers and accounts. Is there any way? any program that can take my harddisk back? ( now harddisk is empty without anything in it and working well) would be glad if you share your experiences also edit : is it possible to restore everything folder by folder? cause it was well organized 2TB hard disk.
  12. Yes, now it works, thanx!
  13. I m trying to get the photos that are not in the list.. and my query is this that is not working ; SELECT * FROM photos WHERE photoname NOT IN ( "one.jpg, two.jpg" ) ORDER BY visited ASC LIMIT 0 , 10 query gives me the 10 photos including one.jpg and two.jpg but weirdly when there is just one photo between the "IN" tags, it works, like; SELECT * FROM photos WHERE photoname NOT IN ( "one.jpg" ) ORDER BY visited ASC LIMIT 0 , 10 What am I missing here? any other keyword do I need to use here? PS : list is comma seperated like one.jpg,two.jpg,three.jpg
  14. I have noticed it, so which function should I use to check if file was sent ?
  15. <?php $valueempty = empty($_FILES['image']) if($valueempty) { // code here } // and I have used like this seperately : $valueisset = isset($_FILES['image']); if($valueisset) { // code here } // did not send any file via form print "A:".$valueempty print "B:".$valueisset ?> output : A : B : 1 ( isset seems correct, but even I send file it gives me 1 )
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.