-
adobe reader "hand tool" grab scrolling capabilities for webpages?
Date: 08/29/05
(Mozilla) Keywords: web
Is there any sort of Firefox extension that allows me to use a hand tool, like the one available when viewing PDF files, while viewing webpages? Like, maybe something that I can toggle on and off? I don't have a scroll wheel on my trackball, and I've found that the way the hand tool scrolls through the pages seems more intuitive to me than using the standard scrollbar.
Thanks. :)
Edit: Someone pointed out Scrollbar Anywhere to me. I've installed it, edited the needed values in about:config, yet it still seems to be doing nothing. Haha. Any info on this?
(crossposted)
Source: http://www.livejournal.com/community/mozilla/312406.html
-
problem with msn messenger
Date: 08/30/05
(Computer Help) Keywords: web, ebay
i've got a little problem with msn. up until last night everything worked fine. i usually use msn explorer as opposed to internet explorer too, and have never had any problems.
so last night i signed in for five minutes, and then signed out, everything's fine. a little while later my brother goes to use it and suddenly it's not working and i'm receiving this pop up: Signing in to MSN Messenger failed because the service is temporarily unavailable. Please try again later. 800b0001.
i tried to sign in a few more times later and i got this message again, along with another pop up that said something along the lines of it being a problem cause by either theirs or my connection.
so i couldn't log into msn explorer, and instead went to internet explorer. which worked, except when signing into hotmail, the main page would show up fine but as soon as i tried to log in, i got a cannot find server page.
the only other site this happened with was eBay. everything else was fine.
we rang our interent providery person and they told us to do a few things, none of which worked. i ended up getting mozilla firefox at the advice of the help person.
so now i can log into hotmail and what not, but msn is still not working. i uninstalled the version we have and installed it again via the website, but it seems to be worse/slower than the old one. gah.
i know of at least one other person this is happening to.
so is it msn that's screwy or is my computer munted?
thanks, Haylor.
Source: http://www.livejournal.com/community/computer_help/477798.html
-
Happy birthday Opera
Date: 08/30/05
(Opera Browser) Keywords: browser, web, hosting
Today is Opera's 10th birthday, and they're hosting an online party.
According to c|net:
For one day only, you can get an ad-free version of Opera. Simply e-mail registerme@opera.com to obtain a registration code. This offer is valid from 12 a.m. Tuesday, August 30 to 12 a.m. Wednesday, August 31 2005 (PDT).
I sent an email but haven't had a reply yet, but I bet they're dealing with a heap of mail today.
Update: Alternatively, just go to their website, register and get the codes immediately.
[Cross-posted to browserfriendly.]
Source: http://www.livejournal.com/community/opera_browser/40212.html
-
Stupid web font followup...
Date: 08/30/05
(WebDesign) Keywords: browser, css, technology, web
So, to continue from yesterday's post about using not-so-safe fonts in browsers, I had a few suggestions to sIFR to use Univers on my company's web site. I want to know how long did it take you all to learn it. Did it take a week to understand it and fully customize it for your needs or just a few days? My company's site needs to be posted by the end of the week and I'm not sure there's enough time for me to learn a new technology. If sIFR is going to take a while, I'll just use Arial and futz with CSS to make it look a little more like Univers.
What say you all? Thanks.
Source: http://www.livejournal.com/community/webdesign/965776.html
-
Site allegedly exposes British secret agents
Date: 08/30/05
(Web Technology) Keywords: web
U.S. man lists 276 alleged MI6 agents on his Web site. The British government is not pleased.
Source: http://news.zdnet.com/Site+allegedly+exposes+British+secret+agents/2100-9588_22-5844524.html?part=rss&tag=feed&subj=zdnn
-
building a webiste.
Date: 08/31/05
(Computer Help) Keywords: java, web
I'm sure this is probably not the place to ask, but I need some help with part of a website I am working on. It's specifically a Java problem. Basically I'm trying to set up several different image rollovers. I've done gotten confused by most tutorials I've seen, so I need step by step help. If anyone can help me or direct me to where I can get help it would be much appreciated.
Source: http://www.livejournal.com/community/computer_help/478308.html
-
Need designers!!!
Date: 08/31/05
(WebDesign) Keywords: web
I am looking for web-designers. A friend of mine and I are starting a design company. I am going to be doing back-ends using SiMX's Target platform (www.simx.com) and she will be securing clients and handling the PR.
We would like to create a library of designers to present to our clients + we need a design for our site (black+gold preferred, but not imperative).
1. If you send us a mock-up design and we choose you, you become one of our primary designers (naturally). We are running on a tight budget so would prefer if this was a free gig that would take exposure as compensation (read on for why this might be worth it).
2. If you send us a mock-up and we don't choose it, but like it, it will be added to our library and you will be called upon if one of our clients likes your work.
3. You are also welcome to send us your portfolio, a link to which would be posted on our site if we like it.
About the venture: I have been working with SiMX on a platform (TARGET) for rapid data-driven web-app development. The competitive edge will be in the speed with which applications will be developed and adjusted to our clients' needs. Statistically, TARGET accelerates development by 3-5 times, but this will increase as the platform evolves. It has already been used to deliver services for companies ranging from small business to Fortune 500 clients. Check out some demos at www.simx.com/simx/home_demos.htm
I am hoping that this venture will turn into an active web-development workshop.
About my partner: she's a Japanese model with, what looks like, pretty extensive connections and good business presence. That combined with the speed with which applications will be developed may be a perfect blend.
Also, if you could recommend good web-design communities/resources for either contacts or designs, I would be greatful.
Please feel free to contact me at nikita@simx.com
Source: http://www.livejournal.com/community/webdesign/967025.html
-
Fetching https with curl
Date: 08/31/05
(PHP Community) Keywords: xml, web
For the past couple of weeks I've used the following code to send post requests via https and receive an XML response:
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_fields);
ob_start();
$responseXML = curl_exec($ch);
ob_end_clean();
curl_close($ch);
This worked great as recently as this afternoon. Then, suddenly, it completely stopped working. At 4:00 it'd post to http or https, and by 5:30 I couldn't get curl to do anything for any https URL. The strangest thing is that I hadn't touched this code at all in the meantime--it'd been working so well that I hadn't needed to.
Unless my webhost did something funky this evening--and I'm still waiting to hear from them about it--I have to assume I caused this, but I have no idea what I did. What could have happened?
Source: http://www.livejournal.com/community/php/340672.html
-
Active Directory and .NET
Date: 08/31/05
(C Sharp) Keywords: database, asp, web
Hi everybody!
I have a question about Active Directory in .NET
For my project I need to fetch results from Active Directory search page by page, because later I would need to bind it to the pageable DataGrid.
I tried to use .NET library DirectoryServices for that, but paging provided by this library is transparent to the user and is used only to increase the efficiency of searching, when results are too big. I.e. I cannot tell the DirectorySearcher to give me first page, then the next or previous page, it returns me all resulting pages in one bundle.
However, what I need is to explicitely get page after page directly from the AD searcher and to be able to go at least one page forward or backward.
The solution with copying all results to the DataBase and then do the paging is not accepeted by the clent, since it is too inefficient. And since it's a Web app, I cannot keep results in memory either.
I found some hints about COM Interface, but I could not find good and detailed examples or explanations.
If somebody could help me out with that problem, any suggestion is welcome, 'cause this issue is eating me alive :)
Thank you!
x-posted in asp_net
Source: http://www.livejournal.com/community/csharp/33805.html
-
Web Forms not submitting on server
Date: 08/31/05
(Asp Dot Net) Keywords: html, asp, web
I have a web form i have build to submit to another page
and it keeps trying to submit to the inital form page even
though the action is set to pagetwo.aspx.
I made a simple test form from the book and that doesn't
submit either, here follows the code but it appears to just
ignore the action command in the form and submit PageOne.aspx
to PageOne.aspx? any thoughts?
PageOne.aspx
[%@ Page Language="vb" Debug="true" %]
[script language="vb" runat="server"]
[/script]
[form action="test2.aspx" method="get" enctype="multipart/form-data" id="form1" runat="server"]
[asp:TextBox ID="TG1" runat="server"/]
[asp:DropDownList ID="TG2" runat="server"]
[asp:ListItem Value="1" Text="Yes"/]
[asp:ListItem Value="2" Text="No"/]
[asp:ListItem Value="3" Text="Maybe"/]
[/asp:DropDownList]
[input type="submit" id="submit"]
[/form]
PageTwo.aspx
[%@ Page Language="vb" Debug="true" %]
[script language="vb" runat="server"]
Dim TG1a As String
Dim TG2a As String
TG1a = Request.Form(TG1)
TG2a = Request.Form(TG2)
message.text = TG1a
message2.text = TG2a
[/script]
[html]
[head]
[meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"]
[title]Untitled Document[/title]
[/head]
[body]
[asp:Label ID="TG1a" runat="server"/]
[asp:Label ID="TG2a" runat="server"/]
[/body]
[/html]
Source: http://www.livejournal.com/community/aspdotnet/42631.html
-
Mozilla Firefox 1.5 Beta 1
Date: 08/31/05
(Mozilla) Keywords: web
The Mozilla Developer News weblog has posted the schedule for Mozilla Firefox 1.5 Beta, with Firefox 1.5 Beta 1 scheduled for release on Thursday September 8th. Firefox 1.5 Beta 1 is also known as the 1.8 Beta 4 milestone, while Firefox 1.5 Beta 2 is also referred to as 1.8 Beta 5.
I think this is is the latest news available regarding next upgrade of Firefox 1.0.6.
Regards,
Omar.-
Source: http://www.livejournal.com/community/mozilla/313658.html
-
E-mail Spoofing
Date: 08/31/05
(Web Development) Keywords: software, web, spam
I recently bought a domain and one week afterwards I opened my inbox to discover that the domain was being used as return addresses (they're using random non-existent usernames@my domain) for spam selling discounted (and probably pirated) software. I've informed my webhost about this and they've provided me with some information on how to report this ("Determine the appropriate abuse department(s) responsible for the message source and any URL's or email addresses used as a contact point by the spammer." "send FORGERY complaints to the abuse addresses. Many abuse departments will consider forgery a more serious TOS violation than sending UCE.") but despite having thousands of e-mails with full header information I can't find an originating IP address as most addresses in the "received from" seem to be local ISP addresses from across the world.
I have had better luck with WHOIS and nslookup, in that I know where the site is hosted (a legitimate host in Jordan) and have the registration details (a suspiciously long PO box in Beirut) but without a way of proving that the person with the discounted software websites is also responsbile for the spam and spoofing I don't really have a leg to stand on here. :(
Anyone been in my situation before or have any advice?
Source: http://www.livejournal.com/community/webdev/240638.html
-
HTML before PHP?
Date: 08/31/05
(WebDesign) Keywords: php, programming, html, asp, java, web
Hi! I'm new to this community.
I am currently a graphic designer taking classes at RISD (Rhode Island
School of Design) for web design and development. I've completed most
of the DESIGN aspects of the certificate program and am working on the
PROGRAMMING/CODING part.
My only experience with programming of any sort comes from these
classes... "Actionscript in Flash" and "Javascript for
Non-programmers." Any other HTML I know is what I've picked up from LJ
and using the dual split screen in Dreamweaver.
I am for sure enrollling in the HTML class. But the PHP class I want
to take (two in one semester would be ideal) has an HTML prereq.
Can I handle it?
How hard is learning PHP?
Should I take the two classes simultaneously this fall semester?
Or should I take the HTML class, let it soak in until next spring, and then do the PHP?
Pros to PHP now...
1) I know someone in the class
2) I'd hopefully be able to incorporate what I learn into a website I'm supposed to create this fall...
Cons to PHP now...
1) Getting totally and completely lost and not learning anything from the class...
Thanks for your help and opinions. I'd really appreciate it!
Source: http://www.livejournal.com/community/webdesign/967411.html
-
New Microsoft portal will help cops
Date: 09/01/05
(Security) Keywords: software, web
Software giant plans Web site to arm law enforcement officials worldwide with tips and training for fighting cybercrime.
Source: http://news.zdnet.com/New+Microsoft+portal+will+help+cops/2100-1009_22-5845205.html?part=rss&tag=feed&subj=zdnn
-
Hurricane victims tell it best
Date: 09/02/05
(Web Technology) Keywords: web
A blog on the Times-Picayune's Web affiliate offers first-person Katrina survival stories--some more heart-wrenching and current than traditional news accounts.
Source: http://news.zdnet.com/Hurricane+victims+tell+it+best/2100-9588_22-5845868.html?part=rss&tag=feed&subj=zdnn
-
Online scams emerge in Katrina's wake
Date: 09/01/05
(Security) Keywords: web
Phony Web sites and malicious e-mails, purporting to offer help to hurricane victims, are circulating the Net.
Source: http://news.zdnet.com/Online+scams+emerge+in+Katrina%27s+wake/2100-1009_22-5845695.html?part=rss&tag=feed&subj=zdnn
-
Problem
Date: 09/02/05
(Computer Help) Keywords: cms, software, html, java, security, virus, antivirus, web, microsoft, google, ebay
I'm having this wierd problem so I scanned with Hijack This! Here's the log. Which of these shouldn't be there. Please help me!
Logfile of HijackThis v1.99.1
Scan saved at 3:31:07 PM, on 9/2/2005
Platform: Windows XP SP2 (WinNT 5.01.2600)
MSIE: Internet Explorer v6.00 SP2 (6.00.2900.2180)
Running processes:
C:\WINDOWS\System32\smss.exe
C:\WINDOWS\system32\winlogon.exe
C:\WINDOWS\system32\services.exe
C:\WINDOWS\system32\lsass.exe
C:\WINDOWS\system32\svchost.exe
C:\WINDOWS\System32\svchost.exe
C:\Program Files\Common Files\Symantec Shared\ccEvtMgr.exe
C:\WINDOWS\system32\spoolsv.exe
C:\WINDOWS\Explorer.EXE
C:\Program Files\Common Files\Symantec Shared\ccApp.exe
C:\Program Files\QuickTime\qttask.exe
C:\Program Files\Common Files\Real\Update_OB\realsched.exe
C:\Program Files\Java\jre1.5.0_04\bin\jusched.exe
C:\WINDOWS\system32\rundll32.exe
C:\Program Files\iTunes\iTunesHelper.exe
C:\windows\system32\rlvknlg.exe
C:\Program Files\Messenger\msmsgs.exe
C:\Program Files\MSN Messenger\msnmsgr.exe
C:\Program Files\Google\Google Talk\googletalk.exe
C:\Program Files\Norton AntiVirus\navapsvc.exe
C:\Program Files\Norton AntiVirus\AdvTools\NPROTECT.EXE
C:\Program Files\Common Files\Symantec Shared\Security Center\SymWSC.exe
C:\Program Files\iPod\bin\iPodService.exe
C:\Program Files\Jasc Software Inc\Paint Shop Pro 9\Paint Shop Pro 9.exe
C:\Program Files\iTunes\iTunes.exe
C:\WINDOWS\System32\svchost.exe
C:\Program Files\Mozilla Firefox\firefox.exe
C:\Program Files\Internet Explorer\iexplore.exe
C:\Documents and Settings\owner\My Documents\My Downloads\HijackThis.exe
R1 - HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings,ProxyServer = proxy1.emirates.net.ae:8080
O2 - BHO: AcroIEHlprObj Class - {06849E9F-C8D7-4D59-B87D-784B7D6BE0B3} - C:\Program Files\Adobe\Acrobat 5.0\Reader\ActiveX\AcroIEHelper.ocx
O2 - BHO: URLLink Class - {4A2AACF3-ADF6-11D5-98A9-00E018981B9E} - C:\Program Files\NewDotNet\newdotnet6_38.dll
O2 - BHO: (no name) - {53707962-6F74-2D53-2644-206D7942484F} - C:\PROGRA~1\SPYBOT~1\SDHelper.dll
O2 - BHO: ST - {9394EDE7-C8B5-483E-8773-474BF36AF6E4} - C:\Program Files\MSN Apps\ST\01.03.0000.1005\en-xu\stmain.dll
O2 - BHO: Google Toolbar Helper - {AA58ED58-01DD-4d91-8333-CF10577473F7} - c:\program files\google\googletoolbar2.dll
O2 - BHO: MSNToolBandBHO - {BDBD1DAD-C946-4A17-ADC1-64B5B4FF55D0} - C:\Program Files\MSN Apps\MSN Toolbar\01.02.3000.1001\en-us\msntb.dll
O2 - BHO: NAV Helper - {BDF3E430-B101-42AD-A544-FADC6B084872} - C:\Program Files\Norton AntiVirus\NavShExt.dll
O2 - BHO: (no name) - {D80C4E21-C346-4E21-8E64-20746AA20AEB} - (no file)
O3 - Toolbar: Norton AntiVirus - {42CDD1BF-3FFB-4238-8AD1-7859DF00B1D6} - C:\Program Files\Norton AntiVirus\NavShExt.dll
O3 - Toolbar: MSN - {BDAD1DAD-C946-4A17-ADC1-64B5B4FF55D0} - C:\Program Files\MSN Apps\MSN Toolbar\01.02.3000.1001\en-us\msntb.dll
O3 - Toolbar: &Google - {2318C2B1-4965-11d4-9B18-009027A5CD4F} - c:\program files\google\googletoolbar2.dll
O4 - HKLM\..\Run: [ccApp] C:\Program Files\Common Files\Symantec Shared\ccApp.exe
O4 - HKLM\..\Run: [Advanced Tools Check] C:\PROGRA~1\NORTON~1\AdvTools\ADVCHK.EXE
O4 - HKLM\..\Run: [WeatherOnTray] C:\Program Files\Hotbar\bin\4.5.1.0\WeatherOnTray.exe
O4 - HKLM\..\Run: [QuickTime Task] "C:\Program Files\QuickTime\qttask.exe" -atboottime
O4 - HKLM\..\Run: [TkBellExe] "C:\Program Files\Common Files\Real\Update_OB\realsched.exe" -osboot
O4 - HKLM\..\Run: [SunJavaUpdateSched] C:\Program Files\Java\jre1.5.0_04\bin\jusched.exe
O4 - HKLM\..\Run: [navapp] C:\Program Files\NavExcel\NavHelper\v2.0.4d\navapp.exe
O4 - HKLM\..\Run: [New.net Startup] rundll32 C:\PROGRA~1\NEWDOT~1\NEWDOT~2.DLL,NewDotNetStartup -s
O4 - HKLM\..\Run: [oxmx] C:\WINDOWS\oxmx.exe
O4 - HKLM\..\Run: [Symantec NetDriver Monitor] C:\PROGRA~1\SYMNET~1\SNDMon.exe
O4 - HKLM\..\Run: [iTunesHelper] "C:\Program Files\iTunes\iTunesHelper.exe"
O4 - HKLM\..\Run: [KernelFaultCheck] %systemroot%\system32\dumprep 0 -k
O4 - HKLM\..\Run: [OSS] C:\windows\system32\rlvknlg.exe -boot
O4 - HKCU\..\Run: [MSMSGS] "C:\Program Files\Messenger\msmsgs.exe" /background
O4 - HKCU\..\Run: [msnmsgr] "C:\Program Files\MSN Messenger\msnmsgr.exe" /background
O4 - HKCU\..\Run: [googletalk] "C:\Program Files\Google\Google Talk\googletalk.exe" /autostart
O8 - Extra context menu item: &Google Search - res://c:\program files\google\GoogleToolbar2.dll/cmsearch.html
O8 - Extra context menu item: Backward Links - res://c:\program files\google\GoogleToolbar2.dll/cmbacklinks.html
O8 - Extra context menu item: Cached Snapshot of Page - res://c:\program files\google\GoogleToolbar2.dll/cmcache.html
O8 - Extra context menu item: Similar Pages - res://c:\program files\google\GoogleToolbar2.dll/cmsimilar.html
O8 - Extra context menu item: Translate into English - res://c:\program files\google\GoogleToolbar2.dll/cmtrans.html
O9 - Extra button: (no name) - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre1.5.0_04\bin\npjpi150_04.dll
O9 - Extra 'Tools' menuitem: Sun Java Console - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre1.5.0_04\bin\npjpi150_04.dll
O9 - Extra button: eBay - Homepage - {EF79EAC5-3452-4E02-B8BD-BA4C89F1AC7A} - C:\Program Files\IrfanView\Ebay\Ebay.htm
O9 - Extra button: Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe
O9 - Extra 'Tools' menuitem: Windows Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe
O10 - Hijacked Internet access by New.Net
O10 - Hijacked Internet access by New.Net
O10 - Hijacked Internet access by New.Net
O10 - Hijacked Internet access by New.Net
O10 - Hijacked Internet access by New.Net
O12 - Plugin for .spop: C:\Program Files\Internet Explorer\Plugins\NPDocBox.dll
O16 - DPF: {00B71CFB-6864-4346-A978-C0A14556272C} (Checkers Class) - http://messenger.zone.msn.com/binary/msgrchkr.cab31267.cab
O16 - DPF: {15AD6789-CDB4-47E1-A9DA-992EE8E6BAD6} - http://static.windupdates.com/cab/MusicAccess/ie/bridge-c8.cab
O16 - DPF: {2917297F-F02B-4B9D-81DF-494B6333150B} (Minesweeper Flags Class) - http://messenger.zone.msn.com/binary/MineSweeper.cab31267.cab
O16 - DPF: {6E32070A-766D-4EE6-879C-DC1FA91D2FC3} (MUWebControl Class) - http://update.microsoft.com/microsoftupdate/v6/V5Controls/en/x86/client/muweb_site.cab?1124631707093
O16 - DPF: {8E0D4DE5-3180-4024-A327-4DFAD1796A8D} (MessengerStatsClient Class) - http://messenger.zone.msn.com/binary/MessengerStatsClient.cab31267.cab
O16 - DPF: {E154E3CC-0C3A-4101-91D8-6B4876F0FD64} (PrintScreen Class) - http://www.mydisplayimage.com/create/Flash2Image.cab
O16 - DPF: {F6BF0D00-0B2A-4A75-BF7B-F385591623AF} (Solitaire Showdown Class) - http://messenger.zone.msn.com/binary/SolitaireShowdown.cab31267.cab
O23 - Service: Symantec Event Manager (ccEvtMgr) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\ccEvtMgr.exe
O23 - Service: iPod Service (iPodService) - Apple Computer, Inc. - C:\Program Files\iPod\bin\iPodService.exe
O23 - Service: Norton AntiVirus Auto Protect Service (navapsvc) - Symantec Corporation - C:\Program Files\Norton AntiVirus\navapsvc.exe
O23 - Service: Norton Unerase Protection (NProtectService) - Symantec Corporation - C:\Program Files\Norton AntiVirus\AdvTools\NPROTECT.EXE
O23 - Service: ScriptBlocking Service (SBService) - Symantec Corporation - C:\PROGRA~1\COMMON~1\SYMANT~1\SCRIPT~1\SBServ.exe
O23 - Service: Symantec Network Drivers Service (SNDSrvc) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\SNDSrvc.exe
O23 - Service: SymWMI Service (SymWSC) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\Security Center\SymWSC.exe
Source: http://www.livejournal.com/community/computer_help/479940.html
-
Blog offers rare glimpse inside the chaos
Date: 09/03/05
(Web Technology) Keywords: web
Employees holed up in a New Orleans skyscraper document the aftermath of Katrina using an online journal and Webcam.
Photos: Anarchy in New Orleans
Source: http://news.zdnet.com/Blog+offers+rare+glimpse+inside+the+chaos/2100-9588_22-5846830.html?part=rss&tag=feed&subj=zdnn
-
Non-Shockwave Friendly!
Date: 09/05/05
(WebDesign) Keywords: web
Another inane question from the world of amateur web-developing:
Does anyone have a nice neat bit of code I can use to detect if people have the Shockwave plug-in and, if they don't, direct them to a new page or substiture a graphic?
Source: http://www.livejournal.com/community/webdesign/969168.html
-
Anyone using Blogger?
Date: 09/06/05
(PHP Community) Keywords: php, html, web
I'm trying to redo my website to php, including my blog. What scripting language are Blogger tags in if not PHP? I see placeholder tags such as < $ BloggerFileName $ > (sans the spaces) and I'm trying to understand it so I can successfully migrate that code from my html page to my new php page, and eventually make my own layout/ template for it. When I tried that and viewed it on my test site it only displayed the code and not the blog entries.
I'm currently thinking of simply including the blogger.html file and not trying to make it a php page.
Any hints or ideas as for deciphering Blogger's code?
Source: http://www.livejournal.com/community/php/341292.html