След миналия ми пост как безуспешно се борих с ВИВАКОМ, за да ми пуснат една от всички нови услуги, които по принцип би трябвало да работят след като съм на бизнес абонамент, ето къде се намирам в момента:
Reverse DNS – Въпреки че го имаше в интерфейса, операторката ми каза че не предлагали такава услуга, обадих се пак и попаднах на друг оператор, който оправи нещата.
5 Static IP адреса – След около 120 минути и един кашон с обаждания и това вече работи, проблема пак беше с панела просто не излизаха проклетите адреси.
Upload 2 mbit – НЯМА! Няколко пъти се обаждам вече, казаха че ще ми пратят техници или ще го оправят от там, е нищо не направиха.
В интерес на истината, международната връзка е толкова калпава през повечето време, че дори не става за гледане на клипове в YouTube!
На всички ужилени с новоподписани договори честито!
След като минах на новия абонамент. Интернета е малко по-стреснат, но скоростта на ъплоуда естествено е 1 мбит а не обещаните два. При сваляне скороста си е наистина – 12 мбита. Опитвам се да си заявя IP адреси от техния сайт my.contact.bg и ефекта е кръгла нула, не ми излизат IP-та и се обадих в центъра за поддръжка, казаха да си ресетна модема и да пробвам “утре след обед”. Щели да пуснат заявка (или нещо от сорта).
Ден втори (утрето след обед):
Ресетвам си модема, опитвам да заявя адреси, пак същия проблем. Обаждам се на центъра за поддръжка, казват ми да опитам след 2 часа, ресетвам и заявявам IP адреси, ефект никакъв.
Ден трети:
Ресетнах си модема, не мога да го активирам вече няколко пъти… Обадих се чаках 20 минути да ми вдигнат, в този момент модема пак опитваше да се активира и казаха да съм звъннел след като приключи, заговорих ги само и само да ме изчакат 1 минута да видя дали ще тръгне интернета. ТРЪГНА! Помолих ги да изчакат да си заявя адресите наново, отново нищо не стана, казаха ми пак че ще пуснат ticket-а нагоре и да пробвам утре след обед.
Страхотна работа вършат, от 3 дни съм абонат на новата им услуга и съм супер разочарован, а подписах договор за две години. Май ще се обърна към адвокат…
Какъв е Вашия опит?
И сега специално за всички техни клиенти, които са пред нервна криза нека изгледаме тяхната реклама с успокояващата музичка, да отпуснем нервите.
НОВО ДВАЙС’
Ето автоматичния отговор след като им пратих оплакване през онлайн формата:
Здравейте г-н Деян Мотов,
Благодарим Ви, че се свързахте с нас. Вашият сигнал беше получен успешно.
Искаме да Ви уверим, че в момента се работи по него и ние ще се свържем с Вас в срок до 20 работни дни.
Този имейл е автоматичен. Моля, не отговаряйте на него. Ако имате допълнителни въпроси, моля, попълнете контактната форма тук.
С Уважение,
Отдел Обслужване на клиенти
БТК АД
Web site: www.vivacom.bg
I am trying to restore a backup for the last few hours. Mozy client is hanging and doing nothing, can’t restore any of my files. The web restore isn’t helping too. I have these files on another drive, and i’m totally not happy with the service. I do not recommend anyone this service. Sorry guys. They also have a section in their blog scary faces, where they mock up people who lost their files, well that’s what happens if you wait for mozy to restore the files, it doesn’t do it. I liked the whole idea of the service and was an enthusiast about it but now i’m totally the opposite.
Update 10 minutes later
Just received an email that my web backup is ready, and now it’s downloading with a full speed. This is good. Their client though $ucks, because it hangs all the time on my brand new windows 7.
Update 1 hour later
After i downloaded the backup from the web, i have extracted the mozy archive .exe file and then realized i need to decrypt the files too, in the end it turned out about 10% of my files were corrupted no matter that i supplied a correct decryption key. This is ridiculous. I would never use this service again!
Today, Flash Player decided to stop loading videos from any video sharing website correctly. To view a video i must wait until it’s completely loaded and then may be it will run (seems like the longer videos are not working). This bug can’t be fixed even if you uninstall flash player and install it again from adobe’s website. At the end, there’s no fix yet, but i’ll try to find one and share it with you.
Thanks.
P.S. It got fixed by itselft, may be after the reboot, very weird.
Here is a great class i found on the internet for making XML from PHP multi dimensional arrays, it is tested and works like a charm on my server with PHP5. I do not remember the site i found it on.
class ArrayToXML
{
/**
* The main function for converting to an XML document.
* Pass in a multi dimensional array and this recrusively loops through and builds up an XML document.
*
* @param array $data
* @param string $rootNodeName - what you want the root node to be - defaultsto data.
* @param SimpleXMLElement $xml - should only be used recursively
* @return string XML
*/
public static function toXml($data, $rootNodeName = 'data', $xml=null)
{
// turn off compatibility mode as simple xml throws a wobbly if you don't.
if (ini_get('zend.ze1_compatibility_mode') == 1)
{
ini_set ('zend.ze1_compatibility_mode', 0);
}
if ($xml == null)
{
$xml = simplexml_load_string("<?xml version='1.0' encoding='utf-8'?><$rootNodeName />");
}
// loop through the data passed in.
foreach($data as $key => $value)
{
// no numeric keys in our xml please!
if (is_numeric($key))
{
// make string key...
$key = "unknownNode_". (string) $key;
}
// replace anything not alpha numeric
$key = preg_replace('/[^a-z]/i', '', $key);
// if there is another array found recrusively call this function
if (is_array($value))
{
$node = $xml->addChild($key);
// recrusive call.
ArrayToXML::toXml($value, $rootNodeName, $node);
}
else
{
// add single node.
$value = htmlentities($value);
$xml->addChild($key,$value);
}
}
// pass back as string. or simple xml object if you want!
return $xml->asXML();
}
}
So, last days headlines were all about Kanye West, Taylor Swift and Lady Gaga. Here’s one real winner from the VMA’s. This is Katy Perry and sheeeeeee’s a hottie. I think there’s big improvement since last year on the YouTube Live! where she did not looked that good. Well done Katy! What’s up with the new songs? Read more…
Last dAys I’ve been depressed a lot and it really affected my work. As I am a full time coder I do not have a free day. Not that there was a problem to take a day off but I do not do It ever. I work fill I get totally exhausted and then just disappear for a day or two. This is really not the way of doing things. People should take some time for themselves instead of doing like me. So trust me, you shouldn’t work all the time. Rest at least one day in a week.
Hello. Here is my problem, after I spent thousands of dollars for apple hardware this month I just realized I can not download music files to my iPhone without the use of iTunes or froM a web browser. This is totally ridiculous because they are limiting the functionality of the device you buy for really a lot of money. This way they force you to pay for music instead to be able to download if from the internet. I’m not saying I’m a pirat, but there are some free sets from independent artist I like to listen to in my car. I dont like the limitations apple is putting in it’s hardware. How can I make the freaking browser download a file without jailbreaking my iPhone? I even bought a freaking expensive mac with plans to start developing iPhone applications but seems Like apple is killing my enthusiasm. This post is written with my iPhone with the wordress application. Seems like the only good thing in the apple iPhone is the writing and auto correction, as long you use it with the wordpress application.
I am not drinking from now on. Alcoholism isn’t my sport. Yesterday I had a few whiskeys in a bar to relax a little and now whole day I feel like throwing up. This is because of the low quality bullshit they sell for A ton of cash. Later today I’ll post something interesting in the coding section.